:root {
    --bg-black: #050505;
    --gold-primary: #00f2ff; /* Ciano Neon */
    --gold-primary-rgb: 0, 242, 255;
    --gold-secondary: #ffffff; /* Brilho máximo */
    --gold-dark: #0062ff; /* Azul Elétrico */
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --gold-gradient: linear-gradient(135deg, #0062ff 0%, #00f2ff 50%, #0042ff 100%);
    --aura-glow: radial-gradient(circle, rgba(0, 242, 255, 0.25) 0%, rgba(5, 5, 5, 0) 70%);
    --gold-shadow: rgba(0, 242, 255, 0.4);
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100%;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    user-select: none; /* Impede seleção de texto global */
}

img {
    -webkit-user-drag: none; /* Impede arrastar imagem no Chrome/Safari */
    user-select: none;
    pointer-events: auto; /* Permite cliques, mas não arrasto/seleção */
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Barra de Rolagem Dourada Premium */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 50px;
    border: 2px solid #050505;
}

::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
    background: var(--gold-primary);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    cursor: none;
    overflow-x: hidden;
    position: relative;
}


.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--gold-primary);
    transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.3s;
    display: block !important;
}

/* Esconder cursor em dispositivos móveis */
@media (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }
}

button,
a {
    cursor: none !important;
}

.cursor-hover {
    width: 50px;
    height: 50px;
    background: var(--aura-glow);
    border: 2px solid var(--gold-primary);
}

/* Removido o botão de voltar ao portal para o site independente */

.hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2rem 0 2rem;
    min-height: 100vh;
    overflow: hidden;
}

/* O background foi movido para o ::before para permitir fade-out sem afetar as máscaras */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('backcgroud-blue.png');
    background-size: cover;
    background-position: top center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    opacity: var(--hero-bg-opacity, 1);
    will-change: opacity;
}


.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    z-index: 10;
}

/* Variante para páginas sem imagem lateral (ex: Método CPN) */
.container.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.container.hero-centered .hero-content {
    align-items: center;
    text-align: center;
}

.container.hero-centered .logo-container {
    align-items: center;
}

.container.hero-centered .subtitle {
    margin: 0 auto 3rem auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Retornado para a esquerda no desktop */
    text-align: left; /* Texto alinhado à esquerda para layout 2 colunas */
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.gold-text {
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px var(--aura-glow);
    animation: goldShimmer 5s linear infinite;
}

@keyframes goldShimmer {
    to {
        background-position: 200% center;
    }
}

.logo-badge {
    background: var(--gold-gradient);
    color: #000;
    padding: 0.4rem 1.6rem;
    border-radius: 6px;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 0 20px var(--gold-primary);
}

.tagline {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-top: 0.5rem;
    padding-left: 0;
}

.text-content h1 {
    font-size: clamp(1.4rem, 3.2vw, 2.2rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 750px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Button */
.cta-button {
    position: relative;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    border: none;
    outline: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-shadow: 0 10px 30px var(--gold-shadow);
    color: #000;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--gold-shadow);
}

.button-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gold-gradient);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 12px;
}

.cta-button:hover .button-glow {
    opacity: 0.6;
}

.cta-date {
    display: block;
    margin-top: 1.2rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
    text-align: center;
}

.cta-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    animation: fadeInRight 1.2s ease-out; /* Retornado para animação lateral */
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.4));
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 60%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 95%);
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.05) brightness(1.1);
    user-select: none;
    pointer-events: none;
    transform: translateY(0); /* Subindo a posição conforme solicitado */
}

.aura-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(241, 213, 146, 0.3) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(80px);
    top: 50%; /* Subindo para acompanhar a nova posição da imagem */
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 8s infinite ease-in-out;
}

/* Background Elements - Devolvendo a profundidade */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.circle-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: float 15s infinite alternate ease-in-out;
}

.circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--gold-primary-rgb), 0.03) 0%, transparent 70%);
    animation: float 20s infinite alternate-reverse ease-in-out;
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 20px) rotate(5deg);
    }

    100% {
        transform: translate(-20px, 40px) rotate(-5deg);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.2;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* R2 Section */
.r2-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 20;
    padding: 2.2rem 2rem;
}

.r2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('r2-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.r3-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('backgroud-r3-pc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.r2-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5rem;
}

.r2-headline {
    text-align: center;
}

