
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #32336d;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Espaçador para compensar o menu fixo */
.header-spacer {
    height: 90px;
    width: 100%;
    display: block;
}

/* =========================================
   2. DESIGN SYSTEM (PADRÕES VISUAIS UNIFICADOS)
   ========================================= */

/* --- BOTÕES --- */
/* Base para todos os botões do site */
.btn-primary, .btn-cta, .btn-outline {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;       /* Todos com o mesmo arredondamento */
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent; /* Garante tamanho igual */
    box-shadow: 0 4px 15px rgba(39, 41, 94, 0.15); /* Sombra padrão */
}

/* Estilo Sólido (Principal e Header) */
.btn-primary, .btn-cta {
    background-color: #27295E;
    color: #fff !important;
}

.btn-primary:hover, .btn-cta:hover {
    background-color: #1a1c4b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 41, 94, 0.3);
}

/* Estilo Outline (Vazado) */
.btn-outline {
    background-color: transparent;
    color: #27295E !important;
    border-color: #27295E;
    box-shadow: none;
}

.btn-outline:hover {
    background-color: #27295E;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 41, 94, 0.2);
}

/* --- CARDS (CARTÕES) --- */
/* Unifica o visual de .card, .feature-card e .diff-item */
.card, .feature-card, .diff-item {
    background: #fff;
    border-radius: 12px;      /* Arredondamento padrão */
    border: 1px solid #eee;   /* Borda sutil padrão */
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); /* Sombra inicial leve */
    position: relative;
    z-index: 1;
}

/* Efeito Hover Unificado para todos os cards */
.card:hover, .feature-card:hover, .diff-item:hover {
    transform: translateY(-8px); /* Pulo padrão */
    border-color: #27295E;       /* Borda azul ao passar mouse */
    box-shadow: 0 15px 35px rgba(39, 41, 94, 0.12); /* Sombra mais forte */
    z-index: 10;
}


/* =========================================
   3. HEADER (CABEÇALHO)
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(39, 41, 94, 0.08);
    transition: all 0.3s ease;
}

.header-wrap {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Fix */
.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    max-height: 90px;
    overflow: hidden;
}

.header-wrap img, .logo-link img {
    display: block;
    max-height: 78px;
    width: auto !important;
    max-width: 250px;
    object-fit: contain;
    margin: 0;
}

/* Scroll Effects */
header.scrolled .logo-full { display: none !important; }
header.scrolled .logo-small { 
    display: block !important; 
    max-height: 40px !important; 
}
header.scrolled img { max-height: 40px !important; }

header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Menu Desktop */
.nav-menu ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 16px;
    color: #32336d;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover { color: #27295E; }

/* Sublinhado animado (exceto botões) */
.nav-menu a:not(.btn-cta)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #27295E;
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-cta):hover::after { width: 100%; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #27295E;
    cursor: pointer;
}

/* =========================================
   4. HERO & SEÇÕES
   ========================================= */
