@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-primary: #FAF9F6;         /* Light Alabaster */
    --bg-secondary: #FFFFFF;       /* Pure White */
    --brand-black-deep: #050505;   /* Deep Black from template */
    --brand-black-brown: #120E0D;  /* Lower tone of black pulled towards brown */
    --brand-card-dark: #1E1715;    /* Premium dark brown/black card background */
    --brand-brown-dark: #231610;    /* Deep Rich Espresso */
    --brand-brown-medium: #422D22;  /* Warm Coffee */
    --brand-brown-light: #7E6558;   /* Soft Taupe */
    --brand-gold: #C9A87D;          /* Premium Champagne Gold from style.css */
    --brand-gold-bright: #D4AF37;   /* Metallic Accent Gold */
    --brand-gold-glow: rgba(201, 168, 125, 0.12);
    --brand-gold-glow-strong: rgba(201, 168, 125, 0.3);
    --text-black: #1A1310;          /* Deep Brown-Black for premium contrast */
    --text-muted: #6B5E57;          /* Soft Taupe-Gray */
    --text-light: #FAF9F6;          /* Clean white/off-white for dark backgrounds */
    --accent-red-muted: #B35E54;    /* Muted red for "Antes" pain points */
    --accent-green-muted: #5E9E75;  /* Muted green for successes */
    
    /* Borders & Outlines */
    --border-color: #EAE3DA;
    --border-color-dark: rgba(201, 168, 125, 0.25);
    
    /* Typography */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(35, 22, 16, 0.02);
    --shadow-md: 0 12px 32px rgba(35, 22, 16, 0.05);
    --shadow-lg: 0 24px 64px rgba(35, 22, 16, 0.08);
    --shadow-gold: 0 8px 30px rgba(201, 168, 125, 0.12);
}

/* Theme configurations */
.theme-light {
    --section-bg: var(--bg-primary);
    --section-bg-card: var(--bg-secondary);
    --section-text: var(--text-black);
    --section-text-muted: var(--text-muted);
    --section-border: var(--border-color);
    --section-title-color: var(--brand-brown-dark);
    --section-badge-bg: rgba(201, 168, 125, 0.15);
    --section-badge-text: var(--brand-brown-medium);
}

.theme-dark {
    --section-bg: var(--brand-black-brown);
    --section-bg-card: var(--brand-card-dark);
    --section-text: var(--text-light);
    --section-text-muted: #B3A7A1;
    --section-border: rgba(255, 255, 255, 0.08);
    --section-title-color: var(--text-light);
    --section-badge-bg: rgba(201, 168, 125, 0.15);
    --section-badge-text: var(--brand-gold);
}

/* ==========================================================================
   RESET & BASE STYLING
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-black);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-gold);
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--section-bg);
    color: var(--section-text);
    transition: background-color 0.4s ease, color 0.4s ease;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-title);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--brand-brown-dark);
    color: var(--text-light);
    border: 1px solid var(--brand-brown-dark);
}

.btn-primary:hover {
    background-color: var(--brand-brown-medium);
    border-color: var(--brand-brown-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-brown-dark);
    border: 1px solid var(--brand-gold);
}

.theme-dark .btn-secondary {
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(201, 168, 125, 0.1);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--brand-gold);
    color: var(--brand-brown-dark);
    border: 1px solid var(--brand-gold);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background-color: #d4b58b;
    border-color: #d4b58b;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 168, 125, 0.35);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background-color: var(--section-badge-bg);
    color: var(--section-badge-text);
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid var(--border-color-dark);
    transition: var(--transition-fast);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 700;
    color: var(--section-title-color);
    line-height: 1.2;
    margin-bottom: 18px;
    transition: color 0.4s ease;
}

.section-subtitle {
    font-size: 18px;
    color: var(--section-text-muted);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    .section-subtitle {
        font-size: 16px;
    }
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.header.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
    height: 64px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--brand-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 15px;
    color: rgba(250, 249, 246, 0.8);
    position: relative;
    padding: 6px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-gold);
    transition: var(--transition-fast);
    box-shadow: 0 0 10px var(--brand-gold);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item:hover {
    color: var(--text-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
    z-index: 1010;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Responsive Nav styles */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--brand-black-brown);
        border-left: 1px solid var(--border-color-dark);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transition: var(--transition-smooth);
        z-index: 1005;
        padding: 40px;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu .nav-item {
        color: var(--text-light);
        font-size: 18px;
    }
    
    .nav-actions {
        display: none; /* Let's place waitlist CTA inside menu for mobile */
    }
    
    .nav-menu .nav-actions-mobile {
        display: flex !important;
        margin-top: 20px;
        width: 100%;
    }
    
    .nav-menu .nav-actions-mobile .btn {
        width: 100%;
    }

    /* Animate Hamburger to X */
    .nav-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.nav-actions-mobile {
    display: none;
}

