/*-------------------------------------------*/
/* 1. VARIÁVEIS E ESTILOS GERAIS             */
/*-------------------------------------------*/
:root {
    --dark-blue: #131e3d;
    --bright-green: #18d600;
    --red: #e53935;
    --white: #ffffff;
    --light-gray: #f0f2f5;
    --text-dark: #131e3d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 85px; /* Espaço para o Header Fixo */
}

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

/* ⭐️ CORREÇÃO FLEXBOX: Aumenta o container em telas grandes ⭐️ */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1320px; 
    }
}

h1, h2, h3 {
    font-weight: 900;
    color: var(--dark-blue);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 2rem;
}

h2 .highlight {
    background-color: var(--bright-green);
    padding: 4px 8px;
    color: var(--white);
}

.texto-pequeno {
    font-size: 0.70rem;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-subtitle {
    max-width: 600px;
    margin: -1.5rem auto 3rem auto;
    text-align: center;
    font-size: 1.1rem;
}

/* Continua na Parte 2... */

/*-------------------------------------------*/
/* ⚡ HEADER FIXO (CORREÇÃO FLEXBOX UNIFICADA) */
/*-------------------------------------------*/
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-blue);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    /* ⭐️ CORREÇÃO FLEXBOX: Garante que os itens não quebrem linha ⭐️ */
    flex-wrap: nowrap;
}
.nav-logo img {
    height: 50px;
}

/* ⭐️ CORREÇÃO FLEXBOX: Blinda a Logo para ela nunca ser esmagada ⭐️ */
.nav-logo {
    flex-shrink: 0; 
    min-width: 120px; 
}

.nav-menu {
    display: flex;
    list-style: none;
    /* O gap original era 2rem (32px), vamos diminuir para caber tudo */
    gap: 1rem; 
    margin: 0 auto;
    flex-grow: 1; /* Permite que o menu ocupe o espaço no centro */
    justify-content: center; /* Mantém centralizado no desktop */
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 0 5px; /* Reduz o padding horizontal do link */
}

.nav-menu a:hover {
    color: var(--bright-green);
}
.nav-btn {
    flex-shrink: 0;
    white-space: nowrap;
}
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    z-index: 1001;
}

/*-------------------------------------------*/
/* ⚡ HERO HOME (COM VÍDEO OTIMIZADO)         */
/*-------------------------------------------*/
.hero-home {
    position: relative;
    height: calc(100vh - 85px); 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

/* Vídeo de Fundo */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2; /* Fica no fundo de tudo */
}

/* Overlay escuro para legibilidade */
.hero-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1; /* Acima do vídeo, abaixo do conteúdo */
}

/* Conteúdo do Hero */
.hero-home .hero-content {
    z-index: 1; /* Acima do overlay */
    position: relative; 
    text-align: center;
}
.hero-home .hero-content h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 0.5rem;
}
.hero-home .hero-content p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.hero-home .hero-content p.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}
.hero-home .hero-buttons {
    margin-top: 2rem;
}

/*-------------------------------------------*/
/* 2. BOTÕES (GLOBAL)                        */
/*-------------------------------------------*/
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: scale(1.03); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-green {
    background-color: var(--bright-green);
    color: var(--dark-blue);
    border-color: var(--bright-green);
}
.btn-green:hover {
    background-color: #00e626;
}

.btn-green-wht {
    background-color: var(--bright-green);
    color: var(--dark-blue); /* Mudei para Azul para melhor contraste */
    border-color: var(--bright-green);
}
.btn-green-wht:hover {
    background-color: #00e626;
}

