/* =========================================
   VARIÁVEIS & RESET
   ========================================= */
:root {
    --color-primary: #025f9c; /* Azul */
    --color-secondary: #10cdab; /* Teal / Verde */
    --color-dark: #181415; /* Escuro */
    --color-light: #f7f4f1; /* Fundo claro sutil */
    --color-white: #ffffff;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Mulish', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(2, 95, 156, 0.08);
    --shadow-hover: 0 15px 40px rgba(16, 205, 171, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Rolagem suave nativa */
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilitários Visuais */
.highlight {
    color: var(--color-secondary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text; /* Falta esta linha no seu código */
    background-clip: text; /* E esta também */
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.bg-light {
    background-color: var(--color-light);
}

/* =========================================
   BOTÕES
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* =========================================
   HEADER (Glassmorphism)
   ========================================= */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); /* Efeito de vidro borrado */
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

#header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.8rem;
    color: var(--color-dark);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

/* Efeito de hover moderno no menu */
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Detalhe abstrato no fundo */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,205,171,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(2, 95, 156, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Espaço reservado visual 3D/Tech */
.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(2,95,156,0.05), rgba(16,205,171,0.1));
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: var(--color-primary);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed var(--color-secondary);
    border-radius: 35px;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* =========================================
   SOBRE / TRAJETÓRIA
   ========================================= */
.about-section {
    padding: 100px 0;
}

.about-container {
    max-width: 800px;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-box i {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info p {
    color: #aaa;
    margin: 1.5rem 0;
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--color-white);
    background: rgba(255,255,255,0.1);
    padding: 0.5rem;
    border-radius: 50%;
    display: inline-flex;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.footer h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--color-white); /* Garante que o título destaque no fundo escuro */
}

.footer-nav ul li,
.footer-contact p {
    margin-bottom: 1rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav ul li a:hover {
    color: var(--color-secondary);
}

.footer-contact p i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #777;
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVIDADE (Media Queries)
   ========================================= */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    
    /* Configuração do Menu Mobile Lateral */
    .nav-list { 
        position: absolute;
        top: 100%;
        left: -100%; /* Esconde o menu fora da tela */
        width: 100%;
        background: var(--color-white);
        flex-direction: column; /* Empilha os links */
        padding: 2rem;
        box-shadow: var(--shadow-soft);
        transition: var(--transition); /* Usa a sua transição suave já declarada */
        gap: 1.5rem;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    /* Classe que o JavaScript injeta para abrir o menu */
    .nav-list.active {
        left: 0; /* Traz o menu para a tela */
    }

    .mobile-toggle { display: block; }
    #header .btn { display: none; }
}


@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; } /* 1 coluna empilhada no celular */
}

/* =========================================
   BOTÃO WHATSAPP FLUTUANTE
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000; /* Garante que fica sempre por cima de tudo */
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20b858;
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

/* =========================================
   ANIMAÇÕES E RESPONSIVIDADE
   ========================================= */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }

@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .mobile-toggle { display: block; }
    #header .btn { display: none; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
}

/* Ajustes para os novos conteúdos */
.intro-section {
    padding: 120px 0;
    background: #ffffff;
}

.section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.overline {
    display: block;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
}

.main-text p {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-card {
    background: var(--color-light);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(2, 95, 156, 0.1);
}

.features-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.feature-list i {
    color: var(--color-secondary);
    font-size: 1.4rem;
}

/* CTA Lite */
.cta-lite {
    padding-bottom: 100px;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary), #014675);
    padding: 4rem;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.cta-box h3 {
    color: white;
    font-size: 2rem;
    max-width: 500px;
}

.btn-white {
    background: white;
    color: var(--color-primary);
}

.btn-white:hover {
    background: var(--color-secondary);
    color: white;
}

/* Acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-secondary);
    color: white;
    padding: 8px;
    z-index: 2000;
    transition: 0.3s;
}

.skip-link:focus {
    top: 0;
}

@media (max-width: 992px) {
    .content-grid { grid-template-columns: 1fr; gap: 3rem; }
    .cta-box { flex-direction: column; text-align: center; gap: 2rem; }
}

/* =========================================
   HERO SECTION (Atualizado com Imagem)
   ========================================= */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(to bottom, #ffffff, var(--color-light));
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 1rem 0 1.5rem;
    color: var(--color-dark);
}

.hero-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    height: 500px;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--color-secondary);
}