.r2-text {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.r2-text strong {
    font-weight: 800;
    color: var(--text-white);
}

.r2-line {
    display: block;
    width: 120px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 12px var(--gold-primary);
}

.r2-video-frame {
    width: 100%;
    max-width: 900px;
    height: 506px; /* Ajustado para proporção 16:9 de 900px de largura ideal */
    position: relative;
    margin: 4rem 0 3rem 0;
}

.r2-video-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.r2-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: rgba(5, 10, 20, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.25); /* Dourado suave combinando com o tema */
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(212, 175, 55, 0.05);
}

.r2-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.r2-video-wrapper.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.r2-video-player {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Suporta vídeos verticais (com barras pretas laterais) e horizontais perfeitamente */
    border-radius: 23px;
    outline: none;
    background: #000;
}

/* Botões de Navegação Flutuantes */
.r2-video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(8, 8, 8, 0.9);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 175, 55, 0.2);
}

.r2-video-nav:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 25px var(--gold-primary);
    transform: translateY(-50%) scale(1.1);
}

.r2-video-nav.prev {
    left: -25px; /* Posicionado exatamente no meio da borda esquerda */
}

.r2-video-nav.next {
    right: -25px; /* Posicionado exatamente no meio da borda direita */
}

/* Dots Indicadores */
.r2-video-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(8, 8, 8, 0.7);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.r2-video-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.r2-video-dot.active {
    background: var(--gold-primary);
    transform: scale(1.25);
    box-shadow: 0 0 8px var(--gold-primary);
}

/* Responsividade de Tela */
@media (max-width: 1024px) {
    .r2-video-frame {
        max-width: 90%;
    }
    .r2-video-nav.prev {
        left: 10px; /* Traz para dentro da tela para evitar cortes no tablet */
    }
    .r2-video-nav.next {
        right: 10px; /* Traz para dentro da tela para evitar cortes no tablet */
    }
}

@media (max-width: 768px) {
    .r2-video-frame {
        height: 380px; /* Reduz altura no mobile */
        margin: 3rem 0 2rem 0;
    }
    .r2-video-nav {
        width: 42px;
        height: 42px;
    }
    .r2-video-nav.prev {
        left: 8px;
    }
    .r2-video-nav.next {
        right: 8px;
    }
    .r2-video-dots {
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .r2-video-frame {
        height: 260px; /* Altura ideal para smartphones pequenos */
    }
    .r2-video-nav {
        width: 36px;
        height: 36px;
    }
    .r2-video-nav svg {
        width: 18px;
        height: 18px;
    }
}

.r2-phrases {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
}

.r2-phrase-highlight {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--gold-primary); /* Azul Ciano */
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--gold-shadow);
}

.r2-phrase-sub {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: var(--text-white);
    line-height: 1.6;
}

/* Bio Section */
/* Ajuste o espaço da seção aqui (padding e min-height) */
.bio-section {
    position: relative;
    min-height: 65vh;
    margin-top: 0; /* Removido o espaço de transição */
    padding: 5rem 2rem 4rem 2rem; /* Aumentado o padding superior para descer a biografia */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 1;
}

/* O background foi movido para o .bio-bg para permitir fade-in sem afetar as máscaras */
.bio-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('backgroud-biografia.png');
    background-size: cover;
    background-position: center 50px; /* Deslocado 50px para baixo para garantir que a cabeça não seja cortada */
    background-attachment: scroll;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    opacity: var(--bio-bg-opacity, 0);
    will-change: opacity;
}

.video-container {
    max-width: 850px; /* Reduzido de 1000px para ficar mais compacto */
    width: 100%;
    text-align: center;
}

.bio-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* Mantém a biografia alinhada à direita */
    align-items: center;
    gap: 4rem;
    z-index: 10;
}

.bio-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Ajuste o tamanho da foto da bio aqui (max-width) */
.bio-image {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    filter: contrast(1.08) brightness(1.05) saturate(1.1) sepia(0.1) drop-shadow(0 0 40px var(--gold-shadow));
    transform: translateY(-60px);
    /* Descendo para -60px */
    mask-image: radial-gradient(circle at 50% 40%, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, black 40%, transparent 90%);
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.5s ease;
    user-select: none;
    pointer-events: none;
}

/* Ajuste o tamanho do card de texto aqui (padding e max-width) */
/* Ajuste o tamanho do card de texto aqui (padding e max-width) */
.bio-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 2rem 2rem 2rem;
    /* Compactado */
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 650px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: revealIn 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 20% cover 50%;
}

.bio-card h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.bio-card h2 strong {
    font-weight: 800;
}

.bio-carousel {
    position: relative;
    width: 100%;
}

.bio-slides-container {
    overflow: hidden;
    width: 100%;
}

