/* Fonte do CSS da landing: editar aqui; `npm run build` gera public/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Nunito:wght@300;400;600;700;800&display=swap');
/* ============================================================
   DESIGN TOKENS — Paleta Alessandro de Souza (Azul & Branco)
   ============================================================ */
:root {
    /* Cores extraídas da logo */
    --blue-dark:    #1C3A5E;   /* Azul navy escuro (texto logo) */
    --blue-mid:     #2E6DB4;   /* Azul principal (estrela) */
    --blue-light:   #4D8FCC;   /* Azul médio (hover/destaques) */
    --blue-pale:    #A8C8E8;   /* Azul pastel (acentos suaves) */
    --gray-dark:    #3D4F61;   /* Cinza-azulado escuro */
    --gray-mid:     #6B8099;   /* Cinza médio (texto secundário) */
    --gray-light:   #C8D8E8;   /* Cinza azulado claro */
    --off-white:    #F4F8FC;   /* Fundo branco-azulado */
    --white:        #FFFFFF;
    /* Funcionais */
    --bg-main:       var(--white);
    --bg-section:    var(--off-white);
    --bg-dark:       var(--blue-dark);
    --text-dark:     var(--blue-dark);
    --text-body:     var(--gray-dark);
    --text-muted:    var(--gray-mid);
    --accent:        var(--blue-mid);
    --accent-hover:  var(--blue-light);
    --font-heading: 'Merriweather', serif;
    --font-body:    'Nunito', sans-serif;
    --section-pad:  6rem 0;
    --radius:       12px;
    --shadow-soft:  0 4px 24px rgba(30, 60, 100, 0.08);
    --shadow-mid:   0 8px 40px rgba(30, 60, 100, 0.15);
}
/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    background-color: var(--bg-main);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hero-content {
    max-width: 750px;
    padding: 0 1.5rem;
}
.section { padding: var(--section-pad); }
/* ---- Section Title ---- */
.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-mid);
    background: rgba(46, 109, 180, 0.08);
    border: 1px solid rgba(46, 109, 180, 0.25);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--blue-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}
.title-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: nowrap;
}
.title-icon-img {
    width: 1em;
    height: 1em;
    max-width: 1em;
    flex: 0 0 1em;
    object-fit: contain;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content h1 em {
    font-style: normal;
    color: var(--blue-pale);
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--blue-pale);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-mid), var(--blue-pale));
    border-radius: 2px;
    margin: 0 auto 1rem;
}
/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(46, 109, 180, 0.35);
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(46, 109, 180, 0.45);
    background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.75);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: var(--white);
    transform: translateY(-3px);
}
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2fde6f, #128C7E);
}
/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(28, 58, 94, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    padding: 0.7rem 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--white);
    flex: 0 0 auto;
    line-height: 1.2;
}
.logo-img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.85);
    transform-origin: center;
    flex-shrink: 0;
    pointer-events: none;
}
.logo-text {
    display: inline-flex;
    flex-direction: column;
}
.logo span {
    color: var(--blue-pale);
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    font-family: var(--font-body);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(28, 58, 94, 0.98);
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
}
.nav-menu.active { display: block; }
.nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}
.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-pale);
    letter-spacing: 0.03em;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--white); }
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}
.btn-nav {
    display: inline-block;
    padding: 0.55rem 1.4rem;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 30px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-nav:hover {
    background: var(--white);
    color: var(--blue-dark);
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(168, 200, 232, 0.25);
}
.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    display: block;
}
@media (max-width: 767px) {
    .header-actions .btn-nav { display: none; }
    .logo {
        gap: 0.5rem;
    }
    .logo-img {
        width: 34px;
        height: 34px;
        transform: scale(1.9);
    }
    .logo {
        font-size: 1rem;
    }
}
@media (min-width: 768px) {
    .menu-toggle { display: none; }

    .nav-menu {
        display: flex !important;
        position: static;
        background: transparent;
        padding: 0;
        box-shadow: none;
        backdrop-filter: none;
        flex: 1;
        justify-content: center;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
    }
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: block;
    overflow: visible;
    background-color: var(--blue-dark);
}
.hero-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 2;
}
/* Primeiro frame do vídeo como fundo — elimina flash de tela preta antes do vídeo carregar */
.hero-sticky-container::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: var(--blue-dark);
    background-image: url('../assets/images/hero-poster.jpg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#hero-bg {
    z-index: 2;
    opacity: 1;
    transition: opacity 0.35s ease;
}
#hero-bg.hero-bg--error {
    visibility: hidden;
    pointer-events: none;
}
/* Vídeo reverso: sobreposto ao forward, oculto por padrão */
#hero-bg-reverse {
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.05s ease;
}
#hero-bg-reverse.hero-bg-reverse--active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28, 58, 94, 0.88) 0%,
        rgba(28, 58, 94, 0.70) 50%,
        rgba(46, 109, 180, 0.55) 100%
    );
    z-index: 1;
}
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 6rem;
}
.hero-content {
    max-width: 750px;
    padding: 0 1.5rem;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-pale);
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--blue-pale);
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content h1 em {
    font-style: normal;
    color: var(--blue-pale);
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
/* Pill de gratuidade no hero */
.hero-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}
.hero-free-badge i { color: #4AE08A; }
.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(168, 200, 232, 0.25);
}
.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--blue-mid);
    font-weight: 900;
    -webkit-text-stroke: 1px #FFFFFF;
    text-stroke: 1px #FFFFFF;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-stat span {
    font-size: 0.8rem;
    color: var(--blue-pale);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(168, 200, 232, 0.6);
    font-weight: 600;
    transition: color 0.3s;
}
.scroll-indicator i {
    font-size: 1.4rem;
    animation: bounce-scroll 2s infinite;
}
.scroll-indicator:hover { color: var(--white); }
@keyframes bounce-scroll {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}
/* ============================================================
   BENEFÍCIOS — Banner gratuidade
   ============================================================ */
