/* ============================================
   FONT DISPLAY OPTIMIZATION - Font Awesome
   ============================================ */

/* Forçar font-display: swap para Font Awesome do CDN */
@font-face {
    font-family: 'FontAwesome';
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   REFLOW PREVENTION - Performance Optimization
   ============================================ */

/* CSS containment para elementos isolados - previne reflows */
.video-placeholder,
.testimonial-card,
.benefit-card,
.timeline-item,
.result-item,
.faq-item,
.package-card {
    contain: layout style;
}

/* Will-change para elementos que vão animar */
.hero-content,
.section-title,
.cta-primary {
    will-change: transform, opacity;
}

/* Remover will-change após animação */
.hero-content.animated,
.section-title.animated,
.cta-primary:hover {
    will-change: auto;
}

:root {
    --primary-brown: #a84e33;
    --primary-brown-dark: #8a3a28;
    --accent-cream: #f5e9dc;
    --text-dark: #2C1810;
    --text-light: #4a4a4a;
    --white: #FFFFFF;
    --background-primary: #f8f4f0;
    --background-secondary: #f0e8dc;
    --background-accent: #e8ddd0;
    --shadow: rgba(44, 24, 16, 0.15);
    --neon-glow: 0 0 20px rgba(168, 78, 51, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(168, 78, 51, 0.2);
    --overlay-dark: rgba(44, 24, 16, 0.8);
    --overlay-light: rgba(245, 233, 220, 0.9);
    --cta-gradient-start: #8a3a28;
    --cta-gradient-end: #2C1810;
    
    /* Futuristic Effects */
    --neon-brown: rgba(168, 78, 51, 0.8);
    --neon-cream: rgba(245, 233, 220, 0.9);
    --hologram-gradient: linear-gradient(45deg, 
        rgba(168, 78, 51, 0.1) 0%, 
        rgba(245, 233, 220, 0.2) 25%, 
        rgba(168, 78, 51, 0.1) 50%, 
        rgba(245, 233, 220, 0.2) 75%, 
        rgba(168, 78, 51, 0.1) 100%);
    --cyber-glow: 0 0 30px rgba(168, 78, 51, 0.6), 
                  0 0 60px rgba(168, 78, 51, 0.4), 
                  0 0 90px rgba(168, 78, 51, 0.2);
    --scan-line: linear-gradient(90deg, 
        transparent 0%, 
        rgba(168, 78, 51, 0.1) 40%, 
        rgba(245, 233, 220, 0.3) 50%, 
        rgba(168, 78, 51, 0.1) 60%, 
        transparent 100%);
}

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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: radial-gradient(ellipse at center, var(--background-primary) 0%, var(--background-secondary) 100%);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, .logo, .cta-primary {
    font-family: 'EB Garamond', Georgia, 'Times New Roman', Times, serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(168, 78, 51, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 78, 51, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 233, 220, 0.6) 0%, transparent 50%),
        var(--hologram-gradient);
    background-size: 100% 100%, 100% 100%, 100% 100%, 200px 200px;
    animation: hologramShift 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Cyber Grid Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(168, 78, 51, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 78, 51, 0.03) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px;
    pointer-events: none;
    z-index: -1;
    animation: gridPulse 4s ease-in-out infinite alternate;
}

@keyframes hologramShift {
    0%, 100% { 
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; 
        opacity: 0.7;
    }
    50% { 
        background-position: 0% 0%, 0% 0%, 0% 0%, 100% 100%; 
        opacity: 1;
    }
}

@keyframes gridPulse {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

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

/* HEADER */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(168, 78, 51, 0.2);
    position: relative;
}

/* Cyber Header Effect */
.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-brown), 
        var(--accent-cream), 
        var(--primary-brown), 
        transparent);
    animation: headerGlow 3s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.logo {
    max-width: 100px;
    position: relative;
}

.logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(168, 78, 51, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(168, 78, 51, 0.6));
    transform: scale(1.05);
}

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



.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-brown);
    text-shadow: 0 0 5px rgba(168, 78, 51, 0.3);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-brown);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.cta-header {
    background: var(--cta-gradient-start);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(44, 24, 16, 0.3);
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.4);
    background: var(--text-dark);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.header.nav-open .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
}

.header.nav-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



.contact-info {
   display: none;
}