.floating-card strong {
    font-size: 1.2rem;
    color: var(--color-primary);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* =========================================
   CLIENTES (Prova Social)
   ========================================= */
.clients {
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.clients-title {
    text-align: center;
    color: #888;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    color: #ccc;
    font-size: 3rem;
}

/* =========================================
   SOBRE NÓS (Layout Z-Pattern)
   ========================================= */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* =========================================
   SOLUÇÕES (Cards Estilo Fitpe)
   ========================================= */
.solutions-section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.text-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(16, 205, 171, 0.3);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(2, 95, 156, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper-card{
    width: 100px;
    height: 100px;
    background: rgba(2, 95, 156, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}


.icon-wrapper i {
    font-size: 2rem;
    color: var(--color-primary);
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #555;
    font-size: 0.95rem;
}

/* =========================================
   CTA FORTE
   ========================================= */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary), #014675);
    padding: 4rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.cta-content h2 {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    max-width: 600px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 500px;
}

/* =========================================
   AJUSTES RESPONSIVOS (Atualizados)
   ========================================= */
@media (max-width: 992px) {
    .hero-container, .about-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .floating-card {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        animation: none; /* Desativa a flutuação no mobile para evitar quebras */
    }
    .hero-buttons { justify-content: center; }
    .cta-box { flex-direction: column; text-align: center; gap: 2rem; }
    .stats-row { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .clients-grid { gap: 2rem; font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-nav ul li, .footer-contact p { justify-content: center; }
}

/* Animação de Brilho no Hero (Diferente) */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(16, 205, 171, 0.1) 0%, rgba(2, 95, 156, 0.05) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Revelação Estagiada (Stagger) */
.reveal-stagger .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.active .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Delays para o efeito cascata */
.reveal-item:nth-child(1) { transition-delay: 0.1s; }
.reveal-item:nth-child(2) { transition-delay: 0.2s; }
.reveal-item:nth-child(3) { transition-delay: 0.3s; }
.reveal-item:nth-child(4) { transition-delay: 0.4s; }

/* Estilo dos Números na Contagem */
.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums; /* Evita que o texto "pule" durante a contagem */
}

/* =========================================
   PÁGINA DE EXAMES & ACCORDIONS
   ========================================= */
.page-header {
    padding: 160px 0 60px;
    background: linear-gradient(to bottom, #ffffff, var(--color-light));
}

.forms-section {
    padding: 40px 0 100px;
}

.accordion-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.accordion-item {
    background: var(--color-white);
    border: 1px solid rgba(2, 95, 156, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(16, 205, 171, 0.03);
}

.accordion-header i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-item.active {
    border-color: rgba(16, 205, 171, 0.5);
    box-shadow: var(--shadow-soft);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 2000px; 
    padding: 0 2rem 2rem;
}

/* Estilo Interno dos Formulários */
.sst-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    transition: var(--transition);
    background: #fcfcfc;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(16, 205, 171, 0.15);
    background: var(--color-white);
}

.form-obs {
    font-size: 0.85rem;
    color: var(--color-dark);
    background: rgba(16, 205, 171, 0.1);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-file label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem;
    border: 2px dashed rgba(2, 95, 156, 0.3);
    border-radius: 12px;
    cursor: pointer;
    background: #fcfcfc;
    transition: var(--transition);
    text-align: center;
}

.form-file label:hover {
    border-color: var(--color-secondary);
    background: rgba(16, 205, 171, 0.05);
}

.form-file i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.form-file input[type="file"] {
    display: none;
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .accordion-header { padding: 1.2rem; font-size: 1.1rem; }
    .accordion-item.active .accordion-content { padding: 0 1.2rem 1.5rem; }
}

/* =========================================
   PÁGINA DE CURSOS
   ========================================= */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.course-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.course-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: var(--color-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.course-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-info {
    padding: 2rem;
}

.course-info h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.course-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--color-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.page-number, .page-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.page-number:hover, .page-arrow:hover:not(.disabled) {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-3px);
}

.page-number.active {
    background: var(--color-primary);
    color: white;
}

.page-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.page-dots {
    color: #aaa;
    font-weight: bold;
}

@media (max-width: 768px) {
    .courses-grid { grid-template-columns: 1fr; }
    .pagination { gap: 0.5rem; }
    .page-number, .page-arrow { width: 40px; height: 40px; }
}

/* =========================================
   PÁGINA DE CURSOS
   ========================================= */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.course-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.course-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: var(--color-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.course-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-info {
    padding: 2rem;
}

.course-info h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.course-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--color-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.page-number, .page-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.page-number:hover, .page-arrow:hover:not(.disabled) {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-3px);
}

.page-number.active {
    background: var(--color-primary);
    color: white;
}

.page-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.page-dots {
    color: #aaa;
    font-weight: bold;
}

@media (max-width: 768px) {
    .courses-grid { grid-template-columns: 1fr; }
    .pagination { gap: 0.5rem; }
    .page-number, .page-arrow { width: 40px; height: 40px; }
}

/* =========================================
   CARGA HORÁRIA E AJUSTES DE CARD
   ========================================= */
.course-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-secondary);
    background: rgba(16, 205, 171, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    display: inline-flex;
}

.course-meta i {
    font-size: 1.1rem;
}

.course-info h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem; /* Ajuste sutil para caber títulos longos das NRs */
    line-height: 1.3;
    min-height: 40px;
}

/* =========================================
   CAPA DINÂMICA CSS (Substitui Imagens)
   ========================================= */
.course-image {
    width: 100%;
    height: 200px; /* Altura da capa */
    overflow: hidden;
}

.course-css-cover {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), #014675);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Efeito de detalhe/brilho no fundo da capa */
.course-css-cover::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 205, 171, 0.15) 0%, transparent 60%);
    transform: rotate(45deg);
    pointer-events: none;
}