/* ==========================================================================
   SECTION 1: HERO & PRE-LAUNCH SHOWCASE
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
    background-color: var(--section-bg);
    color: var(--section-text);
    background-image: radial-gradient(circle at 80% 20%, rgba(201, 168, 125, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 15% 70%, rgba(66, 45, 34, 0.03) 0%, transparent 50%);
    transition: background-color 0.4s ease, color 0.4s ease;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
}

.hero-content {
    max-width: 680px;
}

@media (max-width: 1024px) {
    .hero-content {
        margin: 0 auto;
    }
}

.hero-title-container {
    height: auto;
    min-height: 120px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--section-title-color);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

.hero-title span.dynamic-text {
    color: var(--brand-gold);
    position: relative;
    display: inline-block;
    border-right: 3px solid var(--brand-gold);
    padding-right: 4px;
    white-space: nowrap;
    animation: blinkCursor 0.8s step-end infinite alternate;
}

.hero-title span.gold-static {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #a68519 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes blinkCursor {
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 19px;
    color: var(--section-text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    transition: color 0.4s ease;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .hero-ctas {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    .hero-ctas .btn {
        width: 100%;
    }
}

/* Hero Social Proof */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1024px) {
    .hero-proof {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-proof {
        flex-direction: column;
        gap: 12px;
    }
}

.avatar-group {
    display: flex;
    align-items: center;
}

.proof-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid var(--section-bg);
    margin-left: -12px;
    object-fit: cover;
    background-color: var(--border-color);
    transition: border-color 0.4s ease;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 14px;
    color: var(--section-text-muted);
    text-align: left;
    transition: color 0.4s ease;
}

.proof-text strong {
    color: var(--section-title-color);
    transition: color 0.4s ease;
}

.stars {
    display: flex;
    color: var(--brand-gold);
    gap: 2px;
    margin-bottom: 3px;
}

/* ==========================================================================
   IPHONE 16 MOCKUP (HTML/CSS)
   ========================================================================== */
.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    position: relative;
}

.iphone-16 {
    width: 300px;
    height: 608px;
    background-color: #1e1a17; /* Dark Titanium frame */
    border-radius: 46px;
    position: relative;
    padding: 11px;
    box-shadow: 0 25px 60px rgba(35, 22, 16, 0.25),
                0 0 0 1px rgba(197, 168, 128, 0.15),
                inset 0 0 3px 2px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.1, 0.88, 0.25, 1);
    animation: floatiPhone 6s ease-in-out infinite;
}

@keyframes floatiPhone {
    0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(-12px) rotateX(4deg) rotateY(2deg); }
}

/* Bezel Reflection Shiny Effect */
.iphone-16::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 46px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%, rgba(255, 255, 255, 0.03) 60%, transparent 100%);
    z-index: 10;
}

/* Hardware Buttons */
.iphone-btn {
    position: absolute;
    width: 3px;
    background-color: #2F2A26;
    border-radius: 2px;
}

.iphone-btn-volume-up {
    top: 140px;
    left: -3px;
    height: 50px;
}

.iphone-btn-volume-down {
    top: 202px;
    left: -3px;
    height: 50px;
}