.btn-dark {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}
.btn-dark:hover {
    background-color: #1a2b52;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--dark-blue);
    border-color: #ccc;
}
.btn-outline-dark:hover {
    background-color: var(--light-gray);
    color: var(--dark-blue);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Continua na Parte 3... */

/*-------------------------------------------*/
/* 3. SEÇÕES ANTIGAS (Manter por compatibilidade) */
/*-------------------------------------------*/
.about {
    min-height: 640px;
    background-color: var(--dark-blue);
    color: var(--white);
}
.about h2 { color: var(--white); }
.about p { max-width: 700px; margin-bottom: 2rem; }
.training {
    min-height: 755px;
    align-items: center;
    padding: 4rem 0;
}
.training .container { width: 100%; }
.training h2 .highlight { display: block; }
.training-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}
.training-card {
    background-color: var(--dark-blue);
    border-radius: 10px;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    flex-basis: 15%;
    min-width: 160px;
    transition: all 0.3s ease; 
}
.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.training-card img {
    width: 100%;
    height: auto;
    display: block;
}
.training-card h3 {
    color: var(--white);
    padding: 1rem 1rem 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 700;
}
.training-card p {
    color: #ccc;
    padding: 0 1rem 1rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
}
.enrollment {
    min-height: 640px;
    background-image: url('assets/turma_2026.png');
    background-position: center;
    color: var(--white);
    position: relative;
}
.enrollment-container {
    position: relative;
    z-index: 2;
    text-align: left;
}
.enrollment h2 { text-align: left; color: var(--white); }
.video-section {
    min-height: 770px;
    background: var(--light-gray);
}
.video-placeholder {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background-color: var(--red);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-placeholder iframe {
    width: 100%;
    height: 100%;
}
.global {
    min-height: 455px;
    background-color: var(--dark-blue);
    color: var(--white);
}
.global h2 { color: var(--white); }
.global p { max-width: 800px; margin-left: auto; margin-right: auto; }

.global .climax-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--bright-green);
    text-transform: none;
    margin-bottom: 2rem;
}
.final-cta {
    min-height: 455px;
}
.location {
    min-height: 499px;
    background-color: var(--bright-green);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}
.location-text { text-align: left; }
.location-text h3 { font-size: 2.5rem; margin-bottom: 1rem; }
.location-map iframe { width: 100%; height: 350px; border: 0; border-radius: 10px; }

/* DIVISÃO 09: FOOTER (GLOBAL) */
.footer {
    min-height: 400px;
    background-color: var(--dark-blue);
    color: var(--white);
}
.footer h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 1.5rem; }
.social-links { margin-bottom: 1rem; }
.social-links a, .extra-socials a {
    color: var(--white);
    margin: 0 1rem;
    font-size: 1.1rem;
    text-decoration: none;
}
.social-links i { margin-right: 8px; color: var(--bright-green); }
.extra-socials { margin-bottom: 2rem; }
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.footer-logo { height: 30px; }


/*-------------------------------------------*/
/* 4. UPGRADE 10/10: SEÇÕES DAS PÁGINAS      */
/*-------------------------------------------*/

/* --- Animação de Fade-in no Scroll --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Continua na Parte 4... */

/*-------------------------------------------*/
/* 4.5. ESTILOS DA PÁGINA "INFOS.HTML" (10/10) */
/*-------------------------------------------*/

/* --- Seção 1: Info Hero --- */
.info-hero {
    padding: 6rem 0;
    background-color: var(--dark-blue);
    color: var(--white);
}
.content-container {
    max-width: 800px;
    margin: 0 auto;
}
.info-hero h2 {
    color: var(--white);
    text-align: center;
}
.info-hero .info-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--bright-green);
    margin-bottom: 2rem;
}
.info-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #f0f2f5;
}

/* --- Seção 2: Bloco de Citação --- */
.quote-block {
    padding: 6rem 0;
    background-color: var(--light-gray);
}
.quote-block blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.5;
    position: relative;
    padding-left: 3rem;
    border-left: 5px solid var(--bright-green);
}

/* --- Seção 3: Grid de Ícones --- */
.icon-grid-section {
    padding: 6rem 0;
    background-color: var(--white);
}
.icon-grid-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.1rem;
}
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}
.icon-item {
    text-align: center;
}
.icon-item i {
    font-size: 3rem;
    color: var(--bright-green);
    margin-bottom: 1.5rem;
}
.icon-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}
.icon-item p {
    color: #555;
}

/* --- Seção 4: Seção Dividida (COM FILTRO CORRIGIDO) --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--light-gray);
}

.split-image {
    /* 1. Usando a SUA imagem (COM O NOME CORRIGIDO) */
    background-image: url('assets/infos/sala_aula02.jpg'); /* <-- APONTANDO PARA .jpg minúsculo */
    background-size: cover;
    background-position: center;
    min-height: 450px;
    position: relative; 
    
    /* 2. O CORRETO: Aplicando o filtro P&B na imagem de fundo */
    filter: grayscale(100%);
}

/* 3. O Overlay azul por cima */
.split-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 4. A cor do tinjido (nosso azul) e a opacidade */
    background-color: var(--dark-blue); 
    opacity: 0.75; 
}

.split-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.split-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.split-content .btn {
    margin-top: 1rem;
}