.contact-info i, .footer-section i {
    margin-right: 8px;
    color: var(--primary-brown);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, 
        var(--background-primary) 0%, 
        var(--background-secondary) 50%, 
        var(--background-accent) 100%);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(168, 78, 51, 0.12) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(168, 78, 51, 0.08) 0%, transparent 70%),
        linear-gradient(45deg, transparent 30%, rgba(245, 233, 220, 0.3) 50%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(245,233,220,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    background: var(--primary-brown);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(168, 78, 51, 0.3);
}

.hero-badge i {
    color: #FFD700;
}

.hero h1 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(168, 78, 51, 0.3);
    letter-spacing: 1px;
    animation: titleGlow 3s ease-in-out infinite alternate;
    white-space: normal; /* Allow line breaks */
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(168, 78, 51, 0.3); }
    100% { text-shadow: 0 0 30px rgba(168, 78, 51, 0.5), 0 0 40px rgba(44, 24, 16, 0.2); }
}

.hero h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-video-container {
    margin: 40px auto;
    max-width: 320px;
}

.video-placeholder {
    position: relative;
    width: 318.938px;
    height: 567px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(168, 78, 51, 0.3);
}

/* Estilo para o player Wistia */
.video-placeholder wistia-player {
    width: 318.938px;
    height: 567px;
    max-width: 100%;
    border-radius: 20px;
    background: var(--primary-brown);
}

/* Fallback enquanto carrega */
.video-placeholder wistia-player:not(:defined) {
    border-radius: 20px;
    width: 318.938px;
    height: 567px;
    max-width: 100%;
}

/* VSL Responsivo */
@media (max-width: 768px) {
    .hero-video-container {
        max-width: 280px;
        margin: 30px auto;
    }
    
    .video-placeholder {
        width: 280px;
        height: 498px;
    }
    
    .video-placeholder wistia-player,
    .video-placeholder wistia-player:not(:defined) {
        width: 280px;
        height: 498px;
    }
}

@media (max-width: 480px) {
    .hero-video-container {
        max-width: 250px;
        margin: 25px auto;
    }
    
    .video-placeholder {
        width: 250px;
        height: 444px;
        border-radius: 15px;
    }
    
    .video-placeholder wistia-player,
    .video-placeholder wistia-player:not(:defined) {
        width: 250px;
        height: 444px;
        border-radius: 15px;
    }
}

.hero-cta-container {
    margin: 40px 0;
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-subtitle i {
    color: #FF6B35;
}

.cta-primary {
    background: linear-gradient(45deg, var(--cta-gradient-start), var(--cta-gradient-end));
    color: var(--white);
    padding: 20px 45px;
    border: 2px solid transparent;
    border-radius: 15px;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 20px 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(44, 24, 16, 0.3),
        0 0 20px rgba(138, 58, 40, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 6px 25px rgba(44, 24, 16, 0.4),
        0 0 35px rgba(138, 58, 40, 0.3),
        0 15px 35px rgba(44, 24, 16, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, var(--primary-brown), var(--cta-gradient-start));
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.15) 50%, 
        transparent 70%);
    animation: buttonScan 3s infinite linear;
    opacity: 0;
}

.cta-primary:hover::after {
    opacity: 1;
}

@keyframes buttonScan {
    0% { transform: translateX(-100%) skewX(-45deg); }
    100% { transform: translateX(200%) skewX(-45deg); }
}

/* FUTURISTIC PARTICLES EFFECT */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-brown);
    border-radius: 50%;
    opacity: 0.6;
    animation: cyberFloat 25s infinite linear;
    box-shadow: 0 0 6px var(--neon-brown), 0 0 12px var(--neon-brown);
}

.particle:nth-child(odd) {
    background: var(--accent-cream);
    box-shadow: 0 0 6px var(--neon-cream), 0 0 12px var(--neon-cream);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; width: 2px; height: 2px; }
.particle:nth-child(2) { left: 20%; animation-delay: 3s; width: 4px; height: 4px; }
.particle:nth-child(3) { left: 30%; animation-delay: 6s; width: 1px; height: 8px; }
.particle:nth-child(4) { left: 40%; animation-delay: 9s; width: 3px; height: 3px; }
.particle:nth-child(5) { left: 50%; animation-delay: 12s; width: 2px; height: 6px; }
.particle:nth-child(6) { left: 60%; animation-delay: 15s; width: 4px; height: 2px; }
.particle:nth-child(7) { left: 70%; animation-delay: 18s; width: 1px; height: 4px; }
.particle:nth-child(8) { left: 80%; animation-delay: 21s; width: 3px; height: 1px; }
.particle:nth-child(9) { left: 90%; animation-delay: 24s; width: 2px; height: 2px; }