.beneficios-banner {
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
    padding: 2.5rem 0;
    border-bottom: 3px solid var(--blue-pale);
}
.beneficios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
}
.beneficio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}
.beneficio-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--blue-pale);
    margin-bottom: 0.3rem;
}
.beneficio-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.beneficio-item strong {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}
.beneficio-item span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}
@media (min-width: 768px) {
    .beneficios-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Remove textos no Mobile para melhorar visualização e ativa Scroll-Jacking */
@media (max-width: 767px) {
    .hero {
        position: relative;
    }
    .hero-sticky-container {
        height: 100dvh;
        height: 100vh; /* Fallback */
        overflow: hidden;
    }
    .hero-sticky-container::before {
        background-position: 68% 24%;
    }
    .hero-bg {
        /* Enquadramento fixo para manter a cabeça do cavalo visível no início */
        object-position: 68% 24%;
    }
    .hero-content {
        text-align: center !important; /* Centraliza headings e inline */
    }
    .hero-content-wrapper {
        padding-top: 16rem !important; /* Mais espaço para evitar a barra de endereço/header */
    }
    .hero-top-group, .hero-bottom-group {
        will-change: transform, opacity;
        transform-origin: center center;
    }
    .hero-free-badge, 
    .hero-subtitle {
        display: none !important;
    }
    .hero-actions {
        margin-top: 36vh !important; /* Afasta os botões/stats bem para baixo */
        justify-content: center !important; /* Centraliza botões */
    }

    /* Centralização Seção Sobre Mobile */
    .sobre-text {
        text-align: center !important;
    }
    .sobre-text .section-title,
    .sobre-text .divider,
    .sobre-text .senar-badge {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    .sobre-features {
        justify-content: center !important;
        text-align: left; /* Mantém ícones alinhados com texto curto */
        max-width: 320px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .sobre-text .btn-primary {
        display: inline-flex;
        margin: 1rem auto 0;
    }
}
/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-banner {
    background: var(--off-white);
    border-bottom: 2px solid var(--gray-light);
    padding: 1.5rem 0;
}
.countdown-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}
.countdown-label-main {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--blue-dark);
}
.countdown-label-main span { color: var(--blue-mid); }
#countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue-mid);
    line-height: 1;
}
.countdown-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
}
.countdown-sep {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue-pale);
    line-height: 1;
    padding-bottom: 1rem;
}
/* ============================================================
   SOBRE
   ============================================================ */
.sobre { background: var(--white); }
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.sobre-img-wrap { position: relative; }
.sobre-img-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius);
    box-shadow: var(--shadow-mid);
}
.sobre-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -0.5rem;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
    color: var(--white);
    padding: 1rem 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-mid);
    text-align: center;
}
.sobre-img-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue-pale);
    line-height: 1;
}
.sobre-img-badge span {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}
.sobre-text .section-title { text-align: left; margin-bottom: 1.5rem; }
.sobre-text .divider { margin: 0 0 1.5rem; }
.sobre-text p {
    color: var(--text-body);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}