.iphone-btn-action {
    top: 90px;
    left: -3px;
    height: 32px;
}

.iphone-btn-power {
    top: 155px;
    right: -3px;
    height: 72px;
}

/* Phone Inner Screen Area */
.iphone-screen {
    width: 100%;
    height: 100%;
    background-color: #0b0705;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

/* Dynamic Island */
.iphone-island {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 25px;
    background-color: #000000;
    border-radius: 20px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.iphone-island:hover {
    width: 140px;
    height: 28px;
}

.iphone-island-camera {
    width: 6.5px;
    height: 6.5px;
    border-radius: 50%;
    background-color: #111424;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
}

/* Status Bar */
.iphone-statusbar {
    height: 48px;
    padding: 0 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: var(--font-title);
    z-index: 15;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.iphone-statusbar .status-icons {
    display: flex;
    gap: 5px;
}

/* Screen Slide Showcase */
.iphone-slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.iphone-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

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

/* Home Indicator Bar */
.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    z-index: 20;
    pointer-events: none;
}

/* Decorative Gold Aura behind the phone */
.mockup-aura {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--brand-gold-glow-strong) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
}

/* ==========================================================================
   PREMIUM MARQUEE ROW
   ========================================================================== */
.hero-marquee-section {
    width: 100%;
    background-color: var(--brand-black-deep);
    border-top: 1px solid var(--brand-gold-glow-strong);
    border-bottom: 1px solid var(--brand-gold-glow-strong);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-container {
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeAnimation 25s linear infinite;
    gap: 30px;
}

.marquee-track span {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 16px;
    color: var(--brand-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
}

.marquee-track span::after {
    content: '✦';
    color: var(--brand-gold-bright);
}

@keyframes marqueeAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION 2: ENTENDA O INKBRIDGE
   ========================================================================== */
.entenda {
    background-color: var(--section-bg);
}

.entenda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .entenda-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Video Block Styling */
.video-card {
    background-color: var(--section-bg-card);
    border: 1px solid var(--section-border);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.video-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-gold);
}

.video-wrapper {
    width: 100%;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #0b0705;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play button overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 22, 16, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-fast);
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-icon-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--brand-brown-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    border: none;
}

.play-icon-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transform: translateX(2px);
    transition: var(--transition-fast);
}

.video-play-overlay:hover .play-icon-btn {
    background-color: var(--brand-gold-bright);
    color: var(--brand-brown-dark);
    box-shadow: var(--shadow-gold), 0 0 0 12px var(--brand-gold-glow-strong);
    transform: scale(1.08);
}

/* Custom HTML5 Video Controls styling */
.video-controls {
    position: absolute;
    bottom: -60px; /* Hide by default, slide up on hover */
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(11, 7, 5, 0.9) 0%, rgba(11, 7, 5, 0.5) 70%, transparent 100%);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition-smooth);
    z-index: 10;
}

.video-wrapper:hover .video-controls,
.video-controls.focused {
    bottom: 0;
}

.video-control-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-light);
}

.video-control-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.control-btn {
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.control-btn:hover {
    background-color: rgba(255,255,255,0.15);
    color: var(--brand-gold-bright);
}

.control-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Progress / Timeline slider */
.video-timeline {
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    transition: var(--transition-fast);
}

.video-timeline:hover {
    height: 7px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--brand-gold-bright);
    border-radius: 5px;
    width: 0%;
}

.timeline-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.video-timeline:hover .timeline-handle {
    opacity: 1;
}

.video-time-display {
    font-size: 12px;
    font-family: var(--font-title);
    color: rgba(255, 255, 255, 0.8);
}

/* Volume Slider */
.volume-slider-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.volume-slider {
    width: 60px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-secondary);
    cursor: pointer;
}

