/* ========================================
   ALÉM DO MONTE - CSS COMPLETO
   Versão: Estável e Otimizada
   Cores: Azul Marinho, Dourado e Amanhecer
   Imagens parceiros: 20% maiores
   CAPTCHA: Texto do input preto e negrito
   Fundo fixo das montanhas em todo o site
   Logo com animação de flutuação sutil
   ======================================== */

:root {
    --navy: #07182E;
    --navy-2: #0B2340;
    --navy-3: #12304F;
    --gold: #C98F27;
    --gold-2: #E1AD49;
    --cream: #F4E5C8;
    --cream-2: #FFF4DC;
    --sand: #E8C990;
    --text-dark: #07182E;
    --text-light: #FFF7E8;
    --white: #FFFFFF;
    --shadow: rgba(7, 24, 46, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: 
        radial-gradient(circle at 50% 0%, rgba(225, 173, 73, 0.18), transparent 34%),
        linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 42%, #F8EED8 100%);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* IMAGEM DE FUNDO FIXA DAS MONTANHAS */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070&auto=format');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -2;
    pointer-events: none;
}

/* Gradiente sobre o fundo fixo */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 0%, rgba(225, 173, 73, 0.08), transparent 50%),
        linear-gradient(180deg, rgba(255, 244, 220, 0.3) 0%, rgba(244, 229, 200, 0.4) 100%);
    z-index: -1;
    pointer-events: none;
}

/* ==========================================
   ANIMAÇÃO DE FLUTUAÇÃO DA LOGO (SUTIL)
   ========================================== */
.hero-content img {
    animation: flutuarSuave 3.5s ease-in-out infinite;
    transition: transform 0.3s ease;
    max-width: 60%;
    height: auto;
}

.hero-content img:hover {
    animation-play-state: paused;
    transform: scale(1.02);
}

@keyframes flutuarSuave {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: transparent;
    overflow: hidden;
    padding: 5rem 2rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 40%, rgba(225, 173, 73, 0.65), transparent 18%),
        linear-gradient(to bottom, transparent 65%, var(--cream-2) 100%);
    z-index: 0;
    animation: slowGlow 7s ease-in-out infinite alternate;
}

@keyframes slowGlow {
    from { opacity: .65; transform: scale(1); }
    to { opacity: .95; transform: scale(1.03); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 244, 220, 0.06), rgba(7, 24, 46, 0.25));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 790px;
    padding: 2rem;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    background: var(--navy);
    color: var(--gold-2);
    border: 1px solid rgba(201, 143, 39, 0.45);
    border-radius: 999px;
    padding: .75rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 18px 40px rgba(7, 24, 46, .18);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.6rem);
    line-height: .86;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -0.065em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 1.3rem;
    text-shadow: 0 4px 0 rgba(201, 143, 39, .12);
}

.hero-title::after {
    content: "";
    display: block;
    width: min(460px, 90%);
    height: 5px;
    margin-top: 1rem;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 999px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    max-width: 720px;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.3rem;
}

.btn {
    padding: 1rem 2.2rem;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    box-shadow: 0 16px 32px rgba(201, 143, 39, .32);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 42px rgba(201, 143, 39, .42);
}

.btn-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: rgba(255, 244, 220, .45);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--cream-2);
}

.hero-quote {
    font-style: normal;
    font-size: 1.16rem;
    font-weight: 900;
    border-left: 6px solid var(--gold);
    padding: 1rem 1.25rem;
    color: var(--cream-2);
    max-width: 650px;
    background: linear-gradient(90deg, rgba(7, 24, 46, .92), rgba(7, 24, 46, .68));
    border-radius: 0 22px 22px 0;
    box-shadow: 0 22px 44px rgba(7, 24, 46, .20);
    margin: 0 auto;
}

.hero-light {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 230px;
    background: linear-gradient(to top, var(--cream-2), transparent);
    pointer-events: none;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--navy);
    font-weight: 800;
    font-size: .78rem;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%,100%{transform:translateX(-50%) translateY(0);}
    50%{transform:translateX(-50%) translateY(10px);}
}

/* ==========================================
   LAYOUT GERAL
   ========================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 900;
}

.section-tag.gold {
    color: var(--gold);
}

.section-header h2,
.mission-content h2,
.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 1.03;
    font-weight: 700;
    color: var(--navy);
}

.section-header p,
.mission-content p {
    color: rgba(7, 24, 46, .72);
    font-size: 1.08rem;
}

/* ==========================================
   DESAFIOS (O MONTE)
   ========================================== */
.challenges {
    background: linear-gradient(180deg, rgba(255, 244, 220, 0.9), rgba(244, 229, 200, 0.9));
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px,1fr));
    gap: 1.25rem;
}