.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0 2rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}
.feature-item i {
    color: var(--blue-mid);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.senar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(46, 109, 180, 0.08);
    border: 1px solid rgba(46, 109, 180, 0.25);
    color: var(--blue-mid);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}
.senar-badge i { color: var(--blue-mid); }
/* ============================================================
   CURSOS
   ============================================================ */
.cursos {
    background: var(--off-white);
}
.cursos .section-title h2 { color: var(--blue-dark); }
.cursos .section-title p { color: var(--text-muted); }
.cursos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.curso-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.curso-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-mid);
    border-color: var(--blue-pale);
}
.curso-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.curso-body { 
    padding: 2rem; 
    text-align: center;
}
.curso-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-mid);
    background: rgba(46, 109, 180, 0.1);
    border: 1px solid rgba(46, 109, 180, 0.25);
    padding: 0.25rem 0.8rem;
    border-radius: 30px;
}
.curso-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--blue-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}
.curso-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.curso-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
    margin-bottom: 1.5rem;
}
.curso-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-dark);
    font-weight: 600;
}
.curso-meta-item i { color: var(--blue-mid); font-size: 0.9rem; }
/* Destaque gratuidade no card */
.curso-gratuito-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #128C7E;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 30px;
    margin-left: 0.5rem;
}

.curso-body > div[style*="display:flex"] {
    justify-content: center;
}
.curso-topicos {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: center;
}
.curso-topicos li {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-body);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--off-white);
}
.curso-topicos li:last-child { border-bottom: none; }
.curso-topicos li::before {
    content: '✦';
    color: var(--blue-mid);
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
/* ============================================================
   TURMAS
   ============================================================ */
.turmas { background: var(--white); }
.turmas-colunas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.turmas-coluna {
    display: flex;
    flex-direction: column;
}
.coluna-titulo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 0.5rem;
    text-align: center;
}
.turmas-lista-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.turmas-distantes-hint {
    margin: 0;
    margin-top: 0.25rem;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    line-height: 1.45;
    text-align: center;
    color: var(--text-muted);
    background: rgba(46, 109, 180, 0.06);
    border: 1px solid rgba(46, 109, 180, 0.12);
    border-radius: var(--radius);
}
.turmas-coluna:last-child .turmas-distantes-hint {
    background: rgba(61, 79, 97, 0.06);
    border-color: rgba(61, 79, 97, 0.12);
}
.turmas-distantes-hint__wa {
    color: var(--blue-mid);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.turmas-coluna:last-child .turmas-distantes-hint__wa {
    color: var(--gray-dark);
}
.turma-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem 2rem;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
.turma-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-mid);
    border-color: var(--blue-pale);
}
.turma-header {
    display: flex;
    justify-content: center;
    align-items: center;
}
.turma-tipo {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
}
.tipo-doma {
    background: rgba(46, 109, 180, 0.1);
    color: var(--blue-mid);
    border: 1px solid rgba(46, 109, 180, 0.25);
}
.tipo-redeas {
    background: rgba(61, 79, 97, 0.1);
    color: var(--gray-dark);
    border: 1px solid rgba(61, 79, 97, 0.2);
}
.turma-nome {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--blue-dark);
    line-height: 1.3;
}
.turma-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.turma-detail {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}
.turma-detail i {
    color: var(--blue-mid);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.btn-turma {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.3s;
    align-self: center;
    box-shadow: 0 3px 12px rgba(46, 109, 180, 0.3);
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-turma:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 109, 180, 0.4);
}

/* Turma sem vagas (landing) */
.turma-card.turma-card--esgotada {
    opacity: 0.58;
    filter: grayscale(0.25);
    pointer-events: auto;
}
.turma-card.turma-card--esgotada:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
    border-color: var(--gray-light);
}
.turma-lotada-badge {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b45309;
    background: rgba(180, 83, 9, 0.12);
    border: 1px solid rgba(180, 83, 9, 0.35);
    padding: 0.35rem 0.75rem;
    border-radius: 30px;
    align-self: center;
}
.btn-turma.btn-turma--esgotada,
.btn-turma.btn-turma--esgotada:hover {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
    opacity: 0.95;
}