.bio-slides {
    display: flex !important;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
}

.bio-slide {
    flex: 0 0 100%;
    width: 100%;
    opacity: 0.3;
    transition: opacity 0.6s ease;
    padding-bottom: 2rem;
}

.bio-slide.active {
    opacity: 1;
}

.bio-slide p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.carousel-controls {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    justify-content: flex-start;
    position: relative;
    z-index: 20;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-height: 480px; /* Limitando a altura vertical */
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 24px;
    padding: 3px;
    background: var(--gold-gradient);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(212, 175, 55, 0.15);
    overflow: hidden;
    margin: 0 auto;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    cursor: none;
    transition: all 0.3s ease;
    border: 1.5px solid var(--gold-shadow);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--gold-primary);
}

.bio-highlights {
    border-left: 3px solid transparent;
    /* Começa transparente */
    padding-left: 1.5rem;
    margin: 2rem 0;
    transition: border-color 1s ease;
}

.bio-section[style*="opacity: 1"] .bio-highlights {
    border-left-color: var(--gold-primary);
}

@keyframes revealIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 
   SINTAXE CORRIGIDA: Bloco redundante e quebrado removido.
   Toda a responsividade agora reside na ZONA MOBILE ao final do arquivo.
*/


/* 
   LIMPEZA TÉCNICA: Media queries antigas removidas. 
   Toda a responsividade agora é tratada na ZONA MOBILE no final do arquivo. 
*/


/* ============================================================
   ZONA DE DESENVOLVIMENTO: CENTRALIZAÇÃO MOBILE EXCLUSIVA
   Atualizado para 992px para cobrir tablets e celulares grandes.
   ============================================================ */
/* ============================================================
   ZONA DE DESENVOLVIMENTO: RESPONSIVIDADE TOTAL (MOBILE & TABLET)
   Ajustado para funcionar perfeitamente de 320px até 992px.
   ============================================================ */
@media (max-width: 992px) {
    body::before {
        display: none !important;
    }

    .back-home-btn {
        display: none !important;
    }

    /* 1. R1: Hero Section - Reset Total */
    .hero {
        padding: 4rem 1.2rem !important;
        min-height: 100vh !important; /* Faz a seção ocupar a tela inteira */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* Centraliza tudo verticalmente */
        position: relative !important;
        overflow: hidden !important;
    }

    .container {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        position: relative !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        position: relative !important;
        z-index: 10 !important;
        margin-top: -3rem !important;
    }

    /* Centralização de Logo e Tagline */
    .logo-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 3.5rem !important; /* Aumentado para preencher mais espaço */
        width: 100% !important;
    }

    .logo {
        font-size: clamp(1.6rem, 8vw, 2.4rem) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .tagline {
        text-align: center !important;
        margin: 0.8rem 0 0 0 !important;
        letter-spacing: 4px !important;
    }

    .text-content {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .text-content h1 {
        font-size: clamp(1.2rem, 5.5vw, 1.5rem) !important;
        font-weight: 300 !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin-bottom: 2rem !important; /* Aumentado */
    }

    .subtitle {
        font-size: 1.05rem !important;
        text-align: center !important;
        margin: 0 auto 3.5rem auto !important; /* Aumentado para empurrar o botão para baixo */
        max-width: 100% !important;
        line-height: 1.6 !important;
    }

    /* 2. R1: Imagem do Palestrante (Background) - Ocultada no Mobile */
    .hero-image-container {
        display: none !important;
    }

    /* 3. R2: Biografia (Bio Section) */
    .bio-section {
        padding: 4rem 1.2rem !important;
        overflow: hidden !important;
    }

    .bio-container {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .bio-image-wrapper {
        display: none !important;
    }

    .bio-card {
        width: 100% !important;
        padding: 2.5rem 1.5rem !important;
        margin: 0 !important;
        background: rgba(10, 10, 10, 0.9) !important;
        border: 1px solid rgba(212, 175, 55, 0.2) !important;
        text-align: center !important;
        animation: fadeInUp 1.2s ease-out both !important;
        animation-timeline: none !important;
        animation-range: none !important;
        transform: none !important;
    }

    .bio-card h2 {
        font-size: 1.8rem !important;
        text-align: center !important;
    }

    .bio-highlights {
        border-left: none !important;
        border-top: 2px solid var(--gold-primary) !important;
        padding: 1.5rem 0 0 0 !important;
        margin: 2rem 0 !important;
        text-align: center !important;
    }

    /* 4. R3: Grid e Métodos */
    .method-section {
        padding: 4rem 1.2rem !important;
    }

    .container-method {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .cpn-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .cpn-card {
        padding: 2.5rem 1.5rem !important;
    }

    /* 5. Ajustes Gerais */
    .cta-button {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 420px !important;
        margin: 1.5rem auto 0 auto !important;
        padding: 1.2rem !important;
        font-size: 0.95rem !important;
        text-align: center !important;
    }

    .cta-date {
        text-align: center !important;
        margin: 1.2rem auto 0 auto !important;
    }

    .cta-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
    }

    .carousel-controls {
        justify-content: center !important;
    }

    /* Sobrescreve alinhamentos inline à esquerda para centralização universal no mobile */
    div[style*="text-align: left"],
    div[style*="text-align:left"],
    p[style*="text-align: left"],
    p[style*="text-align:left"] {
        text-align: center !important;
    }

    .custom-cursor {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }
}

/* ============================================================
   R3 – SEÇÃO DO MÉTODO PROJETO ÁGUIA
   Design Cyber-Luxo: Cards CPN + Caixa de Engenharia dourada
   ============================================================ */

.r3-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 4rem 2rem 2rem 2rem;
}

.r3-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Header do Método CPN R3 --- */
.r3-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
}