.hero {
    height: calc(100vh - 90px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(39, 41, 94, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* HERO BAND */
.hero-band {
    width: 100%;
    background: #27295E;
    padding: 48px 24px;
}

.hero-band .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    text-align: center;
}

.hero-band .container > div {
    padding: 24px;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid transparent;
}

.hero-band .container > div:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.hero-band h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-band p {
    color: #fff;
    opacity: 0.8;
    font-size: 15px;
}

/* =========================================
   5. CONTEÚDO (SERVIÇOS)
   ========================================= */
section {
    padding: 96px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: #27295E;
}

.services {
    background: #F5F6FA;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

/* Nota: .card já está estilizado no Design System acima */
.card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #32336d;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* =========================================
   6. SOBRE (ABOUT)
   ========================================= */
.about-section {
    background-color: #fff;
    padding: 100px 24px;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #27295E;
    background: rgba(39, 41, 94, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-left {
    font-size: 36px;
    font-weight: 700;
    color: #27295E;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: left;
}

.lead-text {
    font-size: 18px;
    color: #444;
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 4px solid #27295E;
    padding-left: 20px;
}

.body-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Nota: .feature-card já está estilizado no Design System acima */
.feature-card {
    padding: 30px 24px;
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(39, 41, 94, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #27295E;
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background: #27295E;
    color: #fff;
}

.feature-card h3 {
    font-size: 18px;
    color: #27295E;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/* =========================================
   7. DIFERENCIAIS
   ========================================= */
.differentials {
    background-color: #f8f9fa;
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 16px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Nota: .diff-item já está estilizado no Design System acima */
.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
}

.diff-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(39, 41, 94, 0.1);
    color: #27295E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.diff-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #27295E;
    margin-bottom: 8px;
}

.diff-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.cta-container {
    text-align: center;
}

/* =========================================
   8. FOOTER
   ========================================= */
.main-footer {
    background-color: #27295E;
    color: #fff;
    padding-top: 80px;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    background: #1a1c4b;
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 20px;
    padding-top: 10px;
}

/* =========================================
   9. RESPONSIVIDADE (MOBILE/TABLET)
   ========================================= */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-content, .section-title-left { text-align: center; }
    .lead-text {
        text-align: left;
        max-width: 600px;
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 768px) {
    /* Menu */
    .mobile-menu-btn { display: block; }
    .nav-menu {
        position: fixed;
        top: 90px; left: -100%; width: 100%; height: calc(100vh - 90px);
        background: #fff; transition: 0.4s; padding: 40px 24px;
        box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.05); overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    .nav-menu ul { flex-direction: column; gap: 30px; }
    .nav-menu a { font-size: 20px; }

    /* Hero */
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-logo { margin: 0 auto 20px auto; }
    .social-links { justify-content: center; }

    /* Cards e Diferenciais */
    .about-grid, .diff-grid { grid-template-columns: 1fr; }
    .diff-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .section-subtitle { font-size: 16px; }
    .section-title-left { font-size: 28px; }
}

/* =========================================
   PÁGINAS INTERNAS (CONTATO, ETC)
   ========================================= */

/* Banner do Topo (Page Header) */
.page-header {
    background-color: #27295E; /* Azul ALSB */
    padding: 120px 0 60px 0; /* Espaço maior em cima por causa do menu fixo */
    text-align: center;
    color: #fff;
    margin-top: 0; /* Cola no menu */
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;

}

.card-mvv {
    transition: transform 0.3s ease;
}

.card-mvv:hover {
    transform: translateY(-10px);
}

.page-header p {
    font-size: 16px;
    opacity: 0.8;
}

/* Container do Grid de Contato */
.contact-section {
    padding: 80px 24px;
    background-color: #f8f9fa; /* Fundo levemente cinza */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Coluna do form um pouco maior */
    gap: 60px;
    align-items: start;
}

/* --- COLUNA ESQUERDA: INFO --- */
.contact-info h3 {
    color: #27295E;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.icon-box-small {
    width: 40px;
    height: 40px;
    background: rgba(39, 41, 94, 0.1);
    color: #27295E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Mapa */
.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* --- COLUNA DIREITA: FORMULÁRIO --- */
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-card h3 {
    color: #27295E;
    margin-bottom: 24px;
    font-size: 22px;
}

.form-group {
    margin-bottom: 20px;
}

/* Linha com 2 campos (Email e Telefone) */
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

/* Estilo dos Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fdfdfd;
}

/* Foco no Input (Azul da marca) */
input:focus,
select:focus,
textarea:focus {
    border-color: #27295E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(39, 41, 94, 0.1);
    background-color: #fff;
}

/* Responsividade da Página de Contato */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Empilha tudo */
        gap: 40px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr; /* Email e tel um embaixo do outro */
    }
    
    .contact-form-card {
        padding: 24px; /* Menos padding no mobile */
    }
}
.card p {
    margin-bottom: 30px; /* Ajuste este valor se quiser mais ou menos espaço */
}