/* Text and CTA in video card */
.video-card-meta {
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.video-meta-text h4 {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: var(--section-title-color);
}

.video-meta-text p {
    font-size: 13px;
    color: var(--section-text-muted);
}

/* Right column benefits checklist */
.entenda-text {
    max-width: 540px;
}

.entenda-title {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 700;
    color: var(--section-title-color);
    line-height: 1.2;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.entenda-desc {
    color: var(--section-text-muted);
    font-size: 16px;
    margin-bottom: 36px;
    transition: color 0.4s ease;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.feature-icon-container {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background-color: var(--section-bg-card);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--section-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.feature-item:hover .feature-icon-container {
    background-color: var(--brand-gold);
    color: var(--brand-black-deep);
    border-color: var(--brand-gold);
}

.feature-icon-container svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.feature-text-block h5 {
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 700;
    color: var(--section-title-color);
    margin-bottom: 4px;
    transition: color 0.4s ease;
}

.feature-text-block p {
    font-size: 14px;
    color: var(--section-text-muted);
    line-height: 1.5;
    transition: color 0.4s ease;
}

/* ==========================================================================
   SECTION 3: APP FEATURES CAROUSEL
   ========================================================================== */
.features-carousel-section {
    background-color: var(--section-bg);
    overflow: hidden;
}

.carousel-controls {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--section-bg-card);
    border: 1px solid var(--section-border);
    color: var(--section-title-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-black-deep);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Carousel Inner Track */
.carousel-outer {
    width: 100%;
    overflow: hidden;
    padding: 10px 4px 40px;
    position: relative;
    cursor: grab;
}

.carousel-outer:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.carousel-card {
    flex: 0 0 320px;
    background-color: var(--section-bg-card);
    border: 1px solid var(--section-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    user-select: none;
    -webkit-user-drag: none;
    color: var(--section-text);
}

.carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-gold);
}

.carousel-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background-color: rgba(201, 168, 125, 0.12);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--border-color-dark);
    transition: var(--transition-fast);
}

.carousel-card:hover .carousel-card-icon {
    background-color: var(--brand-gold);
    color: var(--brand-black-deep);
    box-shadow: var(--shadow-gold);
}

.carousel-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.carousel-card h4 {
    font-family: var(--font-title);
    font-size: 19px;
    font-weight: 700;
    color: var(--section-title-color);
    margin-bottom: 12px;
}

.carousel-card p {
    font-size: 14.5px;
    color: var(--section-text-muted);
    line-height: 1.6;
}

/* Pagination Dots */
.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(201, 168, 125, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    width: 24px;
    border-radius: 8px;
    background-color: var(--brand-gold);
}

/* Carousel & Spokesperson Grid Layout */
.grid-carousel-spokesperson {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.carousel-content-left {
    width: 100%;
    min-width: 0;
}

.carousel-image-right {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: stretch;
}

.spokesperson-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--section-border);
}

.spokesperson-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.spokesperson-img-wrapper:hover .spokesperson-img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .grid-carousel-spokesperson {
        grid-template-columns: 1fr;
    }
    
    .carousel-image-right {
        display: none;
    }
}

/* ==========================================================================
   SECTION 4: PROBLEM & SOLUTION NARRATIVE
   ========================================================================== */
.problema {
    background-color: var(--section-bg);
}