/* ============================================================
   INSCRIÇÃO (Formulário)
   ============================================================ */
.inscricao {
    background: linear-gradient(
        180deg,
        rgba(28, 58, 94, 1) 0%,
        rgba(46, 109, 180, 1) 100%
    );
    padding: 6rem 0;
}
.inscricao .section-title h2 { color: var(--white); }
.inscricao .section-title p { color: rgba(168, 200, 232, 0.85); }
.inscricao .section-badge {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
}
.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(168, 200, 232, 0.25);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--blue-pale);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(168, 200, 232, 0.25);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(168, 200, 232, 0.4);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-pale);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 14px rgba(168, 200, 232, 0.2);
}
.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23A8C8E8" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}
.form-group select option {
    background: #1C3A5E;
    color: var(--white);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-row .form-group:only-child {
    grid-column: 1 / -1;
}
@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
.form-submit {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1.1rem;
    font-size: 1.1rem;
}
.form-hint {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-muted, rgba(168, 200, 232, 0.65));
}
.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: rgba(168, 200, 232, 0.55);
}
.form-note i { color: var(--blue-pale); margin-right: 0.3rem; }

/* Popup de sucesso da inscrição */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 45, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    z-index: 2000;
}
.popup-overlay.active {
    display: flex;
}
.popup-card {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem 1.6rem;
    text-align: center;
    box-shadow: 0 18px 45px rgba(5, 25, 45, 0.3);
    border: 1px solid rgba(46, 109, 180, 0.18);
}
.popup-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--blue-dark);
    margin-bottom: 0.8rem;
}
.popup-card p {
    color: var(--gray-dark);
    margin-bottom: 1.2rem;
}
.popup-group-btn {
    min-width: 230px;
}
/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--blue-dark);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--blue-mid);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 1rem; }
.footer-brand .logo.logo-footer {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.footer-brand .logo span {
    color: rgba(168, 200, 232, 0.6);
    font-family: var(--font-body);
    letter-spacing: 0.1em;
}
.footer-brand p {
    color: rgba(168, 200, 232, 0.55);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--blue-pale);
    margin-bottom: 1.2rem;
}
.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-info-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: rgba(168, 200, 232, 0.65);
    line-height: 1.5;
}
.footer-info-list li i { color: var(--blue-pale); margin-top: 0.15rem; flex-shrink: 0; }
.footer-location-link {
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(168, 200, 232, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(168, 200, 232, 0.78);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s;
}
.footer-location-link i {
    font-size: 1rem;
    color: var(--blue-pale);
}
.footer-location-link:hover {
    background: var(--blue-mid);
    color: var(--white);
    border-color: var(--blue-mid);
    transform: translateY(-3px);
}
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.social-links a {
    min-height: 34px;
    padding: 0.35rem 0.7rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(168, 200, 232, 0.2);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--blue-pale);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.3s;
}
.social-links a i {
    font-size: 1rem;
}
.social-links a:hover {
    background: var(--blue-mid);
    color: var(--white);
    border-color: var(--blue-mid);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}
.footer-bottom p { color: rgba(168, 200, 232, 0.35); font-size: 0.8rem; }
.senar-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(168, 200, 232, 0.4);
    border: 1px solid rgba(168, 200, 232, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 30px;
}
.senar-credit i { color: var(--blue-pale); opacity: 0.7; }
/* ============================================================
   FLOATING BUTTON
   ============================================================ */
.floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: all 0.3s ease;
    animation: float-pulse 2s infinite ease-in-out;
}
.floating-btn:hover {
    transform: scale(1.1);
    animation-play-state: paused;
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}
.floating-btn-badge {
    position: absolute;
    top: -6px;
    right: -5px;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ff2f4f;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 21px;
    text-align: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
}
@keyframes float-pulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-12px) scale(1.04); }
}
/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
/* ============================================================
   RESPONSIVE — DESKTOP
   ============================================================ */
@media (min-width: 768px) {
    .sobre-grid { grid-template-columns: 1fr 1.2fr; gap: 5rem; }
    .cursos-grid { grid-template-columns: 1fr 1fr; }
    .turmas-colunas { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
    .footer-bottom { justify-content: center; }
    .form-wrapper { padding: 3.5rem; }
}
@media (min-width: 1024px) {
    /* Regra defasada removida ou adaptada futuramente */
}
}
