/* --- Configurações Gerais e Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #A82235; /* Cor de fundo marrom avermelhado */
    color: #ffffff; /* Cor do texto principal (branco) */
    display: flex;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
}

/* --- Container Principal --- */
.container {
    width: 100%;
    max-width: 420px; /* Largura máxima para não esticar em telas maiores */
    text-align: center;
    padding-top: 30px;
}

/* --- Logo --- */
.logo {
    margin-bottom: 25px;
}

.logo-img {
    max-width: 200px; /* Ajuste o tamanho do logo conforme necessário */
    height: auto;
}

/* --- Divisor --- */
.divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 30px;
}

/* --- Seções e Textos --- */
.card {
    margin-bottom: 30px;
}

.question {
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* --- Botões --- */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #5d2a2a; /* Cor do texto do botão */
    padding: 16px;
    margin: 0 auto 15px auto;
    border-radius: 50px; /* Bordas bem arredondadas */
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    max-width: 350px; /* Largura máxima do botão */
    transition: transform 0.2s ease-in-out;
}

.btn:hover {
    transform: scale(1.03); /* Efeito suave ao passar o mouse */
}

/* Ícones dos botões */
.btn i {
    font-size: 1.5em; /* Tamanho do ícone */
    margin-right: 12px;
}

/* Cor específica para o ícone do WhatsApp */
.btn .fa-whatsapp {
    color: #25D366;
}

/* --- Seção de Localização --- */
.location {
    margin-top: 20px;
}

.location h2 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 8px;
}

.location p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Ícone do mapa com a cor correta */
.btn-map .fa-map-marker-alt {
    color: #5d2a2a;
}