.r3-subtitle {
    font-size: clamp(1.05rem, 2vh, 1.25rem);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

/* --- Grid R3 --- */
.r3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-bottom: 1rem;
}

/* --- Cards R3 --- */
.r3-card {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.r3-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.15);
}

.card-glow-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

.card-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.r3-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 2.2rem 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-content h3 {
    font-size: 1.35rem;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.card-content h3 strong {
    font-weight: 800;
    color: var(--text-white);
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
/* ============================================================
   SEÇÃO DE PROVA SOCIAL (R1.5)
   ============================================================ */
.social-proof-section {
    width: 100%;
    min-height: 100vh;
    background: transparent; /* Permite que o fundo da página (background.png) apareça */
    position: relative;
    overflow: visible; /* IMPORTANTE: Permitir que as setas apareçam nas laterais */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 100; /* Elevado para ficar acima de outros fundos */
    padding: 5rem 0 3rem 0; /* Aumentado um pouco para dar mais respiro */
}

.video-container {
    max-width: 850px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* Adicionado para ser referência das setas */
}

.section-tag {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: var(--gold-primary);
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 3rem;
    color: #fff;
}

#premium-video-player {
    position: relative;
    width: 100%; /* Estica horizontalmente */
    aspect-ratio: 16/9; /* Mantém a proporção de cinema */
    display: flex;
    /* Removido max-height e aspect-ratio para adaptar ao vídeo original */
    background: linear-gradient(135deg, #f1d592 0%, #d4af37 25%, #aa8439 50%, #d4af37 75%, #f1d592 100%);
    border-radius: 30px;
    padding: 12px; /* Espessura da moldura dourada */
    box-shadow: 
        0 40px 100px rgba(0,0,0,0.9), 
        0 0 50px rgba(212, 175, 55, 0.4),
        inset 0 0 20px rgba(0,0,0,0.5);
    overflow: visible; /* Permitir que detalhes dos cantos 'respirem' */
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

#premium-video-player:hover {
    box-shadow: 0 60px 150px rgba(0,0,0,1), 0 0 80px rgba(241, 213, 146, 0.6);
}

/* Cantos Decorativos Removidos a Pedido */

.proof-video {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo preencher toda a largura */
    object-position: center 15%; /* Mantém o rosto visível sem cortar muito */
    border-radius: 20px; /* Casando com a curvatura da moldura */
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.5);
}

.video-overlay-glow {
    display: none; /* Removido para não criar reflexos (triângulos) em cima do vídeo */
}

.video-caption {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    text-align: center;
}

/* Responsividade Vídeo */
@media (max-width: 768px) {
    .social-proof-section {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    #premium-video-player {
        padding: 8px;
        border-radius: 20px;
    }
    
    .frame-corner {
        width: 30px;
        height: 30px;
    }
}

/* Botões de Navegação do Carrossel */
.video-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #080808;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    pointer-events: all;
}

.video-nav-btn:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 25px var(--gold-primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px; /* Exatamente na borda esquerda */
}

.next-btn {
    right: -25px; /* Exatamente na borda direita */
}

/* R4 Section - Caixa de Valor */
.r4-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    padding: 1.5rem 2rem 3rem 2rem;
    background: transparent;
}

.r4-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('backgroud-r3-pc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.r4-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.r4-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
}