.challenge-card {
    background: rgba(255, 255, 255, .58);
    border-radius: 26px;
    padding: 1.75rem 1rem;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(201, 143, 39, .28);
    box-shadow: 0 20px 45px rgba(7, 24, 46, .08);
}

.challenge-card i {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--navy);
    border-radius: 50%;
    font-size: 1.65rem;
    color: var(--navy);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(225,173,73,.18));
}

.challenge-card h3 {
    font-size: 1.04rem;
    font-weight: 900;
    color: var(--navy);
}

.challenge-card:hover {
    transform: translateY(-8px);
    background: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 26px 50px rgba(7, 24, 46, .2);
}

.challenge-card:hover h3,
.challenge-card:hover i {
    color: var(--cream-2);
    border-color: var(--gold);
}

/* ==========================================
   MISSÃO
   ========================================== */
.mission {
    background: rgba(247, 233, 209, 0.9);
    padding: 2rem 0;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-radius: 34px;
    margin: 2rem auto;
    max-width: 1280px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(7, 24, 46, .26);
    border: 1px solid rgba(201, 143, 39, .3);
}

.mission-image {
    flex: 1;
    min-height: 520px;
    position: relative;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.03);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,24,46,.08), rgba(7,24,46,.78));
}

.mission-content {
    flex: 1;
    min-width: 320px;
    padding: clamp(2rem, 5vw, 4rem);
    color: var(--cream-2);
}

.mission-content h2,
.mission-content p {
    color: var(--cream-2);
}

.pillars-mini {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 2rem 0;
}

.pillar-item {
    background: rgba(225, 173, 73, .14);
    border: 1px solid rgba(225, 173, 73, .35);
    color: var(--cream-2);
    padding: .58rem 1rem;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
}

.timeline-evolution {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.evolution-step {
    background: rgba(255, 244, 220, .08);
    border: 1px solid rgba(225, 173, 73, .25);
    color: var(--cream-2);
    padding: .7rem 1rem;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
}

.evolution-step span {
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-weight: 900;
}

/* ==========================================
   PILARES (GLASSMORPHISM)
   ========================================== */
.core-pillars {
    background: linear-gradient(180deg, rgba(7, 24, 46, 0.95), rgba(3, 16, 31, 0.95));
    position: relative;
}

.core-pillars .section-header h2,
.core-pillars .section-header p {
    color: var(--cream-2);
}

.pillars-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px,1fr));
    gap: 1.3rem;
}

.glass-card {
    background: linear-gradient(180deg, rgba(255, 244, 220, .12), rgba(255, 244, 220, .04));
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 2rem 1.3rem;
    text-align: center;
    border: 1px solid rgba(225, 173, 73, .30);
    transition: 0.3s;
    color: var(--cream-2);
}

.glass-card i {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--gold-2);
    margin-bottom: 1rem;
}

.glass-card h3 {
    text-transform: uppercase;
    letter-spacing: .02em;
}

.glass-card p {
    color: rgba(255, 244, 220, .76);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(225, 173, 73, .12);
    box-shadow: 0 24px 50px rgba(0,0,0,.24);
}

/* ==========================================
   JORNADA (TIMELINE)
   ========================================== */
.how-it-works {
    background: rgba(255, 244, 220, 0.9);
}

.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.timeline-item {
    background: var(--white);
    border: 1px solid rgba(201, 143, 39, .25);
    border-radius: 28px;
    padding: 1.8rem;
    width: 205px;
    text-align: center;
    transition: all .35s ease;
    box-shadow: 0 18px 40px rgba(7, 24, 46, .08);
}

.timeline-item:hover {
    transform: translateY(-7px);
    background: var(--navy);
    color: var(--cream-2);
}

.timeline-num {
    font-size: 2.7rem;
    font-weight: 900;
    color: var(--gold);
}

.timeline-item h4 {
    margin-bottom: .5rem;
}

/* ==========================================
   CAPACITAÇÃO (CARDS DE CURSOS)
   ========================================== */
.training {
    background: linear-gradient(180deg, rgba(247, 233, 209, 0.9), rgba(244, 229, 200, 0.9));
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.course-card {
    background: var(--navy);
    color: var(--cream-2);
    padding: 1.3rem 0.8rem;
    border-radius: 18px;
    text-align: center;
    transition: .25s ease;
    border: 1px solid rgba(225, 173, 73, .35);
    box-shadow: 0 18px 36px rgba(7,24,46,.14);
}

.course-card i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: inline-block;
    color: var(--gold-2);
}

.course-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--gold-2);
}

.course-card .small-line {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,244,220,0.85);
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.course-card:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    transform: translateY(-5px);
}

.course-card:hover i,
.course-card:hover strong,
.course-card:hover .small-line {
    color: var(--navy);
}