.course-css-cover i {
    font-size: 3.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
    z-index: 1;
}

.course-css-cover h4 {
    font-size: 1.6rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    z-index: 1;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Efeito de Hover na Capa CSS */
.course-card:hover .course-css-cover {
    transform: scale(1.05);
}

/* =========================================
   PÁGINA DE CADASTRO E CHECKBOX LIST
   ========================================= */
.registration-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.05);
}

.checkbox-list-container {
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 15px;
    background: #fcfcfc;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Estilização da barra de rolagem para navegadores Webkit */
.checkbox-list-container::-webkit-scrollbar {
    width: 6px;
}
.checkbox-list-container::-webkit-scrollbar-thumb {
    background: rgba(2, 95, 156, 0.3);
    border-radius: 10px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-dark);
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.checkbox-item:hover {
    background: rgba(16, 205, 171, 0.05);
}

.checkbox-item input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--color-primary); /* Pinta o checkbox com a sua cor */
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .registration-container {
        padding: 2rem 1.5rem;
    }
}

/* =========================================
   PÁGINA DE DÚVIDAS (FAQ + Formulário Lateral)
   ========================================= */
.faq-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr; /* Proporção das colunas */
    gap: 4rem;
    align-items: start;
}

/* Modificação sutil nos ícones do accordion para usar o "+" no FAQ */
.accordion-header i.ph-plus {
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header i.ph-plus {
    transform: rotate(45deg); /* Transforma o "+" num "x" ao abrir */
}

/* O "Card" Azul do Formulário */
.contact-card {
    background-color: var(--color-primary);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
    position: sticky; /* Faz o formulário descer junto com a tela se houver muitas perguntas */
    top: 120px;
}

.contact-card h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Estilo dos Inputs em fundos escuros */
.sst-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group-dark {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group-dark label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group-dark input,
.form-group-dark textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05); /* Fundo de vidro/transparente */
    color: var(--color-white);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group-dark input:focus,
.form-group-dark textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(16, 205, 171, 0.2);
}