/*-------------------------------------------*/
/* 4.6. ESTILOS DA PÁGINA "TURMA.HTML" (10/10) */
/*-------------------------------------------*/

/* --- Lista de Features (Seção 1) --- */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    max-width: 500px; 
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.feature-list li {
    font-size: 1.1rem;
    color: #f0f2f5;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.feature-list li i {
    color: var(--bright-green);
    margin-right: 12px;
    font-size: 1.2rem;
}

/* --- Seção 3: Investimento --- */
.investment-section {
    padding: 6rem 0;
    background-color: var(--white);
}
.investment-section .section-subtitle {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.2rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.pricing-card-header {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}
.pricing-card-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.pricing-card-header .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bright-green);
}
.pricing-card-header .price-suffix {
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
}
.pricing-card-body {
    padding: 2rem;
}
.pricing-card-body p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.pricing-card-body ul {
    list-style: none;
    padding: 0;
}
.pricing-card-body li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #555;
}
.pricing-card-body li::before {
    content: '✓';
    color: var(--bright-green);
    font-weight: 700;
    margin-right: 10px;
}

/* --- Seção 4: Detalhes (Regras e FAQ) --- */
.details-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start; 
}
.rules-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.rules-box h3 {
    margin-bottom: 1rem;
}
.rules-box p {
    margin-bottom: 1.5rem;
}
.rules-box ul {
    list-style: none;
    padding: 0;
}
.rules-box li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.rules-box li i {
    color: var(--red);
    margin-right: 12px;
    margin-top: 5px;
}

.details-section .faq-container {
    max-width: 100%; 
}
.details-section .faq-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Continua na Parte 5... */

/*-------------------------------------------*/
/* 4.7. ESTILOS DA PÁGINA "FORMACAO.HTML" (10/10) */
/*-------------------------------------------*/

/* --- Seção 2: Pilares --- */
.pillars-section {
    padding: 6rem 0;
    background-color: var(--white);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}
.pillar-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    border-bottom: 4px solid var(--bright-green);
}
.pillar-card i {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}
.pillar-card h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* --- Seção 3: Abas do Currículo --- */
.curriculum-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}
.curriculum-tabs {
    max-width: 900px;
    margin: 0 auto;
}
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.tab-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
    background-color: var(--white);
    border: 2px solid var(--dark-blue);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab-button i {
    margin-right: 8px;
}
.tab-button:hover {
    background-color: #f0f0f0;
}
.tab-button.active {
    background-color: var(--dark-blue);
    color: var(--bright-green);
}

.tab-content-wrapper {
    background-color: var(--white);
    padding: 2.5rem 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.tab-content {
    display: none; 
}
.tab-content.active {
    display: block; 
}
.tab-content h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    text-align: center;
}
.subject-list {
    list-style: none;
    padding: 0;
}
.subject-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #e0e0e0;
}
.subject-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.subject-list li span {
    font-weight: 700;
    color: var(--dark-blue);
}

/* --- Seção 4: Módulos (usando .training-grid) --- */
.modules-section {
    padding: 6rem 0;
}

/* --- Estilos do FAQ Acordeão (para faq.html) --- */
.faq-section {
    background-color: var(--light-gray);
    min-height: auto;
    padding: 6rem 0;
}
.faq-container {
    max-width: 800px;
}
.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
}
.faq-question h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 0;
}
.faq-icon {
    font-size: 1.2rem;
    color: var(--bright-green);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-dark);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 200px; 
}

/*-------------------------------------------*/
/* 4.8. ESTILOS DA PÁGINA "INSCRICAO.HTML" (10/10) */
/*-------------------------------------------*/

.application-form-section {
    padding: 3rem 0 6rem 0;
    background-color: var(--light-gray);
    display: block; 
}

.form-container {
    max-width: 900px; /* Mais largo para o formulário */
}

