:root {
    --orange-color: #F4AC4F; /* Botões laranja */
    --blue-color: #2858A1;   /* Botões azuis */
    --text-button-color: #fff; /* Texto branco */
    --text-color: #333; /* Cor geral do texto */
    --light-text-color: #555; /* Cor para texto secundário */
    --background-color: #fff;  /* Fundo branco */
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background-color: var(--background-color); /* Fundo branco */
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px;
    box-sizing: border-box;
    text-align: center;
}

.header {
    margin-bottom: 30px;
}

.logo {
    width: 100%;        /* Sempre ocupa a largura disponível */
    max-width: 300px;   /* Igual ao limite dos botões */
    height: auto;       /* Mantém proporção da imagem */
    display: block;
    margin: 0 auto;     /* Centraliza */
}


.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tagline {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--light-text-color);
    margin: 0;
}

.locations {
    font-size: 1em;
    color: var(--light-text-color);
    margin-bottom: 25px;
    margin-top: 0;
}

.buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 25px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: space-between; /* texto à esquerda / ícone à direita */
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    border: none;
    color: var(--text-button-color);
}

.button .icon-right {
    margin-left: 10px;
    font-size: 1.2em;
}

.button-orange {
    background-color: #F4AC4F;
}

.button-orange:hover {
    background-color: #F4AC4F;
    transform: translateY(-2px);
}

.button-blue {
    background-color: #2858A1;
}

.button-blue:hover {
    background-color: #2858A1;
    transform: translateY(-2px);
}

/* Espaço entre os grupos de botões */
.space {
    height: 20px;
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    .logo {
        max-width: 200px;
    }

    .tagline {
        font-size: 1em;
    }

    .locations {
        font-size: 0.9em;
    }

    .button {
        font-size: 1em;
        padding: 12px 15px;
    }

    .button .icon-right {
        font-size: 1.1em;
    }

    .buttons-grid {
        max-width: 90%;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 10px;
        border-radius: 0;
        box-shadow: none;
    }

    .logo {
        max-width: 180px;
    }

    .button {
        font-size: 0.95em;
        padding: 10px 12px;
    }
}