.problema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .problema-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.comp-card {
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid var(--section-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.comp-card-pain {
    background-color: var(--section-bg-card);
    border-top: 4px solid var(--accent-red-muted);
}

.comp-card-solution {
    background-color: var(--brand-black-deep);
    color: var(--text-light);
    border-top: 4px solid var(--brand-gold);
    box-shadow: var(--shadow-lg);
}

.comp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.comp-card-pain:hover {
    border-color: var(--accent-red-muted);
}

.comp-card-solution:hover {
    border-color: var(--brand-gold);
}

.comp-header {
    margin-bottom: 32px;
}

.comp-header h3 {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.comp-card-pain .comp-header h3 {
    color: var(--section-title-color);
}

.comp-card-solution .comp-header h3 {
    color: var(--text-light);
}

.comp-header p {
    font-size: 15px;
}

.comp-card-pain .comp-header p {
    color: var(--section-text-muted);
}

.comp-card-solution .comp-header p {
    color: rgba(250, 249, 246, 0.7);
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.comp-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
}

.comp-card-pain .comp-icon {
    background-color: rgba(179, 94, 84, 0.15);
    color: var(--accent-red-muted);
}

.comp-card-solution .comp-icon {
    background-color: rgba(201, 168, 125, 0.15);
    color: var(--brand-gold);
}

.comp-item-text {
    font-size: 15px;
    line-height: 1.5;
}

.comp-card-pain .comp-item-text {
    color: var(--section-text);
}

.comp-card-solution .comp-item-text {
    color: rgba(250, 249, 246, 0.9);
}

.comp-item-text strong {
    color: inherit;
    font-weight: 700;
}

/* ==========================================================================
   SECTION 5: WAITLIST / CONVERSION FORM
   ========================================================================== */
.waitlist-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(197, 168, 128, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(126, 101, 88, 0.05) 0%, transparent 60%);
}

/* Widescreen wrapper adjustments */
.waitlist-section .container {
    max-width: 1440px;
    width: 100%;
}

.waitlist-wrapper {
    background-color: var(--brand-brown-dark);
    border-radius: var(--radius-xl);
    padding: 60px 80px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color-dark);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .waitlist-wrapper {
        padding: 40px 24px;
    }
}

/* Waitlist Design Elements */
.waitlist-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.waitlist-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}

@media (max-width: 992px) {
    .waitlist-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.waitlist-content h2 {
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--text-light);
}

.waitlist-content h2 span {
    color: var(--brand-gold-bright);
}

.waitlist-content p {
    font-size: 16px;
    color: rgba(250, 249, 246, 0.8);
    margin-bottom: 30px;
}

.waitlist-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.waitlist-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
}

.waitlist-benefit-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--brand-gold-bright);
    flex-shrink: 0;
}

/* Waitlist Form Fields & Wizard Steps */
.waitlist-form-container {
    position: relative;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(8px);
    overflow: hidden;
}

@media (max-width: 480px) {
    .waitlist-form {
        padding: 24px 16px;
    }
}

/* Form inputs & selections */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-label {
    font-family: var(--font-title);
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(250, 249, 246, 0.8);
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--brand-gold-bright);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C5A880' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
}

.form-select:focus {
    border-color: var(--brand-gold-bright);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-select option {
    background-color: var(--brand-brown-dark);
    color: var(--text-light);
    padding: 12px;
}

.form-input::placeholder {
    color: rgba(250, 249, 246, 0.4);
}

/* Wizard Steps Styles */
.wizard-step {
    animation: fadeInStep 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Radio Chips Step 1 */
.radio-chip-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.radio-chip {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: rgba(250, 249, 246, 0.8);
    transition: var(--transition-fast);
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.radio-chip input[type="radio"] {
    display: none;
}

.radio-chip:hover {
    border-color: rgba(201, 168, 125, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.radio-chip:has(input[type="radio"]:checked) {
    background-color: var(--brand-gold);
    color: var(--brand-brown-dark);
    border-color: var(--brand-gold);
    box-shadow: 0 0 15px rgba(201, 168, 125, 0.2);
}

/* Options Cards Step 2 to 5 */
.vertical-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.option-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: rgba(250, 249, 246, 0.9);
    transition: var(--transition-fast);
    user-select: none;
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
    accent-color: var(--brand-gold);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.option-card:hover {
    border-color: rgba(201, 168, 125, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.option-card:has(input:checked) {
    border-color: var(--brand-gold);
    background-color: rgba(201, 168, 125, 0.08);
    box-shadow: inset 0 0 0 1px rgba(201, 168, 125, 0.2);
}

/* Navigation controls */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    gap: 16px;
}

.wizard-nav .btn-link {
    background: none;
    border: none;
    color: rgba(250, 249, 246, 0.5);
    cursor: pointer;
    text-decoration: underline;
    font-weight: 500;
    font-size: 14.5px;
    padding: 10px 14px;
    transition: var(--transition-fast);
}

.wizard-nav .btn-link:hover {
    color: var(--text-light);
}

.wizard-nav .btn {
    min-width: 140px;
}

/* Spinner SVG loading */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* Form Errors & Validation States */
.input-error {
    border-color: var(--accent-red-muted) !important;
    box-shadow: 0 0 0 4px rgba(179, 94, 84, 0.2) !important;
}

.error-msg {
    color: var(--accent-red-muted);
    font-size: 12.5px;
    font-weight: 500;
    display: block;
    margin-top: 6px;
    animation: fadeInStep 0.25s ease forwards;
}

/* Success Confirmation Overlay Style */
.waitlist-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--brand-brown-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-gold-bright);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    transition: var(--transition-smooth);
}

.waitlist-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--brand-gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.05);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0px rgba(212, 175, 55, 0.15); }
    50% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
}

.success-icon-wrapper svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.success-title {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.success-text {
    font-size: 15px;
    color: rgba(250, 249, 246, 0.8);
    line-height: 1.5;
    max-width: 320px;
}

/* ==========================================================================
   SECTION 6: ACCORDION FAQ
   ========================================================================== */
.faq {
    background-color: var(--bg-primary);
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--section-bg-card);
    border: 1px solid var(--section-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--brand-gold);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--brand-gold);
    box-shadow: var(--shadow-md);
}

