* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Aplicando a nova fonte moderna */
    font-family: 'Inter', sans-serif;
    /* Fundo com degradê mais refinado e suave */
    background: linear-gradient(135deg, #e3edf7 0%, #f4f8fb 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column; 
}

/* --- BARRA DE NAVEGAÇÃO PREMIUM (Efeito Pílula de Vidro) --- */
.navbar {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto 0 auto; /* Descola do topo */
    
    /* Fundo de vidro sofisticado */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    /* Borda muito fina e clara para dar brilho ao vidro */
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px; /* Formato de pílula totalmente arredondado */
    box-shadow: 0 10px 30px rgba(6, 75, 127, 0.08); /* Sombra difusa e elegante */
    
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 10px 30px;
}

.logo-img {
    height: 65px;
    mix-blend-mode: multiply; /* Mantém a logo integrada */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05); /* Pequeno efeito ao passar o mouse na logo */
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none; 
    gap: 35px; /* Mais espaço para o design respirar */
}

/* --- LINKS SIMPLES (Limpos e Modernos) --- */
/* --- LINKS DE NAVEGAÇÃO E PÁGINA ATIVA --- */
.nav-link {
    text-decoration: none;
    color: #4a5568; 
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0; /* Dá um respiro para a linha embaixo */
}

/* Cria a borda azul inferior (escondida por padrão) */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #064b7f; /* Azul da Ascon */
    transition: width 0.3s ease;
}

/* Efeito ao passar o mouse E estado da página ATIVA */
.nav-link:hover, 
.nav-link.ativo {
    color: #064b7f;
    font-weight: 600; /* Deixa o texto da página atual levemente mais forte */
}

/* Mostra a borda azul ao passar o mouse OU se for a página atual */
.nav-link:hover::after, 
.nav-link.ativo::after {
    width: 100%;
}
/* --- CONTEÚDO PRINCIPAL --- */
.conteudo-principal {
    flex: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.boas-vindas {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
    
    padding: 60px;
    background: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04); 
    max-width: 700px;
}

h1 {
    color: #064b7f; 
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px; 
    letter-spacing: -1px;
    line-height: 1.2;
}

p {
    color: #4a5568; 
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
}

/* --- RODAPÉ (FOOTER) --- */
.footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    padding: 30px 20px 15px 20px;
    margin-top: 40px;
    color: #4a5568;
}

.footer-conteudo {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Garante que no celular os itens fiquem um embaixo do outro */
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(6, 75, 127, 0.1);
}