@keyframes cyberFloat {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
        transform: translateY(95vh) rotate(18deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(50vh) rotate(180deg) scale(1.2);
    }
    95% {
        opacity: 0.8;
        transform: translateY(5vh) rotate(342deg) scale(1);
    }
    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Scanning Lines Effect */
.scan-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--scan-line);
    background-size: 100% 4px;
    animation: scanMove 3s linear infinite;
    pointer-events: none;
    z-index: 2;
    opacity: 0.1;
}

@keyframes scanMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Futuristic Entry Animations */
.cyber-fadeIn {
    opacity: 0;
    transform: translateY(30px);
    animation: cyberFadeIn 0.8s ease-out forwards;
}

.cyber-slideIn {
    opacity: 0;
    transform: translateX(-50px);
    animation: cyberSlideIn 0.6s ease-out forwards;
}

.cyber-scaleIn {
    opacity: 0;
    transform: scale(0.8);
    animation: cyberScaleIn 0.7s ease-out forwards;
}

.cyber-glitchIn {
    opacity: 0;
    animation: cyberGlitchIn 1s ease-out forwards;
}

@keyframes cyberFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-5px);
        box-shadow: var(--neon-glow);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cyberSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    50% {
        opacity: 0.8;
        transform: translateX(5px);
        box-shadow: var(--cyber-glow);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cyberScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
        box-shadow: var(--neon-glow);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cyberGlitchIn {
    0% {
        opacity: 0;
        transform: translate(0);
    }
    10% {
        opacity: 0.3;
        transform: translate(2px, 1px);
    }
    20% {
        opacity: 0.6;
        transform: translate(-2px, -1px);
    }
    30% {
        opacity: 0.9;
        transform: translate(1px, 2px);
    }
    40%, 100% {
        opacity: 1;
        transform: translate(0);
    }
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.trust-item i {
    color: var(--primary-brown);
    font-size: 16px;
}

/* COUNTDOWN TIMER */
.countdown {
    background: linear-gradient(135deg, var(--primary-brown), var(--primary-brown-dark));
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 20px rgba(168, 78, 51, 0.3);
}

/* Cyber Countdown Effects */
.countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--scan-line);
    animation: scanMove 4s linear infinite;
    opacity: 0.3;
}

.countdown::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-cream), 
        var(--primary-brown), 
        var(--accent-cream), 
        transparent);
    animation: borderPulse 2s ease-in-out infinite alternate;
}

@keyframes borderPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.countdown-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.urgency-message {
    text-align: center;
}

.urgency-message strong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.urgency-message i {
    color: var(--primary-brown);
    animation: pulse 2s infinite;
}

.spots-remaining {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-timer {
    display: flex;
    gap: 30px;
}

.countdown-item {
    text-align: center;
}

.countdown-cta {
    text-align: center;
}

.cta-pulse {
    animation: ctaPulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* URGENCY SECTION */
.urgency-section {
    background: var(--background-accent);
    color: var(--text-dark);
    padding: 80px 0;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: var(--text-light);
}

.urgency-icon {
    font-size: 60px;
    margin-bottom: 30px;
    color: var(--primary-brown);
}

.urgency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.urgency-cta {
    margin-top: 40px;
}

.risk-free {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}



.countdown-number {
    font-size: 24px;
    font-weight: 700;
    display: block;
    color: var(--white);
    text-shadow: 
        0 0 10px var(--accent-cream),
        0 0 20px var(--accent-cream),
        0 0 30px var(--accent-cream);
    animation: numberGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.countdown-label {
    font-size: 12px;
    opacity: 0.8;
    letter-spacing: 2px;
    color: var(--accent-cream);
    text-shadow: 0 0 5px var(--accent-cream);
}

.countdown-item {
    position: relative;
    padding: 10px 15px;
    border: 1px solid rgba(245, 233, 220, 0.3);
    border-radius: 8px;
    background: rgba(245, 233, 220, 0.1);
    backdrop-filter: blur(10px);
    margin: 0 5px;
}

@keyframes numberGlow {
    0% {
        text-shadow: 
            0 0 10px var(--accent-cream),
            0 0 20px var(--accent-cream),
            0 0 30px var(--accent-cream);
    }
    100% {
        text-shadow: 
            0 0 15px var(--white),
            0 0 25px var(--accent-cream),
            0 0 35px var(--accent-cream),
            0 0 45px var(--accent-cream);
    }
}

/* VALUE PROPOSITION */
.value-prop {
    padding: 80px 0;
    background: var(--background-secondary);
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(168, 78, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 233, 220, 0.05) 0%, transparent 50%);
}

.section-title {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-shadow: 0 0 20px rgba(168, 78, 51, 0.2);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* Cyber Text Effect */
.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary-brown);
    opacity: 0.3;
    animation: glitchText 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glitchText {
    0%, 90%, 100% {
        transform: translate(0);
        opacity: 0.3;
    }
    5% {
        transform: translate(2px, 1px);
        opacity: 0.8;
    }
    10% {
        transform: translate(-1px, -1px);
        opacity: 0.6;
    }
    15% {
        transform: translate(1px, 1px);
        opacity: 0.4;
    }
    20% {
        transform: translate(0);
        opacity: 0.3;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-brown), 
        transparent);
    box-shadow: 0 0 10px var(--primary-brown);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(168, 78, 51, 0.1);
}

/* Cyber Border Effect */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: var(--hologram-gradient);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderFlow 4s linear infinite;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-brown), 
        transparent, 
        var(--primary-brown));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        var(--cyber-glow),
        0 25px 50px rgba(168, 78, 51, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--primary-brown);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover::after {
    opacity: 1;
}