.faq-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-question {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    color: var(--section-title-color);
    transition: var(--transition-fast);
}

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

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--section-text-muted);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-toggle-icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    color: var(--brand-gold);
}

/* Smooth Height animation using CSS Grid templates */
.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-smooth);
}

.faq-item.active .faq-body {
    grid-template-rows: 1fr;
}

.faq-content {
    overflow: hidden;
}

.faq-text {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--section-text-muted);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-text {
    border-top-color: rgba(234, 227, 218, 0.5);
    padding-top: 16px;
}

/* ==========================================================================
   SECTION 7: PREMIUM FOOTER
   ========================================================================== */
.footer {
    background-color: var(--brand-black-deep);
    color: var(--text-light);
    border-top: 1px solid var(--border-color-dark);
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(250, 249, 246, 0.7);
    line-height: 1.5;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(250, 249, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background-color: var(--brand-gold);
    color: var(--brand-black-deep);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-links-col h5 {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    font-size: 14px;
    color: rgba(250, 249, 246, 0.75);
    transition: var(--transition-fast);
}

.footer-link-item:hover {
    color: var(--brand-gold);
    padding-left: 4px;
}

/* Footer Waitlist column */
.footer-cta-col h5 {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 16px;
}

.footer-cta-desc {
    font-size: 13.5px;
    color: rgba(250, 249, 246, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Bottom Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(250, 249, 246, 0.5);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    transition: var(--transition-fast);
}

.footer-bottom-link:hover {
    color: var(--brand-gold-bright);
}

/* Header Language Selector Styles */
.lang-selector:hover #lang-dropdown {
    display: flex !important;
}
.lang-opt:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--brand-gold-bright) !important;
}