/* ==========================================
   ESTATÍSTICAS
   ========================================== */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    text-align: center;
    gap: 1.25rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(255,255,255,.72);
    border-radius: 26px;
    padding: 2rem 1rem;
    border: 1px solid rgba(201, 143, 39, .25);
    box-shadow: 0 18px 40px rgba(7,24,46,.08);
}

.stat-item .stat-number,
.stat-item > span {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
}

.stat-item p {
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    font-size: .85rem;
}

/* ==========================================
   DEPOIMENTOS
   ========================================== */
.testimonials {
    background: rgba(7, 24, 46, 0.95);
}

.testimonials .section-header h2 {
    color: var(--cream-2);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.testimonial {
    background: rgba(255,244,220,.08);
    border: 1px solid rgba(225, 173, 73, .25);
    color: var(--cream-2);
    border-radius: 28px;
    padding: 2rem;
    max-width: 340px;
    backdrop-filter: blur(4px);
}

.testimonial-img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
    border: 3px solid var(--gold);
}

.testimonial-text {
    color: rgba(255,244,220,.88);
    margin-bottom: 1rem;
}

/* ==========================================
   PARCEIROS - CARROSSEL INFINITO
   IMAGENS 20% MAIORES
   ========================================== */
.partners {
    background: rgba(255, 244, 220, 0.9);
    overflow: hidden;
    position: relative;
}

.partners::before,
.partners::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners::before {
    left: 0;
    background: linear-gradient(90deg, var(--cream-2), transparent);
}

.partners::after {
    right: 0;
    background: linear-gradient(270deg, var(--cream-2), transparent);
}

.carousel-logos {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.logo-track {
    display: flex !important;
    align-items: center;
    width: fit-content;
    gap: 48px;
    animation: scrollInfinite 25s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-track img {
    flex-shrink: 0;
    height: 84px;
    width: auto;
    max-width: 168px;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
    opacity: 0.85;
}

.logo-track img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.08);
}

@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   CTA FINAL
   ========================================== */
.final-cta {
    position: relative;
    background: linear-gradient(90deg, rgba(7, 24, 46, 0.92), rgba(7, 24, 46, 0.55));
    padding: 7rem 2rem;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(225,173,73,.22), transparent 42%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: auto;
}

.cta-content h2,
.cta-content p {
    color: var(--cream-2);
}

.cta-content p {
    font-size: 1.35rem;
    margin: 1rem 0 1.5rem;
    font-weight: 700;
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 1rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #020B16;
    color: var(--cream-2);
    padding: 3.5rem 2rem 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1280px;
    margin: auto;
}

.footer-col {
    flex: 1;
    min-width: 260px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.footer-col p {
    color: rgba(255,244,220,.78);
}

.footer-col .fa-link a {
    color: rgba(255,244,220,.78);
    text-decoration: none;
}

.footer-col .fa-link a:hover {
    color: var(--gold-2);
}

.social-icons a {
    color: var(--cream-2);
    margin-right: .75rem;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(225,173,73,.35);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--navy);
}

#newsletterForm {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

#newsletterForm input {
    background: rgba(255,244,220,.07);
    border: 1px solid rgba(225,173,73,.45);
    padding: .85rem 1rem;
    border-radius: 12px;
    color: var(--cream-2);
    outline: none;
    flex: 1;
}

#newsletterForm input::placeholder {
    color: rgba(255,244,220,.5);
}

#newsletterForm button {
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
    border: none;
    border-radius: 12px;
    padding: .85rem 1.1rem;
    cursor: pointer;
}

.map-area {
    margin-top: 1rem;
    color: rgba(255,244,220,.68);
}