/* Border Flow Animation */
@keyframes borderFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-brown), var(--primary-brown-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
    position: relative;
    box-shadow: var(--neon-glow), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    animation: iconPulse 3s ease-in-out infinite;
}

/* Cyber Icon Effect */
.benefit-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: conic-gradient(var(--primary-brown), var(--accent-cream), var(--primary-brown));
    mask: radial-gradient(circle at center, transparent 35px, black 37px);
    animation: rotate360 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

@keyframes iconPulse {
    0%, 100% { 
        box-shadow: var(--neon-glow), inset 0 2px 4px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: var(--cyber-glow), inset 0 2px 4px rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

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

.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* SOCIAL PROOF */
.social-proof {
    background: var(--background-accent);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(168, 78, 51, 0.05) 50%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(245, 233, 220, 0.1) 0%, transparent 60%);
}

.testimonials-showcase {
    margin-top: 50px;
}

.testimonial-featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(245, 233, 220, 0.1);
    position: relative;
    z-index: 2;
}

.testimonial-video {
    position: relative;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--primary-brown);
}

.video-thumbnail wistia-player {
    width: 100%;
    height: 250px;
    border-radius: 15px;
}

.video-thumbnail wistia-player:not(:defined) {
    width: 100%;
    height: 250px;
    border-radius: 15px;
}

/* Removido: estilos antigos do placeholder de vídeo - agora usa player Wistia real */