/* Country Selector Grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.country-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 14px 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
    outline: none;
}
.country-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 168, 125, 0.4);
}
.country-card.active {
    background-color: rgba(201, 168, 125, 0.12) !important;
    border-color: var(--brand-gold) !important;
    box-shadow: 0 0 15px rgba(201, 168, 125, 0.15);
}
.country-card .flag {
    font-size: 24px;
    line-height: 1;
}
.country-card .country-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(250, 249, 246, 0.85);
}

/* Widescreen Mockup Showcase Gallery */
.widescreen-gallery {
    position: relative;
    height: 380px;
    margin-top: 40px;
    width: 100%;
    overflow: visible;
}
.gallery-card {
    position: absolute;
    width: 180px;
    background: rgba(24, 21, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease, z-index 0.4s ease;
    cursor: pointer;
}
.gallery-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.gallery-card .card-tag {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--brand-gold);
    text-align: center;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card-feed {
    top: 20px;
    left: 0;
    transform: rotate(-6deg);
    z-index: 3;
}
.card-studio {
    top: 60px;
    left: 140px;
    transform: rotate(4deg);
    z-index: 2;
}
.card-login {
    top: 120px;
    left: 280px;
    transform: rotate(-3deg);
    z-index: 1;
}
.gallery-card:hover {
    transform: scale(1.08) translateY(-10px) rotate(0deg);
    z-index: 10;
    border-color: var(--brand-gold);
    box-shadow: 0 30px 60px rgba(201, 168, 125, 0.25);
}
@media (max-width: 991px) {
    .widescreen-gallery {
        display: none;
    }
}

/* ==========================================================================
   SECTION 7: APP DOWNLOAD
   ========================================================================== */

.app-download-section {
    /* Gradient extraído da imagem: preto-marrom nos cantos, halo âmbar dourado ao centro */
    background:
        radial-gradient(ellipse 80% 90% at 62% 52%,
            #3d2800 0%,
            #271a07 28%,
            #160f03 58%,
            #0d0a05 100%
        );
    overflow: hidden;
    position: relative;
}

/* Shimmer dourado sutil por cima — reforça o brilho central */
.app-download-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 62% 52%, rgba(180, 130, 40, 0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.app-download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 580px;
    position: relative;
    z-index: 1;
}

/* --- Left: Content --- */
.app-download-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Feature Badges */
.app-feature-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
    width: 100%;
    max-width: 420px;
}

.app-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    transition: var(--transition-fast);
}

.app-badge-item:hover {
    border-color: rgba(201, 168, 125, 0.25);
    background: rgba(201, 168, 125, 0.05);
}

.app-badge-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.app-badge-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(250, 249, 246, 0.8);
    line-height: 1.2;
}

/* Store Buttons */
.app-store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 13px 22px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
    backdrop-filter: blur(6px);
    min-width: 175px;
}

.app-store-btn:hover {
    background: rgba(201, 168, 125, 0.12);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 125, 0.2);
}

.app-store-btn svg {
    flex-shrink: 0;
    color: var(--brand-gold-bright);
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.app-btn-sub {
    font-size: 10.5px;
    font-weight: 400;
    color: rgba(250, 249, 246, 0.55);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.app-btn-main {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    font-family: var(--font-title);
    letter-spacing: -0.3px;
}

.app-coming-soon {
    font-size: 13px;
    color: rgba(250, 249, 246, 0.45);
    line-height: 1.5;
    max-width: 400px;
}

.app-coming-soon strong {
    color: var(--brand-gold);
}

/* --- Right: Mockup Visual --- */
.app-download-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.app-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.app-glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(201, 168, 125, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.app-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7));
    animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Floating Stat Chips */
.app-stat-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(24, 21, 20, 0.85);
    border: 1px solid rgba(201, 168, 125, 0.2);
    border-radius: 50px;
    padding: 10px 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    animation: floatMockup 6s ease-in-out infinite;
}

.app-stat-chip--top {
    top: 14%;
    left: -10px;
    animation-delay: -2s;
}

.app-stat-chip--bottom {
    bottom: 16%;
    right: -10px;
    animation-delay: -4s;
}

.stat-chip-icon {
    font-size: 20px;
    line-height: 1;
}

.stat-chip-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-gold-bright);
    line-height: 1;
}

.stat-chip-label {
    display: block;
    font-size: 10.5px;
    color: rgba(250, 249, 246, 0.5);
    line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .app-download-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .app-download-content {
        align-items: center;
        order: 2;
    }

    .app-download-visual {
        order: 1;
    }

    .app-feature-badges {
        max-width: 100%;
    }

    .app-store-buttons {
        justify-content: center;
    }

    .app-coming-soon {
        text-align: center;
    }

    .app-stat-chip--top { left: 0; }
    .app-stat-chip--bottom { right: 0; }
}

@media (max-width: 576px) {
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-store-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
}

