/* Reset básico de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #FDF5E6; /* Cor de fundo creme idêntica à imagem */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================================================
   CABEÇALHO / MENU SUPERIOR
   ========================================================================== */
.navbar {
    width: 100%;
    background-color: #120A07; /* Fundo escuro */
    padding: 15px 10px;
    text-align: center;
}

.logo-title {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Não quebra o layout em celulares pequenos */
    gap: 15px;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
}

.nav-links a.active {
    color: #D2691E; /* Cor laranja idêntica para o item ativo */
}

/* ==========================================================================
   CONTAINER DO CONTEÚDO (Mantém tudo empilhado conforme a foto)
   ========================================================================== */
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
    max-width: 600px; /* Evita que os elementos fiquem esticados demais */
    padding: 40px 20px;
    gap: 25px; /* Espaçamento equilibrado entre os blocos */
}

/* Botões de Contato (Cards) */
.contact-card {
    width: 100%;
    max-width: 450px; /* Largura proporcional à imagem */
    background-color: #FAF0E6; /* Fundo do card ligeiramente diferente */
    border: 1px solid #7f7f7f; /* Borda fina acinzentada conforme o print */
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: bold;
    gap: 8px;
    transition: background-color 0.2s;
}

.contact-card:hover {
    background-color: #f5eae1; /* Efeito hover sutil */
}

/* Mensagem de Agradecimento Central */
.thank-you-message {
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    color: #000000;
    line-height: 1.6;
    max-width: 480px;
    margin: 10px 0;
}

/* ==========================================================================
   ÍCONES EM CSS PURO (Adaptados para o tamanho do print)
   ========================================================================== */
.icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Instagram */
.instagram-icon {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.insta-inner {
    width: 14px;
    height: 14px;
    border: 2px solid white;
    border-radius: 4px;
    position: relative;
}

/* Bolinha interna do ícone do Instagram */
.insta-inner::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
}

/* WhatsApp */
.whatsapp-icon {
    background-color: #25D366;
}

.wa-inner {
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 50% 50% 50% 10%; /* Simula o formato de balão de fala */
}

/* ==========================================================================
   MEDIA QUERIES (Ajustes finos para telas muito pequenas)
   ========================================================================== */
@media (max-width: 480px) {
    .logo-title {
        font-size: 18px;
    }
    
    .nav-links a {
        font-size: 12px;
    }

    .thank-you-message {
        font-size: 12px;
    }

    .contact-card {
        padding: 15px;
        font-size: 12px;
    }
}