.testimonial-content {
    padding: 20px 0;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.testimonial-author p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.author-rating {
    display: flex;
    gap: 5px;
}

.author-rating i {
    color: #FFD700;
    font-size: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Hologram Effect for Testimonials */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--scan-line);
    transition: left 0.6s ease;
    opacity: 0.3;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: var(--hologram-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderFlow 6s linear infinite;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        var(--cyber-glow),
        0 25px 50px rgba(168, 78, 51, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.author-details h4 {
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-details p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-rating {
    margin-left: auto;
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 14px;
}

.card-text {
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.card-badge {
    background: rgba(168, 78, 51, 0.15);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(168, 78, 51, 0.3);
}

.card-badge i {
    color: var(--primary-brown);
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.stat {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 14px;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 80px 0;
    background: var(--background-primary);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(168, 78, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(245, 233, 220, 0.05) 0%, transparent 50%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-brown);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* SPEAKERS SECTION */
.speakers {
    background: var(--background-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.speakers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(168, 78, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(245, 233, 220, 0.05) 0%, transparent 50%);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.speaker-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Cyber Frame for Speakers */
.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: var(--hologram-gradient);
    opacity: 0.1;
    animation: hologramShift 8s ease-in-out infinite;
}

.speaker-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 26px;
    border: 2px solid transparent;
    background: conic-gradient(var(--primary-brown) 0deg, transparent 90deg, var(--accent-cream) 180deg, transparent 270deg, var(--primary-brown) 360deg);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate360 8s linear infinite;
}

.speaker-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        var(--cyber-glow),
        0 25px 50px rgba(168, 78, 51, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.speaker-card:hover::after {
    opacity: 1;
}

.speaker-image {
    margin-bottom: 25px;
}

.speaker-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-brown), var(--text-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(168, 78, 51, 0.3);
}

.speaker-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.speaker-title {
    font-size: 1.1rem;
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 15px;
}

.speaker-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.speaker-credentials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.speaker-credentials span {
    background: rgba(168, 78, 51, 0.15);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(168, 78, 51, 0.3);
}

.speaker-credentials i {
    color: var(--primary-brown);
}

.speakers-cta {
    text-align: center;
    margin-top: 50px;
}

/* PACKAGES */
.packages {
    background: var(--background-accent);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 40%, rgba(168, 78, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(245, 233, 220, 0.05) 0%, transparent 50%);
}

.comparison-table {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--primary-brown);
    color: var(--white);
}

.feature-column {
    padding: 30px;
    display: flex;
    align-items: center;
}

.feature-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.package-column {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.featured-column {
    background: var(--text-dark);
    transform: scale(1.02);
    z-index: 2;
}

.popular-badge {
    background: var(--primary-brown);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.package-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-detail {
    font-size: 14px;
    opacity: 0.8;
}

.table-body {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.feature-row {
    display: contents;
}

.feature-row:nth-child(even) .feature-name,
.feature-row:nth-child(even) .feature-value {
    background: rgba(168, 78, 51, 0.1);
}

.feature-name {
    padding: 20px 30px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(168, 78, 51, 0.2);
}

.feature-value {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(168, 78, 51, 0.2);
    border-left: 1px solid rgba(168, 78, 51, 0.2);
}

.feature-value i {
    font-size: 18px;
}

.feature-value .fa-check {
    color: #28a745;
}

.feature-value .fa-times {
    color: #dc3545;
}

.feature-value .fa-star {
    color: #FFD700;
}

.table-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 30px 0;
}

.cta-column {
    text-align: center;
    padding: 0 20px;
}

.cta-secondary {
    background: var(--white);
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary-brown);
    color: var(--white);
}

.packages-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(168, 78, 51, 0.1);
    border: 1px solid rgba(168, 78, 51, 0.2);
    border-radius: 15px;
}

.packages-note p {
    color: var(--text-light);
    font-style: italic;
}

.packages-note i {
    color: var(--primary-brown);
    margin-right: 8px;
}

/* EXPERIENCES SECTION */
.experiences-section {
    margin-top: 60px;
    padding: 40px 0;
    background: rgba(245, 233, 220, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(168, 78, 51, 0.1);
    backdrop-filter: blur(15px);
}

.experiences-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-brown);
    margin-bottom: 10px;
    font-weight: 600;
}

.experiences-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.experience-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(168, 78, 51, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), var(--primary-brown-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.experience-card:hover::before {
    transform: scaleX(1);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(168, 78, 51, 0.15);
}

.experience-header {
    margin-bottom: 20px;
}

.experience-header h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 600;
}

.experience-date {
    color: var(--primary-brown);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(168, 78, 51, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.experience-details {
    margin-bottom: 25px;
}

.experience-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.experience-spots {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.experience-spots i {
    color: var(--primary-brown);
}

.experience-note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.experience-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-brown);
}

.experience-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-brown), var(--primary-brown-dark));
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.experience-cta:hover {
    background: linear-gradient(135deg, var(--primary-brown-dark), var(--text-dark));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(168, 78, 51, 0.3);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experiences-title {
        font-size: 1.8rem;
    }
    
    .experience-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .experience-price {
        font-size: 1.2rem;
    }
}

/* LEGAL PAGES */
.legal-page {
    padding: 120px 0 80px 0;
    background: var(--background-primary);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(168, 78, 51, 0.1);
}

.legal-content h1 {
    color: var(--primary-brown);
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(168, 78, 51, 0.1);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-top: 20px;
}

.legal-section h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0 15px 30px;
}

.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section strong {
    color: var(--text-dark);
}

.legal-section a {
    color: var(--primary-brown);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.legal-section a:hover {
    border-bottom: 1px solid var(--primary-brown);
}

/* Cancellation Table */
.cancellation-table {
    background: var(--background-secondary);
    border-radius: 15px;
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid rgba(168, 78, 51, 0.2);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 150px 1fr;
    gap: 0;
}

.table-row.header {
    background: var(--primary-brown);
    color: var(--white);
    font-weight: 700;
}

.table-row:not(.header) {
    border-bottom: 1px solid rgba(168, 78, 51, 0.1);
}

.table-row:not(.header):last-child {
    border-bottom: none;
}

.table-cell {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.table-cell.green {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    font-weight: 700;
}

.table-cell.yellow {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
    font-weight: 700;
}

.table-cell.red {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    font-weight: 700;
}

.table-cell small {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

.back-to-site {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(168, 78, 51, 0.1);
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .table-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .table-cell {
        padding: 15px;
        text-align: left;
    }
    
    .table-row.header .table-cell {
        text-align: center;
        background: var(--primary-brown);
    }
    
    .legal-section ul,
    .legal-section ol {
        margin-left: 20px;
    }
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--background-primary);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(168, 78, 51, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(245, 233, 220, 0.05) 0%, transparent 50%);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(168, 78, 51, 0.3);
    border-radius: 15px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.faq-question {
    background: rgba(168, 78, 51, 0.15);
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 78, 51, 0.3);
}

.faq-question:hover {
    background: var(--primary-brown);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(168, 78, 51, 0.4);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* FORM SECTION */
.form-section {
    background: var(--background-secondary);
    color: var(--text-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(168, 78, 51, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(245, 233, 220, 0.08) 0%, transparent 50%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 25px;
    color: var(--accent-cream);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.form-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(168, 78, 51, 0.3);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-brown);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
}

.submit-btn {
    width: 100%;
    background: var(--primary-brown);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
}

/* FOOTER */
.footer {
    background: var(--background-accent);
    color: var(--text-dark);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(168, 78, 51, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'EB Garamond', serif;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--primary-brown);
}

/* Social Section Layout 
.footer-section:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section:last-child h3 {
    margin-bottom: 15px;
}*/

/* Social Icons Container */
.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Social Icons Styling */
.footer-section a i {
    font-size: 1.8rem;
    transition: all 0.3s ease;
    display: inline-block;
    color: var(--text-light);
}

.footer-section a:hover i {
    transform: scale(1.2);
}

.footer-section a i.fa-instagram:hover {
    color: #E4405F;
}

.footer-section a i.fa-linkedin:hover {
    color: #0077B5;
}

.footer-section a i.fa-youtube:hover {
    color: #FF0000;
}

/* Social Icons Responsive */
@media (max-width: 768px) {
    .social-icons {
        gap: 25px;
    }
    
    .footer-section a i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-section:last-child {
        align-items: center;
    }
    
    .footer-section:last-child h3 {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(168, 78, 51, 0.3);
    padding-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--overlay-dark);
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--glass-border);
        padding: 20px 0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hamburger {
        display: block;
    }

    /* Comparison Table Responsive - mantém formato de tabela */
    .packages .container {
        padding: 0;
        max-width: 100%;
    }
    
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 500px;
        margin: 50px auto 0;
        display: block;
    }

    .table-header,
    .table-body,
    .table-footer {
        width: 100%;
        min-width: 500px;
    }

    .table-header {
        grid-template-columns: 140px repeat(3, 120px);
    }

    .table-body {
        grid-template-columns: 140px repeat(3, 120px);
    }

    .table-footer {
        grid-template-columns: 140px repeat(3, 120px);
    }

    .feature-column h3 {
        font-size: 1rem;
    }

    .package-header h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .feature-name {
        font-size: 0.85rem;
        padding: 12px 15px;
    }

    .feature-value {
        padding: 12px 8px;
    }

    .cta-secondary,
    .cta-primary {
        padding: 8px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
        font-size: 80px;
    }
    
    .countdown-content {
        gap: 15px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package.featured {
        transform: none;
    }
    
    .contact-info {
        display: none;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }



    .testimonial-featured {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* LOADING ANIMATION */
.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-brown);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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

/* SUCCESS MESSAGE */
.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.success-message h3 i {
    margin-right: 10px;
}

.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(168, 78, 51, 0.3);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group select option {
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-brown);
}

/* Correção para Links Importantes no Footer */
.footer-links a {
    color: var(--primary-brown) !important;
    text-decoration: underline !important;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.footer-links a:hover {
    color: var(--primary-brown-dark) !important;
    text-decoration: none !important;
}

.footer-links p {
    position: relative;
    z-index: 5;
}

/* Manter ícones das redes sociais sem decoração */
.social-icons a {
    text-decoration: none !important;
}

/* ============================================
   OTIMIZAÇÃO DE PERFORMANCE - Content Visibility
   ============================================ */

/* Seções abaixo da dobra - lazy rendering para melhor performance */
.testimonials-section,
.faq-section,
.timeline-section,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

/* Seções com conteúdo variável */
.value-prop-section,
.results-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}