.r4-header h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 300;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.r4-subtitle {
    font-size: clamp(1.05rem, 2vh, 1.25rem);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

.r4-card-wrapper {
    width: 100%;
    max-width: 680px;
    position: relative;
    padding-top: 20px;
}

.r4-card {
    position: relative;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 242, 255, 0.25);
    border-radius: 28px;
    padding: 3.5rem 3rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 242, 255, 0.05);
    text-align: center;
}

.r4-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    box-shadow: 0 0 20px var(--gold-primary);
    z-index: 10;
    white-space: nowrap;
}

.r4-card-header {
    margin-bottom: 0.5rem;
}

.r4-card-tag {
    font-size: 0.85rem;
    color: var(--gold-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.r4-card-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.r4-divider {
    width: 100%;
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 242, 255, 0.15), transparent);
    margin: 1.5rem 0;
}

.r4-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
}

.r4-original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.r4-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1;
}

.r4-price .currency {
    font-size: 2rem;
    margin-top: 0.6rem;
    margin-right: 0.4rem;
    color: var(--gold-primary);
}

.r4-price .amount {
    font-size: 6.5rem;
    letter-spacing: -2px;
}

.r4-price .cents {
    font-size: 2.2rem;
    margin-top: 0.6rem;
    margin-left: 0.1rem;
}

.r4-installments {
    font-size: 1rem;
    color: var(--gold-primary);
    margin-top: 0.5rem;
    font-weight: 600;
}

.r4-vip-box {
    background: rgba(0, 242, 255, 0.03);
    border: 1px dashed rgba(0, 242, 255, 0.25);
    border-radius: 18px;
    padding: 1.8rem;
    margin: 1.5rem 0;
    width: 100%;
    text-align: center;
}

.r4-vip-box h4 {
    font-size: 0.9rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.r4-vip-highlight {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.r4-vip-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.r4-cta-wrapper {
    width: 100%;
    margin: 1.5rem 0;
}

.r4-cta-button {
    position: relative;
    width: 100%;
    padding: 1.3rem 2rem;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    border: none;
    outline: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-shadow: 0 10px 30px var(--gold-shadow);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.r4-cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px var(--gold-shadow);
}

.r4-footer-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.r4-guarantee {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* R6 Section - Dúvidas Frequentes */
.r6-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    padding: 4rem 2rem;
    background: transparent;
}

.r6-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('backgroud-r3-pc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    opacity: calc(var(--faq-bg-opacity, 0) * 0.8);
    will-change: opacity;
}

.r6-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.r6-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Accordion Wrapper */
.r6-faq-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 5rem;
}

/* FAQ Item */
.faq-item {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.1);
    background: rgba(12, 12, 12, 0.8);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 1.8rem 2.2rem;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    cursor: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    padding: 0 2.2rem;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding-bottom: 2rem;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* CTA Final Box */
.r6-cta-box {
    text-align: center;
    max-width: 750px;
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.r6-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.8rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2.2rem;
    line-height: 1.4;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.r6-cta-button {
    position: relative;
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    border: none;
    outline: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-shadow: 0 10px 30px var(--gold-shadow);
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.r6-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--gold-shadow);
}

.r6-cta-button .button-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gold-gradient);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 16px;
}

.r6-cta-button:hover .button-glow {
    opacity: 0.6;
}

/* ============================================================
   TIMER DE CONTAGEM REGRESSIVA (R4 VALOR)
   ============================================================ */
.r4-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 0 auto 2.5rem auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.03), inset 0 0 15px rgba(0, 242, 255, 0.01);
    max-width: fit-content;
    animation: countdownGlow 4s infinite alternate;
}

@keyframes countdownGlow {
    from {
        border-color: rgba(0, 242, 255, 0.2);
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.03);
    }
    to {
        border-color: rgba(0, 242, 255, 0.45);
        box-shadow: 0 0 35px rgba(0, 242, 255, 0.15);
    }
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    text-shadow: 0 0 12px rgba(0, 242, 255, 0.45);
    line-height: 1;
}

.countdown-unit {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 0.2rem;
}

.countdown-colon {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-primary);
    text-shadow: 0 0 8px var(--gold-primary);
    margin-top: -0.8rem;
}

/* ============================================================
   ACELERAÇÃO DE HARDWARE POR GPU (PERFORMANCE ULTRA FLUIDA)
   ============================================================ */
.hero .container,
.r2-container,
.r3-container,
.r4-container,
.bio-container,
.r6-container {
    will-change: transform, opacity;
}