/* Botão Verde/Teal para o Formulário Escuro */
.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: #0e947b; /* Um tom ligeiramente mais escuro para o hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 205, 171, 0.3);
}

/* Responsividade do Grid */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-card {
        position: static; /* Desativa o sticky no celular para não bugar o scroll */
    }
}

.batata{
    display: inline-flex;
}

/* =========================================
   ESTILOS DO MENU DROPDOWN (GLOBAL)
========================================= */
.nav-list .dropdown { 
    position: relative; 
}

.nav-list .dropdown-menu {
    display: none; /* Esconde o submenu por padrão */
    position: absolute; 
    top: 100%; 
    left: 0;
    background: #ffffff; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); /* Sombra mais suave e ampla */
    list-style: none; 
    padding: 10px 0; 
    min-width: 240px;
    border-radius: 8px; 
    z-index: 999; /* Garante que fique por cima de banners e seções */
    flex-direction: column; 
    gap: 0;
}

/* Mostra o submenu ao passar o mouse na tag <li> pai */
.nav-list .dropdown:hover .dropdown-menu { 
    display: flex; 
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a { 
    display: block; 
    padding: 12px 20px; 
    color: #333333; 
    font-weight: 600; 
    text-transform: none;
    text-decoration: none;
    white-space: nowrap; /* Evita que o texto quebre em duas linhas */
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover { 
    background: #f8f9fa; 
    color: var(--color-primary, #0056b3); /* Usa a sua variável de cor primária */
}

/* Ajuste para o Mobile Toggle (Caso o menu abra no celular) */
@media (max-width: 768px) {
    .nav-list .dropdown-menu {
        position: static; /* No celular, ele empurra o layout para baixo normalmente */
        box-shadow: none;
        background: transparent;
        padding-left: 15px;
    }
}

.logo img {
    height: 80px; /* Ajuste esta altura de acordo com a sua logo */
    width: auto;
    display: block;
}

/* ==========================================================
           ESTILOS DO FOOTER MESCLADO COM AS FAIXADAS
        ========================================================== */
        .footer {
            background-color: #14283A; /* Mesma cor do topo do gradiente .facades-fade */
            color: #ffffff;
            position: relative;
            z-index: 2;
            padding: 4rem 0 1rem 0;
            margin-top: -2px; /* Remove qualquer gap fantasma entre as seções */
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer h2, .footer h4 {
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .footer .highlight {
            color: #10cdab;
        }

        .footer-info p {
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-icons a {
            color: #ffffff;
            font-size: 1.8rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #10cdab;
        }

        .footer-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav li {
            margin-bottom: 0.8rem;
        }

        .footer-nav a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #10cdab;
        }

        .footer-contact p {
            color: #e0e0e0;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .footer-contact i {
            color: #10cdab;
            font-size: 1.2rem;
        }

        .footer .copyright {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1); /* Linha sutil para separar o copyright */
            color: #8a9bb0;
            font-size: 0.9rem;
        }


        /* ==========================================================
   NOVO: Seção das Faixadas com Informações das Unidades
========================================================== */
.facades-wrapper {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    line-height: 0;
    display: flex;
}
.facades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}
.facade-item {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.facade-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Escurecido para destacar o texto */
    transition: filter 0.3s ease;
}
.facade-item:hover img {
    filter: brightness(0.8);
}
.facade-info {
    position: absolute;
    bottom: 30px;
    left: 20px;
    color: #fff;
    z-index: 2;
    pointer-events: none;
    line-height: normal;
}
.facade-info h3 {
    color: #10cdab;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-family: 'Space Grotesk', sans-serif;
}
.facade-info p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Mulish', sans-serif;
}
.facades-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, #14283A 5%, transparent 100%);
    pointer-events: none;
}
@media (max-width: 768px) {
    .facades-grid { grid-template-columns: 1fr; }
    .facade-item { height: 250px; }
    .facades-fade { height: 100px; }
}