/* --- Barra de Progresso --- */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    background-color: #e0e0e0;
    border-radius: 50px;
    padding: 5px;
}
.progress-step {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    font-weight: 700;
    color: #888;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}
.progress-step.active {
    background-color: var(--dark-blue);
    color: var(--white);
}
.progress-step.completed {
    background-color: var(--bright-green);
    color: var(--dark-blue);
}


/* --- Estilos do Formulário Multi-Etapas --- */
.registration-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-step {
    display: none; /* Esconde todas as etapas */
    animation: fadeIn 0.5s;
}
.form-step.active {
    display: block; /* Mostra a etapa ativa */
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-fieldset {
    border: none;
    padding: 0;
    margin-bottom: 2rem;
}

.form-fieldset legend {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark-blue);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.form-group label.label-bold {
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--bright-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 214, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.required {
    color: var(--red);
    font-weight: 900;
}

/* --- Radio & Checkbox 10/10 --- */
.radio-group {
    display: flex;
    align-items: center;
    background-color: var(--light-gray);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}
.radio-group input[type="radio"],
.radio-group input[type="checkbox"] {
    margin-right: 12px;
    width: 1.2em;
    height: 1.2em;
}
.radio-group label {
    margin-bottom: 0;
    font-weight: 400;
}


/* --- Navegação e Feedback --- */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.form-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 700;
}
.form-message.success {
    color: var(--dark-blue);
}
.form-message.error {
    color: var(--red);
}

/* Botão de Carregamento */
#submitBtn.loading {
    background-color: #aaa;
    color: #fff;
    cursor: not-allowed;
}

/* Mensagem de Sucesso */
.success-message-box {
    text-align: center;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.success-message-box h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/*-------------------------------------------*/
/* 5. RESPONSIVIDADE (GLOBAL)                */
/*-------------------------------------------*/

/* --- Para Tablets (onde o menu vira hamburger) --- */
@media (max-width: 992px) {
    body {
        padding-top: 0; /* Remove o padding no mobile */
    }
    .navbar-fixed {
        position: relative; /* Header deixa de ser fixo */
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        justify-content: center;
        background-color: var(--dark-blue);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        gap: 2.5rem;
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu a { font-size: 1.5rem; }
    .hamburger { display: block; }
    .hamburger.active .fa-bars { display: none; }
    .hamburger .fa-times { display: none; }
    .hamburger.active .fa-times { display: block; }
    .nav-btn { display: none; }
    
    .location-grid { grid-template-columns: 1fr; }
    .location-text { text-align: center; margin-bottom: 2rem; }
    .enrollment::after { display: none; }
}

/* --- Responsividade dos 6 Cards (Upgrade 10/10) --- */
@media (max-width: 1200px) {
    .training-grid {
        flex-wrap: wrap; /* Permite que os cards quebrem a linha */
        gap: 2rem;
    }
    .training-card {
        flex-basis: 30%; /* 3 colunas */
        min-width: 250px;
    }
}

/* --- Para Tablets Menores --- */
@media (max-width: 768px) {
    
    /* Regra 1: Cards da formação */
    .training-card {
        flex-basis: 45%; /* 2 colunas */
    }

    /* Regra 2: Página "Infos" */
    .split-section {
        grid-template-columns: 1fr; /* Coluna única no celular */
    }
    .split-image {
        order: 1; /* Imagem vem primeiro */
    }
    .split-content {
        order: 2; /* Conteúdo vem depois */
        padding: 2.5rem; /* Menos padding no celular */
    }
    .quote-block blockquote {
        padding-left: 1.5rem;
        font-size: 1.3rem;
    }

    /* Regra 3: Página "Turma 2026" */
    .pricing-grid {
        grid-template-columns: 1fr; /* Coluna única no celular */
    }
    .details-grid {
        grid-template-columns: 1fr; /* Coluna única no celular */
    }

    /* Regra 4: Página "Formação" */
     .pillars-grid {
        grid-template-columns: 1fr; /* Coluna única */
    }
    .tab-buttons {
        flex-direction: column; /* Empilha os botões */
        gap: 0.5rem;
    }
    .tab-content-wrapper {
        padding: 2rem 1.5rem;
    }

    /* Regra 5: Página "Inscrição" */
    .registration-form {
        padding: 2rem;
    }
    .progress-bar {
        flex-direction: column;
        gap: 5px;
    }
}

/* --- Para Celulares --- */
@media (max-width: 576px) {
    .footer-bottom { 
        flex-direction: column; 
        gap: 1rem; 
    }
    .training-card {
        flex-basis: 100%; /* 1 coluna */
    }
}

/* ===============================
   Correção UI/UX - Formulário Multi-etapas
   =============================== */

   .form-step {
    /* Remove a borda padrão feia do fieldset */
    border: none;
    
    /* Remove o padding e margem padrão que quebram o layout */
    padding: 0;
    margin: 0;
}

.form-step legend {
    /* Esconde o título (ex: "Etapa 1: Dados Pessoais")
       pois já temos a barra de progresso */
    display: none;
}