.map-area iframe {
    margin-top: 10px;
    border-radius: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(225,173,73,.16);
    margin-top: 2rem;
    color: rgba(255,244,220,.62);
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */
@media (max-width: 900px) {
    .hero {
        text-align: center;
        justify-content: center;
        padding: 4rem 1rem;
    }

    .hero-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-quote {
        margin: auto;
        border-radius: 18px;
    }

    .mission-container {
        margin: 1rem;
        flex-direction: column;
    }

    .mission-content {
        padding: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .hero-content img {
        max-width: 140px;
        animation: flutuarSuave 2.5s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    .partners::before,
    .partners::after {
        width: 40px;
    }
    
    .logo-track {
        gap: 24px;
    }
    
    .logo-track img {
        height: 60px;
        max-width: 120px;
    }
    
    .video-container {
        padding: 0 1rem;
    }
    
    .video-wrapper {
        border-radius: 16px;
        border-width: 1px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 3.5rem 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .timeline-item {
        width: 100%;
    }

    .mission-image {
        min-height: 320px;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .course-card {
        padding: 1rem 0.5rem;
    }
    
    .course-card i {
        font-size: 2rem;
    }
    
    .course-card strong {
        font-size: 0.85rem;
    }
    
    .course-card .small-line {
        font-size: 0.6rem;
    }
    
    .video-section {
        padding: 2rem 0;
    }
    
    .hero-content img {
        max-width: 120px;
        animation: flutuarSuave 2s ease-in-out infinite;
    }
}

/* ==========================================
   PÁGINAS DE CADASTRO E OBRIGADO
   ========================================== */
.cadastro-container,
.obrigado-container {
    max-width: 550px;
    width: 100%;
    background: rgba(15, 27, 51, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(214, 168, 79, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    animation: fadeUp 0.6s ease-out;
    margin: 2rem auto;
}

.logo-area {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-area h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #D6A84F;
    letter-spacing: 2px;
}

.logo-area p {
    color: rgba(245,245,245,0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #D6A84F;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group label i {
    margin-right: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(214,168,79,0.3);
    border-radius: 32px;
    color: #F5F5F5;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group select option {
    background: #0B1B34;
    color: #F5F5F5;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D6A84F;
    background: rgba(214,168,79,0.1);
    box-shadow: 0 0 0 3px rgba(214,168,79,0.2);
}

.btn-cadastrar {
    width: 100%;
    padding: 1rem;
    background: #D6A84F;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0B1B34;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
}

.btn-cadastrar:hover {
    background: #f0bd64;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(214,168,79,0.4);
}

.back-link {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link a {
    color: rgba(245,245,245,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link a:hover {
    color: #D6A84F;
}

.mensagem-erro {
    background: rgba(220,53,69,0.15);
    border-left: 4px solid #dc3545;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #ff8a8a;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-success {
    font-size: 5rem;
    color: #D6A84F;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.obrigado-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #D6A84F;
    margin-bottom: 1rem;
}

.mensagem {
    color: #F5F5F5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.nome-destaque {
    color: #D6A84F;
    font-weight: 700;
    font-size: 1.2rem;
}

.info-email {
    background: rgba(214,168,79,0.1);
    border-radius: 32px;
    padding: 1rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: rgba(245,245,245,0.8);
}

.info-email i {
    margin-right: 8px;
    color: #D6A84F;
}

.countdown {
    font-size: 0.9rem;
    color: #D6A84F;
    margin: 1rem 0;
    font-weight: 500;
}

.btn-voltar {
    display: inline-block;
    padding: 1rem 2rem;
    background: #D6A84F;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    color: #0B1B34;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-voltar:hover {
    background: #f0bd64;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(214,168,79,0.4);
}

.redirect-message {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(245,245,245,0.5);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.7rem;
    color: rgba(245,245,245,0.4);
}

.copyright a {
    color: #D6A84F;
    text-decoration: none;
}

/* ==========================================
   CAPTCHA - TEXTO DO INPUT PRETO E NEGRITO
   ========================================== */
.captcha-container {
    background: rgba(255,255,255,0.05);
    border-radius: 32px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(214,168,79,0.2);
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.captcha-question span {
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Texto digitado no input do CAPTCHA - PRETO E NEGRITO */
.captcha-question input {
    flex: 1;
    min-width: 100px;
    color: #000000 !important;
    font-weight: bold !important;
    background: #FFFFFF !important;
}

/* Placeholder do input do CAPTCHA */
.captcha-question input::placeholder {
    color: #666666 !important;
    font-weight: normal !important;
}

.captcha-refresh {
    background: none;
    border: none;
    color: #D6A84F;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.captcha-refresh:hover {
    transform: rotate(180deg);
    color: #f0bd64;
}

.captcha-info {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-align: center;
}

.captcha-info i {
    color: #D6A84F;
    margin-right: 5px;
}

/* ==========================================
   IMAGEM DO BANNER (LANÇAMENTO)
   ========================================== */
.banner-image-section {
    background: transparent;
    padding: 2rem 0 1rem 0;
}

.banner-lancamento {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-lancamento:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   VÍDEO DE APRESENTAÇÃO CENTRALIZADO
   ========================================== */
.video-section {
    background: transparent;
    padding: 4rem 0;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #000;
    border: 2px solid var(--gold);
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

/* Estilo dos controles do vídeo */
.video-wrapper video::-webkit-media-controls-panel {
    background: linear-gradient(90deg, var(--navy), var(--navy-2));
}

.video-wrapper video::-webkit-media-controls-play-button,
.video-wrapper video::-webkit-media-controls-current-time-display,
.video-wrapper video::-webkit-media-controls-time-remaining-display,
.video-wrapper video::-webkit-media-controls-timeline {
    color: var(--gold);
}

/* Responsivo */
@media (max-width: 768px) {
    .banner-lancamento {
        border-radius: 12px;
    }
    
    .video-container {
        padding: 0 1rem;
    }
    
    .video-wrapper {
        border-radius: 16px;
        border-width: 1px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 2rem 0;
    }
}