.footer-info h3 {
    color: #064b7f; /* Azul da Ascon */
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-info p {
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.4;
}

.footer-contato p {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #2d3748;
}

.footer-contato strong {
    color: #064b7f;
}

.footer-direitos {
    text-align: center;
    padding-top: 15px;
    font-size: 0.35rem;
    color: #718096;
}

/* ========================================================
   ESTILOS EXCLUSIVOS DA PÁGINA SOBRE NÓS
======================================================== */

.conteudo-sobre {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Título de Introdução */
.sobre-topo {
    text-align: center;
    margin-bottom: 10px;
}

.sobre-topo h1 {
    color: #064b7f;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.sobre-topo p {
    color: #4a5568;
    font-size: 1.15rem;
}

/* Blocos divididos em 2 colunas (Texto + Foto) */
.sobre-bloco {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(6, 75, 127, 0.05);
}

/* Inverte a ordem no segundo bloco para criar efeito zigue-zague */
.sobre-bloco.reverso {
    flex-direction: row-reverse;
}

.sobre-texto {
    flex: 1.2;
}

.sobre-texto h2 {
    color: #064b7f;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.sobre-texto p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.sobre-texto p:last-child {
    margin-bottom: 0;
}

/* Espaço reservado para Fotos */
.sobre-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-placeholder {
    width: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, rgba(6, 75, 127, 0.08) 0%, rgba(6, 75, 127, 0.18) 100%);
    border: 2px dashed #064b7f;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #064b7f;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

/* Quando você colocar tags <img> reais dentro de .sobre-imagem */
.sobre-imagem img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Cards de Missão, Visão e Valores em Grid */
.sobre-cards-grid {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sobre-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(6, 75, 127, 0.06);
    transition: transform 0.3s ease;
}

.sobre-card:hover {
    transform: translateY(-5px);
}

.sobre-card h3 {
    color: #064b7f;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.sobre-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.98rem;
}

/* Ajustes de Responsividade para Telas Menores (Celular) */
@media (max-width: 768px) {
    .sobre-bloco, .sobre-bloco.reverso {
        flex-direction: column;
        padding: 25px;
    }

    .sobre-imagem {
        width: 100%;
    }
}

/* ========================================================
   ESTILOS EXCLUSIVOS DA PÁGINA DE CONTATO
======================================================== */

.conteudo-contato {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contato-container {
    display: flex;
    gap: 50px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(6, 75, 127, 0.06);
    width: 100%;
}

/* Lado Esquerdo - Textos */
.contato-info {
    flex: 1;
}

.contato-info h1 {
    color: #064b7f;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contato-info > p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.info-itens {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-itens .item strong {
    color: #064b7f;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 5px;
}

.info-itens .item p {
    color: #4a5568;
}

/* Lado Direito - Caixa do Formulário */
.contato-form-box {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.75);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.contato-form-box h2 {
    color: #064b7f;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.campo {
    margin-bottom: 20px;
}

.campo label {
    display: block;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Estilização dos inputs e selects */
.campo input, 
.campo select, 
.campo textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #cbd5e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2d3748;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.campo input:focus, 
.campo select:focus, 
.campo textarea:focus {
    outline: none;
    border-color: #064b7f;
    box-shadow: 0 0 0 3px rgba(6, 75, 127, 0.1);
}

/* Botão de Envio WhatsApp */
.btn-enviar-wpp {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); /* Cores oficiais do WhatsApp */
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-enviar-wpp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
        padding: 25px;
    }
}

/* ========================================================
   MODO MOBILE FORÇADO E BLINDADO
   (Ativa por tamanho da tela OU em dispositivos de toque/celulares)
======================================================== */

@media (max-width: 768px), (hover: none) and (pointer: coarse) {
    
    body {
        overflow-x: hidden;
    }

    /* 1. BARRA DE NAVEGAÇÃO VERTICAL */
    .navbar {
        width: 92%;
        margin: 15px auto 0 auto;
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        border-radius: 25px;
    }

    .logo-img {
        height: 48px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .btn-destaque {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* 2. EMPILHAMENTO DOS BLOCOS NAS PÁGINAS (1 COLUNA) */
    .boas-vindas,
    .sobre-bloco, 
    .sobre-bloco.reverso,
    .sobre-cards-grid,
    .contato-container,
    .footer-conteudo {
        flex-direction: column;
        padding: 25px 18px;
        width: 94%;
        margin: 20px auto;
        gap: 25px;
    }

    .sobre-card,
    .footer-item {
        width: 100%;
        min-width: 100%;
    }

    /* 3. AJUSTE DE FONTES PARA LEITURA NO CELULAR */
    h1, .sobre-topo h1, .contato-info h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        text-align: center;
    }

    .sobre-texto h2, .contato-form-box h2 {
        font-size: 1.35rem;
        text-align: center;
    }

    p {
        font-size: 1rem;
        text-align: center;
    }

    /* 4. PREVENÇÃO DE ZOOM ANTI-BUG DA APPLE (iPhone/iOS) */
    .campo input, 
    .campo select, 
    .campo textarea {
        font-size: 16px !important;
        padding: 14px 12px;
    }

    .btn-enviar-wpp {
        padding: 16px;
        font-size: 1rem;
    }

    /* 5. RODAPÉ */
    .footer {
        padding: 30px 15px 15px 15px;
    }
}