/* 
   DESIGN SYSTEM - CANARIO MESA (PREMIUM OVERHAUL)
   Inspired by: Stripe, Linear, 5PI, InnerAI
*/

:root {
    /* Precise Tech Proportions */
    --bg-primary: #000000;
    --bg-secondary: #080808; 
    --surface: #111111;
    --accent: #ccff01; 
    --accent-hover: #b3e600;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    /* Spacing & Radii (Linear/Stripe Standard) */
    --section-padding: 120px 20px;
    --container-width: 1280px;
    --border-radius-pill: 40px;
    --border-radius-card: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode Overrides */
body.light-mode {
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --surface: #f1f1f1;
    --text-main: #000000;
    --text-muted: rgba(0, 0, 0, 0.6);
    --border-subtle: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- UTILITIES --- */
.container, .container-md {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 40px; /* Standard lateral padding for alignment */
}

.container.narrow { max-width: 800px; }

.flex { display: flex; }
.grid { display: grid; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.center { align-items: center; justify-content: center; text-align: center; }

.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.small { font-size: 0.8rem; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.display-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1D1D1F;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px 30px;
    }
    .display-title,
    .testimonials-title {
        font-size: 30px !important;
        font-weight: 400 !important;
    }
}

/* --- RESPONSIVE UTILITIES --- */
.desktop-only { display: block !important; }
.mobile-only { display: none !important; }

@media (max-width: 992px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
}

.hamburger {
    display: none !important;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .hamburger { display: flex !important; }
}

/* --- BUTTONS (Apple/Linear Style) --- */
.btn {
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: none;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    border-radius: var(--border-radius-card);
    padding: 16px 42px; /* Standardized padding */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 255, 1, 0.4);
}

.btn-arrow {
    margin-left: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px 10px 10px; /* Play icon on left needs less padding */
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.notice-icon-svg {
    width: 18px;
    height: 18px;
    filter: invert(1) opacity(0.7);
    transition: var(--transition);
}

.platform-notice:hover .notice-icon-svg {
    filter: invert(1) opacity(1);
    transform: scale(1.1);
}


.play-icon-wrapper {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-icon-wrapper svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
    margin-left: 2px; /* Center play icon visually */
}

.btn-play:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-play:hover .play-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border-subtle);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100% !important;
    display: flex !important;
    justify-content: center;
}

.btn-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.7;
    transition: var(--transition);
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
}

.btn-link:hover {
    opacity: 1;
    border-bottom-color: var(--accent);
}

/* ########################################## */
/* # HEADER / NAVBAR - [DO NOT EDIT MANUALLY] # */
/* ########################################## */
.navbar {
    height: 68px; /* Fixed height for consistency */
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
    padding: 0; /* Removing fixed padding, using container instead */
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-width); /* Standardized with hero */
    margin: 0 auto;
    padding: 0 40px; /* Matching hero padding */
}

.logo img {
    height: 16px;
    display: block;
}

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

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0; width: 100%; height: 1.5px;
    background: #ccff01;
    border-radius: 2px;
}

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

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.lang-btn .flag-icon {
    width: 20px;
    border-radius: 2px;
}

.lang-btn .arrow-icon {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}

.lang-selector:hover .lang-dropdown {
    display: flex;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.lang-dropdown a img {
    width: 20px;
    border-radius: 2px;
}

.mobile-menu-footer {
    display: none;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .hamburger {
        display: flex !important;
    }

    .nav-right-group {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        z-index: 1000;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 20px;
    }

    .nav-right-group.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
        display: flex !important; /* Force visibility */
    }

    .nav-links a {
        font-size: 20px;
        opacity: 0.9;
        color: var(--text-main) !important; /* Force color */
        display: block;
    }



    .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: center; /* Center buttons horizontally */
        gap: 12px;
        display: flex !important; /* Force visibility */
        margin-top: 20px; /* Added 20px to the 20px gap of parent = 40px */
    }

    /* Force both buttons to span full width identically */
    .nav-actions .btn-nav-gradient,
    .nav-actions .btn-nav-outline {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-footer.mobile-only {
        display: flex !important; 
        flex-direction: column; /* Stack vertically */
        align-items: flex-start; /* Align left */
        justify-content: flex-start;
        margin-top: 20px !important; /* Override auto and add to parent gap for 40px total */
        width: 100%;
        padding-bottom: 24px;
        gap: 24px; /* Gap between theme and languages */
        .hero-traders {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 16px;
        }
        .trader-avatars {
            display: flex;
            margin-right: 8px;
        }
        .avatar-icon {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: -8px;
            border: 2px solid var(--bg-primary);
            color: var(--text-muted);
        }
        .avatar-icon svg { width: 16px; height: 16px; }
        .avatar-plus {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: -8px;
            border: 2px solid var(--bg-primary);
            font-size: 12px;
            color: var(--text-main);
        }
        p { font-size: 13px; color: var(--text-muted); }
    }

    .mobile-langs {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-langs a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        text-decoration: none;
        color: var(--text-muted);
    }

    .mobile-langs a.active {
        color: var(--text-main);
    }

    .mobile-langs a img {
        width: 16px;
        border-radius: 2px;
    }

    .mobile-theme {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-muted);
        font-size: 13px;
        height: 36px; /* Match button height for perfect alignment */
    }

    .mobile-theme .theme-toggle-btn {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-subtle);
        width: 36px;
        height: 36px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .light-mode .mobile-theme .theme-toggle-btn {
        background: rgba(0, 0, 0, 0.05);
    }
}

/* General Icons */

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    opacity: 0.6;
    transition: var(--transition);
}

.icon-btn:hover {
    opacity: 1;
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 5px; /* Tighter gap */
    color: var(--text-main);
    cursor: pointer;
    font-size: 0.7rem;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.flag-icon {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-btn .arrow-icon {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0; /* Align to right */
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 6px;
    min-width: 100px; /* Tighter */
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 100;
}

.lang-selector:hover .lang-dropdown {
    display: flex;
}

.lang-dropdown a {
    padding: 10px 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    transition: var(--transition);
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.lang-dropdown a img {
    width: 16px;
    border-radius: 2px;
}

/* Button Refinements (Inner AI Style) */
.btn-nav {
    padding: 10px 24px; /* More substantial padding */
    border-radius: 40px; /* Pill */
    font-size: 14px; /* Inner AI Standard */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-nav-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    background: transparent;
}

.btn-nav-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.btn-nav-gradient {
    background: transparent;
    color: var(--accent);
    border: none; /* Removed solid border */
    padding: 8px 22px;
    box-shadow: none;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 700;
}

.btn-nav-gradient:hover {
    background: linear-gradient(135deg, #ccff01 0%, #e2ff66 50%, #f1ff9f 100%);
    border-color: transparent;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(204, 255, 1, 0.3);
    color: #000; /* Black text for neon readability */
}

.btn-nav-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 1.5px; /* Medium 1.5px outline */
    background: linear-gradient(135deg, #ccff01, #f1ff9f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.btn-nav-gradient:hover::after {
    opacity: 0;
}

/* ========================================== */
/* = HERO SECTION - [WORK ZONE]              = */
/* ========================================== */
.hero {
    position: relative;
    padding: 100px 0 10px; /* Even tighter bottom margin */
    background: linear-gradient(135deg, #00161e 0%, #00161e 50%, #000000 100%), url('identidade visual/bg.png') no-repeat center center !important;
    background-size: cover !important;
    background-blend-mode: overlay !important; /* More vibrant than multiply */
    overflow: hidden; 
}

/* Tech Grid Removed for Organic Feel */

/* Decorative glows removed to eliminate purple tints */

/* Hero noise removed to eliminate haze */

.hero-container {
    position: relative;
    z-index: 2;
}

/* Desktop Locked Layout - min-width 1024px */
@media (min-width: 1024px) {
    .hero-split {
        display: flex;
        align-items: flex-end; 
        gap: 40px;
    }

    .hero-content {
        flex: 1;
        text-align: left;
        align-self: flex-start;
        padding-top: 40px;
    }

    .hero-visual {
        flex: 1.2;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        position: relative;
        z-index: 2;
    }

    .hero-main-image {
        width: 130%; 
        max-width: none;
        height: auto;
        transform: translateX(25%) translateY(10%);
        transform-origin: bottom right;
        z-index: 1;
    }

    /* Tighter positioning around the traders - Orbit feel */
    .badge-1 { top: 30%; left: -12%; } 
    .badge-2 { top: 45%; left: -8%; }
    .badge-3 { top: 45%; right: -15%; } 
    .badge-4 { bottom: 25%; right: 5%; }
}

/* --- Stat Badges (Glassmorphism) --- */
.stat-badge {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}

.stat-badge-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    animation: floatingBadge 5s ease-in-out infinite;
}

.stat-number {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.1;
}

.stat-text {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

@keyframes floatingBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); } /* Shortened for subtle orbit feel */
}

/* Shared badge styles are global, positions were locked above in media query */

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(204, 255, 1, 0.05);
    color: var(--accent);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    border: 1px solid rgba(204, 255, 1, 0.15);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.8rem;
    font-weight: 400; /* Standardized weight */
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.04em; /* Tighter for futuristic look */
    color: #fff;
    text-transform: none;
}

.hero-title .text-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #fff;
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    align-items: center; /* Aligned horizontally */
    gap: 32px;
    margin-bottom: 24px; /* Reduced gap to bring counter closer */
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    padding: 10px 10px 10px 24px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(204, 255, 1, 0.3);
}

.btn-icon {
    width: 44px;
    height: 44px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon svg {
    transform: translateX(3px);
}

.hero-traders {
    display: flex;
    align-items: center;
    gap: 12px; /* Tighter gap */
}

.trader-avatars {
    display: flex;
    align-items: center;
}

.avatar-icon, 
.trader-avatars .avatar-plus {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.avatar-icon svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.avatar-icon.icon-1 { background: #1a1c20; }
.avatar-icon.icon-2 { background: #252830; }
.avatar-icon.icon-3 { background: #2c3038; }

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

.trader-avatars .avatar-plus {
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-color: #000;
}

.hero-traders p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 1023px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-top: 0;
    }

    .hero-badge {
        margin-bottom: 12px;
    }

    /* Tablet Sizes (768px - 1023px) */
    .hero-title {
        font-size: 48px; 
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 20px;
        margin: 0 auto 32px;
        max-width: 80%;
    }

    /* Mobile Sizes (Up to 767px) */
    @media (max-width: 767px) {
        .hero-title {
            font-size: 30px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 15px;
            max-width: 95%;
        }
    }

    .hero-actions {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }

    .hero-main-image {
        width: 110%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: -40px;
    }

    .stat-badge {
        display: none;
    }
}
/* ========================================== */
/* = NUMEROS SECTION (5PI + GRADIENT BORDER)  = */
/* ========================================== */
.numeros-section {
    padding: 120px 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

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

.numeros-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.macbook-gif {
    position: relative;
    width: 100%;
    max-width: 650px;
    z-index: 2;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.15));
}

.numeros-content {
    padding-left: 20px;
}

.numeros-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #1D1D1F;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.numeros-title b {
    font-weight: 700;
    color: #000;
}

.numeros-row {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    width: fit-content;
}

.numero-card {
    background: #FFFFFF;
    padding: 10px 14px;
    border-radius: 8px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.numero-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.numero-card .num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.text-blue {
    color: #0071e3;
}

.numero-card .label {
    font-size: 11px;
    color: #424245;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

/* Gradient Border Effect with Animation */
.numero-card.gradient-border::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px; /* Matching card border radius */
    padding: 1.5px; 
    background: linear-gradient(90deg, #0071e3, #5ac8fa, #ff2d55, #0071e3);
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: rotateBorder 4s linear infinite;
}

.br-tablet { display: none; }
.br-desktop { display: inline; }

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .numeros-section { padding: 80px 0; }
    .numeros-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    .macbook-gif {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
        display: block;
        transform: none;
    }
    .numeros-title { font-size: 48px !important; }
    .br-desktop { display: none; }
    .br-tablet { display: inline; }
    
    .numeros-row { 
        flex-direction: row; 
        width: 100%;
        gap: 12px;
        flex-wrap: wrap;
    }
    .numero-card {
        flex: 1;
        min-width: 200px;
    }
    .numeros-content { padding-left: 0; }
}

/* Mobile (Up to 767px) */
@media (max-width: 767px) {
    .numeros-grid {
        gap: 30px;
    }
    .macbook-gif {
        width: 100% !important;
        max-width: 500px !important;
        transform: none !important;
        margin: 0 auto !important;
    }
    .numeros-title { font-size: 30px !important; }
    .br-desktop { display: inline !important; }
    .br-tablet { display: none !important; }
    
    .numeros-row { 
        flex-direction: column !important; 
        width: 100% !important;
    }
    .numero-card {
        width: 100% !important;
        min-width: 0 !important;
    }
}


/* --- SECTIONS --- */
.section { padding: var(--section-padding); }
.section-secondary { background-color: var(--bg-secondary); }
.section-gradient { background: linear-gradient(to bottom, var(--bg-primary), #0c0c0c); }

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 64px;
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.display-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* --- CARDS & LAYOUTS --- */
.card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative; /* CRITICAL: Prevent absolute children from floating out */
    overflow: hidden;
}

.card .badge-recommended {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.card.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.card-step .step-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    opacity: 0.2;
}

.card-step.featured { border-color: var(--accent); }

.split-layout { display: flex; gap: 64px; align-items: center; flex-wrap: wrap; }
.split-content { flex: 1; min-width: 300px; }
.split-visual { flex: 1; min-width: 300px; }

.career-step {
    border-left: 2px solid var(--accent);
    padding-left: 24px;
    margin-bottom: 32px;
}

.career-step.muted { opacity: 0.6; }
.career-step.very-muted { opacity: 0.3; }

/* --- BONUS ROW (INTEGRATED) --- */
.bonus-row-wrapper {
    margin: 0 auto 30px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bonus-badge {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--accent);
    background: rgba(204, 255, 1, 0.05);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.15em;
    border: 1px solid rgba(204, 255, 1, 0.1);
}

.bonus-row {
    display: flex;
    gap: 28px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 32px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    align-items: center;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-check {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.bonus-check svg {
    width: 12px;
    height: 12px;
}

.bonus-check.neon {
    color: var(--accent);
    filter: drop-shadow(0 0 5px var(--accent));
}

.bonus-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.bonus-item.highlight .bonus-text {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 992px) {
    .bonus-row {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        border-radius: 20px;
        align-items: flex-start;
    }
}

/* --- PRICING SECTION --- */
#planos {
    background: linear-gradient(180deg, #060606 0%, #00161e 100%);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

#planos .container {
    max-width: 1800px; /* Ultra-wide for high-fidelity comparison */
    width: 95%;
}

#planos::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(204, 255, 1, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    min-height: 700px; /* Prevents layout jump on tab switch */
}

@media (max-width: 1700px) {
    .pricing-grid {
        flex-wrap: wrap;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px 24px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
    max-width: 400px; /* Reduced to fit 4 in a row */
    flex: 0 1 400px;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0071e3 0%, #5856d6 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    width: 100%;
}

.plan-name {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    color: white;
    text-transform: uppercase;
}

.asset-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Widget Styles */
.widget-container {
    margin-bottom: 24px;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.duration-selector {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333333;
    padding: 12px 16px;
    border-radius: 12px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 48px; /* Fixed height to prevent jump */
    line-height: 24px;
    backface-visibility: hidden;
}

.duration-selector option {
    background: #FFFFFF;
    color: #333333;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    pointer-events: none;
    opacity: 0.8;
    color: #333333;
}

.restart-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
}

.static-days {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
}

/* Stats Styles */
.plan-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.stat-value {
    font-weight: 400; /* Thinned as requested */
    color: #fff;
}

.stat-value.badge-none {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
}

/* Pricing Footer Styles */
.pricing-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center; /* Centralized as requested */
}

.price-strikethrough {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.offer-row {
    display: flex;
    align-items: center;
    justify-content: center; /* Centered as requested */
    gap: 12px;
    margin-bottom: 12px;
}

.offer-price {
    font-size: 3.5rem; /* Massive emphasis on 12x price */
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.off-badge {
    background: rgba(52, 199, 89, 0.15);
    color: #34c759;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-left: auto;
}

.installment-text {
    font-size: 1.1rem; /* Larger installment prefix */
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.installment-val {
    color: #fff;
    font-weight: 800;
}

.pix-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centered as requested */
    gap: 8px;
}

.btn-secondary-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 16px; /* Matched padding with primary */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 12px;
    transition: var(--transition);
    width: 100%;
    cursor: pointer;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.tabs-wrapper {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.tabs-header {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 100px; /* Pill style */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: fit-content;
    max-width: 100%;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 24px; /* Flatter */
    border-radius: 100px; /* Pill style */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 150px; /* Smaller */
    position: relative;
    color: rgba(255, 255, 255, 0.4);
}

.tab-btn .label {
    font-size: 0.55rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.5;
}

.tab-btn .title {
    font-size: 0.95rem; /* Slightly larger as requested */
    font-weight: 600;
}

/* Active State - Subtle and Pill-like */
.tab-btn.active {
    background: rgba(255, 255, 255, 0.08); /* Subtle dark highlight instead of white */
    color: #FFFFFF;
}

.tab-btn.active .label {
    opacity: 1;
    color: var(--accent); /* Using accent color for the active label */
}

.tab-btn.active .title {
    font-weight: 700;
}

/* Interconnected Gradient Outline for Active - ANIMATED */
.tab-btn.active::before {
    content: '';
    position: absolute;
    inset: -1px;
    padding: 1.5px;
    border-radius: 100px;
    background: linear-gradient(90deg, #0071e3, #5ac8fa, #ff2d55, #0071e3);
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: rotateBorder 4s linear infinite;
}

.tab-description {
    text-align: center;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.05rem;
    line-height: 1.5;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    padding: 0 20px;
}

.tab-description.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

/* --- PLATFORM NOTICE --- */
.platform-notice-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.platform-notice {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 800px;
    backdrop-filter: blur(10px);
}

.notice-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-family: serif;
    font-style: italic;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.platform-notice p, .notice-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.5;
}

.notice-text p strong {
    color: rgba(255, 255, 255, 0.8);
}

.notice-text p:first-child {
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .platform-notice {
        border-radius: 20px;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 18px 24px;
        gap: 16px;
        margin: 0 20px;
        width: fit-content;
    }
    
    .notice-text p {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .notice-icon {
        margin-top: 3px; /* Align with first line of text */
    }
}

/* --- FOOTER --- */
.footer {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #00161e 0%, #00161e 50%, #000000 100%), url('identidade visual/bg.png') no-repeat center center;
    background-size: cover;
    background-blend-mode: overlay;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

/* Subtle glow to match hero vibe */
.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(204, 255, 1, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 80%, rgba(204, 255, 1, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 18px; /* Standard premium height */
    margin-bottom: 24px;
    opacity: 1;
}

.footer-contact-info p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-whatsapp {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-whatsapp:hover {
    color: var(--accent);
}

.footer-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-grid a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-grid a:hover {
    color: var(--text-main);
}

.social-grid {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: var(--text-main);
    opacity: 0.7;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-2px);
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-legal p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.6;
}

.footer-meta-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer-meta-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-meta-links a:hover {
    color: var(--text-main);
}

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

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand, .footer-nav, .footer-social {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-grid {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-meta-links {
        text-align: center;
    }
}

/* --- JORNADA TIMELINE (APPLE/5PI STYLE) --- */
.section-jornada {
    padding: 120px 20px;
    background: radial-gradient(circle at 10% 20%, rgba(0, 113, 227, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(88, 86, 214, 0.05) 0%, transparent 40%),
                #F5F5F7;
    position: relative;
    overflow: hidden;
}

.jornada-header {
    text-align: center;
        margin-bottom: 40px;
}

.section-title-light {
    font-size: 48px; /* Standard Desktop Size */
    font-weight: 400; /* Standardized weight */
    color: #1D1D1F;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle-light {
    font-size: 20px; /* Standard Desktop Size */
    color: #424245;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.5;
}

.timeline-container {
    position: relative;
    max-width: 1200px; /* Wider outer container */
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    overflow: visible; /* Allow balloon to float if needed, but section hides it */
}

.timeline-line {
    position: absolute;
    left: 20px; /* Moved further left to be beside numbers */
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Animated via JS */
    background: linear-gradient(to bottom, #0071e3, #5856d6, #ff2d55);
    box-shadow: 0 0 20px rgba(0, 113, 227, 0.3);
    transition: height 0.1s linear;
    z-index: 1; /* Stay behind numbers */
}

.timeline-steps.compact-layout {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
    max-width: 850px; /* Line + Number + Card + Breathing room */
    position: relative;
    margin: 10px auto 0;
}

.timeline-item {
    position: relative;
    width: 100%;
    padding-left: 170px; /* Space for line (20) + gap (20) + number (110) + small gap (20) */
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* Step Number Styling (Neon Idea from Print) */
.step-number-wrapper {
    position: absolute;
    left: 40px; /* 20px gap from the line at 20px */
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: transparent; /* No longer needs to hide the line */
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 300; /* Thinner as requested */
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px currentColor; /* Thinner stroke */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    user-select: none;
    letter-spacing: -0.05em;
}

.timeline-item.active .step-number {
    -webkit-text-stroke: 2px currentColor;
    transform: scale(1.1);
}

.neon-orange { color: #0071e3; filter: drop-shadow(0 0 8px rgba(0, 113, 227, 0.2)); } /* Apple Blue */
.neon-purple { color: #5856d6; filter: drop-shadow(0 0 8px rgba(88, 86, 214, 0.2)); } /* Apple Indigo */
.neon-blue   { color: #ff2d55; filter: drop-shadow(0 0 8px rgba(255, 45, 85, 0.2)); } /* Apple Pink */
.neon-yellow { color: #af52de; filter: drop-shadow(0 0 8px rgba(175, 82, 222, 0.2)); } /* Apple Purple */
.neon-green  { color: #ff9500; filter: drop-shadow(0 0 8px rgba(255, 149, 0, 0.2)); } /* Apple Orange */

.timeline-card {
    background: #FFFFFF;
    padding: 32px 40px;
    border-radius: 28px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 680px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline-card:hover {
    transform: translateX(12px) translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

.timeline-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1D1D1F;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.timeline-card p {
    font-size: 1rem;
    color: #424245;
    line-height: 1.6;
    font-weight: 400;
}

/* Floating Balloon (Profit One) */
.floating-balloon {
    position: absolute;
    bottom: -35px;
    left: 10px; /* Moved further left to prevent overflow */
    z-index: 20;
    animation: floatBalloon 3s ease-in-out infinite;
    cursor: default;
}

.balloon-content {
    background: var(--accent);
    color: #000;
    padding: 8px 16px; /* Reduced padding */
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.75rem; /* Reduced font-size */
    box-shadow: 0 8px 20px rgba(204, 255, 1, 0.2);
    white-space: nowrap;
}

.balloon-content svg {
    width: 16px;
    height: 16px;
}

.balloon-tail {
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--accent);
}

@keyframes floatBalloon {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-5px) rotate(1deg); } /* Much subtler movement */
}

/* Responsive Adjustments for Timeline */
@media (max-width: 1024px) {
    .timeline-container {
        max-width: 95%;
        padding: 60px 20px;
    }
    
    .timeline-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-jornada {
        padding: 40px 30px;
    }

    .timeline-container {
        padding: 40px 15px;
        justify-content: flex-start; /* Align to left on mobile for more space */
    }

    .timeline-line {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 100px; /* Line (10) + Gap (15) + Number (70) + Gap (5) */
        gap: 15px;
    }

    .step-number-wrapper {
        width: 70px;
        height: 70px;
        left: 25px; /* 15px gap from line at 10px */
    }

    .step-number {
        font-size: 2.2rem;
    }
    
    .timeline-card {
        padding: 20px 24px;
        border-radius: 20px;
    }
    
    .timeline-card h3 {
        font-size: 1.1rem;
    }

    .timeline-card p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 30px; /* Increased padding as requested */
    }

    .section-title-light,
    .testimonials-title {
        font-size: 30px !important;
        font-weight: 400 !important;
        margin-bottom: 12px !important;
        max-width: 100% !important;
    }

    .section-subtitle-light,
    .testimonials-subtitle,
    .faq-header p {
        font-size: 15px !important;
        padding: 0 !important;
        line-height: 1.5 !important;
        margin-bottom: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .floating-balloon {
        bottom: -45px; /* Moved down to avoid overlapping card text */
        left: 0;
        transform: scale(0.6);
        transform-origin: left top;
    }

    .balloon-content {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        padding-left: 60px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .timeline-line {
        left: 20px;
    }
}

/* Ensure section visibility in light mode if body doesn't switch correctly */
.light-mode .section-jornada,
.light-mode .section-why {
    background-color: #F5F5F7;
}

.light-mode .section-testimonials {
    background-color: #060606; /* Testimonials stay dark for premium feel even in light mode if needed */
}

.light-mode .timeline-card,
.light-mode .bento-card {
    background-color: #FFFFFF;
}

/* --- WHY CANÁRIO SECTION (PROPORTIONAL BENTO GRID) --- */
.section-why {
    padding: 120px 20px;
    background-color: #FFFFFF;
    position: relative;
}

.why-header {
    text-align: center;
    margin-bottom: 80px; /* Matching bottom padding for symmetry */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hub-highlight {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #0071e3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    background: rgba(0, 113, 227, 0.05);
    padding: 10px 24px;
    border-radius: 100px;
}

.section-subtitle-light {
    font-size: 20px;
    color: #86868b;
    line-height: 1.4;
    margin-bottom: 0; /* Tightest distance to grid */
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px; /* Fixed row height for proportionality */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    border-radius: 28px;
    padding: 35px; /* Reduced to 35px to give more space for text inside 1x1 */
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 1;
    height: 100%;
    box-sizing: border-box;
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start; /* Consistent start point */
}

.card-header-visual {
    height: 60px; /* Fixed height for all top visuals */
    display: flex;
    align-items: flex-start; /* Align badges/icons to top for better sync */
    margin-bottom: 10px;
}

/* Gradient Border Effect with Animation */
.gradient-border::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1.8px; 
    background: linear-gradient(90deg, #0071e3, #5ac8fa, #ff2d55, #0071e3);
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 1;
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    0% { background-position: 0% 0%; }
    100% { background-position: 150% 0%; }
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Spanning Rules */
.card-1x1 { grid-column: span 1; grid-row: span 1; }
.card-2x1 { grid-column: span 2; grid-row: span 1; }
.card-1x2 { grid-column: span 1; grid-row: span 2; }
.card-3x1 { grid-column: span 3; grid-row: span 1; }

/* Color Palette Overhaul */
.card-black { background-color: #111111; color: #FFFFFF; border: none; }
.card-graphite { background-color: #1A1A1A; color: #FFFFFF; border: none; }
.card-white { background-color: #FFFFFF; color: #1D1D1F; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); }
.card-light { background-color: #F5F5F7; color: #1D1D1F; border: none; }
.card-blue-gradient { 
    background: linear-gradient(135deg, #0071e3 0%, #5856d6 100%); 
    color: #FFFFFF; 
    border: none;
}

.card-graphite h3, .card-blue-gradient h3 { color: #FFFFFF; }
.card-graphite p, .card-blue-gradient p { color: rgba(255, 255, 255, 0.7); }
.text-green { color: #34c759; margin-right: 5px; }

/* Unified Bento Typography */
.bento-card h3, .card-title {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.2 !important;
    min-height: 2.4em; /* Exactly 2 lines height to sync subtitles */
    display: flex;
    align-items: center;
}

.bento-card p, .card-p {
    font-size: 0.92rem !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    margin-top: 10px !important;
    max-width: 100% !important;
    opacity: 0.8 !important;
}

/* Unified Badge System */
.unified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: fit-content;
    white-space: nowrap;
}

.badge-green { background: rgba(52, 199, 89, 0.1); color: #34c759; }
.badge-blue { background: #0071e3; color: #FFFFFF; }
.badge-white { background: rgba(255, 255, 255, 0.2); color: #FFFFFF; }
.badge-outline { border: 1px solid rgba(255, 59, 48, 0.3); background: rgba(255, 59, 48, 0.05); color: #ff3b30; }

.visual-huge-text {
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-size: 11rem;
    font-weight: 900;
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
}

.mini-icon-minimal {
    width: 40px;
    height: 40px;
    color: #1D1D1F;
    margin-bottom: 24px;
}

.card-graphite .mini-icon-minimal { color: #FFFFFF; }

.stack-list-modern {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stack-item {
    font-size: 13px; /* Standardized to 13px */
    font-weight: 600;
    padding-left: 20px;
    position: relative;
    color: #424245;
}

.stack-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #0071e3;
    border-radius: 50%;
}

.live-badge-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 4px 12px;
    border-radius: 100px;
    width: fit-content;
}

.badge-outline {
    border: 1px solid rgba(255, 59, 48, 0.3);
    background: rgba(255, 59, 48, 0.05);
}

.live-badge-modern span { 
    font-size: 0.7rem; 
    font-weight: 900; 
    color: #ff3b30; 
    letter-spacing: 0.08em;
}

.blink-dot {
    width: 10px;
    height: 10px;
    background: #ff3b30;
    border-radius: 50%;
    animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.modern-step-visual {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: auto;
    height: 60px;
}

.m-step {
    flex: 1;
    background: #F5F5F7;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.m-step.s1 { height: 25%; background: rgba(0, 113, 227, 0.1); }
.m-step.s2 { height: 50%; background: rgba(0, 113, 227, 0.2); }
.m-step.s3 { height: 75%; background: rgba(0, 113, 227, 0.4); }
.m-step.s4 { height: 100%; background: #0071e3; }

.visual-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 80px;
    font-size: 0.65rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

/* Mobile Adaptations */
@media (max-width: 992px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .card-1x2 { grid-row: span 1; }
}

@media (max-width: 768px) {
    .section-why {
        padding: 40px 30px;
    }

    .hub-highlight {
        font-size: 11px !important;
        padding: 8px 16px !important;
        margin-bottom: 8px !important;
    }

    .why-header {
        margin-bottom: 60px; /* Matching bottom padding for symmetry */
    }

    .bento-grid { 
        grid-template-columns: 1fr; 
        grid-auto-rows: auto;
        gap: 16px;
        padding: 0 15px; /* Specific padding for bento section */
    }

    .card-2x1, .card-1x2, .card-3x1, .card-1x1 { 
        grid-column: span 1 !important; 
        grid-row: span 1 !important; 
    }

    .bento-card { 
        padding: 24px; 
        min-height: auto;
    }

    .bento-card h3, .card-title {
        font-size: 1.2rem !important;
        min-height: auto !important;
        margin-bottom: 8px !important;
    }

    .visual-huge-text {
        font-size: 6rem;
        bottom: -15px;
    }
}
/* --- TESTIMONIALS SECTION (INNER AI STYLE) --- */
/* --- REBUILT TESTIMONIALS (APPLE SYSTEM LIGHT) --- */
.section-testimonials {
    padding: 120px 20px;
    background-color: #F5F5F7;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .section-testimonials {
        padding: 40px 30px;
    }
}


.testimonials-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-content {
    flex: 0.8;
    text-align: left;
}

.cta-desktop-only {
    display: block;
    margin-top: 32px; /* Close to text */
}

.cta-mobile-only {
    display: none; /* Hidden on desktop */
}

.testimonials-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #1D1D1F;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 20px;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 40px;
}

.testimonials-grid {
    flex: 1.5;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.video-card {
    flex: 1;
    max-width: 320px;
    aspect-ratio: 9/16; /* Desktop Portrait */
    background-color: #FFFFFF;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Adjusting photo to focus on faces in shorter cards */
    transition: transform 0.6s ease;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Card Overlay - Subtle Gradient at bottom */
.video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 1;
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-card:hover .play-btn-circle {
    background: #FFFFFF;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn-circle svg {
    width: 24px;
    height: 24px;
    color: #0071e3;
    margin-left: 4px;
}

.video-card-meta {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    text-align: left;
    z-index: 4;
}

.meta-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.meta-quote {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.testimonials-footer {
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .testimonials-split {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .testimonials-content {
        width: 100%;
        text-align: center;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
    }

    .video-card {
        max-width: 100%;
        aspect-ratio: 4/5; /* Taller on mobile to avoid text overlap */
    }

    .play-btn-circle {
        width: 44px !important;
        height: 44px !important;
    }
    
    .play-btn-circle svg {
        width: 20px !important;
        height: 20px !important;
        margin-left: 3px !important;
    }
}
/* --- MOBILE RESPONSIVENESS (PRICING) --- */
@media (max-width: 768px) {
    .section-bonus {
        padding: 60px 20px 20px;
    }

    .bonus-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 24px;
        border-radius: 24px;
        width: 100%;
    }

    .bonus-item {
        width: 100%;
        justify-content: center;
    }

    .pricing-header-wrapper h2.section-title-light {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .pricing-header-wrapper p.section-subtitle-light {
        font-size: 15px !important;
    }

    .tabs-header {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding: 8px 16px 16px; /* Added bottom padding for scrollbar */
        width: 100vw;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    }

    /* Modern Styled Scrollbar for Mobile */
    .tabs-header::-webkit-scrollbar {
        display: block;
        height: 6px; /* Increased thickness */
    }

    .tabs-header::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 100px; /* Force pill shape */
        margin: 0 40px; /* Prevent touching the edges */
    }

    .tabs-header::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3); /* Slightly more visible */
        border-radius: 100px; /* Force pill shape */
        border: 1px solid rgba(255, 255, 255, 0.1); /* Sutil border for depth */
    }

    .tab-btn {
        min-width: 160px;
        flex-shrink: 0;
    }

    .tab-description {
        font-size: 0.95rem;
        min-height: 4em;
        padding: 0 10px;
    }

}

/* --- FAQ SECTION (APPLE SYSTEM VERTICAL) --- */
.section-faq {
    padding: 120px 20px;
    background-color: #FFFFFF !important; /* Force white background */
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    color: #1D1D1F; /* Force dark text */
}

.faq-header {
    margin-bottom: 24px !important; /* Heavily reduced to 24px */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-header .section-title-light {
    margin-bottom: 8px !important;
    color: #1D1D1F !important;
}

.faq-header p {
    font-size: 20px;
    line-height: 1.5;
    max-width: 500px;
    color: #86868b;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .section-faq {
        padding: 40px 30px !important;
        background-color: #FFFFFF !important;
    }
    
    .faq-header {
        margin-bottom: 20px !important;
    }
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    cursor: pointer;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 24px !important; /* Slightly more rounded Apple style */
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    background: #fbfbfd;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1D1D1F;
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86868b;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #1D1D1F;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 32px 32px; 
}

.faq-answer p {
    color: #424245; /* Slightly lighter than title */
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .faq-info {
        text-align: center;
    }
    
    .faq-info p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer-inner {
        padding: 0 20px 20px 68px;
    }
    
    .question-left {
        gap: 16px;
    }
    
    .faq-num {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}

/* --- NEW PREMIUM FOOTER --- */
.footer {
    padding: 100px 0 40px;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand {
    flex: 1.2;
}

.footer-logo {
    height: 40px;
    margin-bottom: 24px;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 360px;
}

.footer-nav {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.contact-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 1rem;
}

.footer-legal-section {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-risk-banner {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-risk-banner p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-risk-banner strong {
    color: var(--accent);
}

.legal-accordions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-accordion-item {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-accordion-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.info-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.accordion-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    transition: transform 0.4s ease;
}

.footer-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.footer-accordion-item.active .footer-accordion-content {
    max-height: 800px;
    opacity: 1;
}

.content-padding {
    padding-bottom: 30px;
}

.footer-accordion-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-nav {
        justify-content: flex-start;
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .section-faq {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer-inner {
        padding: 0 20px 20px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .testimonials-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
    }
    
    .footer-legal-accordion {
        margin-top: 40px;
    }
    
    .horizontal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .horizontal-card {
        aspect-ratio: 16/7;
    }
}

/* --- HELP CTA SECTION --- */
.section-help-cta {
    background-color: var(--accent);
    padding: 60px 0;
    margin-top: -1px; /* Avoid gap */
}

.help-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.help-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #000;
    margin: 0;
    letter-spacing: -0.02em;
}

.btn-white-pill {
    background-color: #fff !important;
    color: #000 !important;
    padding: 16px 32px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-white-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8 !important;
}

.btn-white-pill svg {
    color: #000;
}

/* --- PLATFORM NOTICE & ICONS --- */
.notice-icon-svg, .footer-info-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
    transition: var(--transition);
    vertical-align: middle;
    display: inline-block;
}

.platform-notice:hover .notice-icon-svg,
.footer-accordion-item:hover .footer-info-icon {
    transform: scale(1.1);
}

/* --- MAIN FOOTER --- */
.main-footer {
    background-color: var(--bg-primary);
    padding: 80px 0 60px;
    border-top: 1px solid var(--border-subtle);
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    width: 100%;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: var(--transition);
}

.footer-disclaimer:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer-accordions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-accordion-item {
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.footer-accordion-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.15);
}

.footer-accordion-item.active {
    background: rgba(255, 255, 255, 0.01);
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    transition: var(--transition);
}

.footer-accordion-header:hover {
    color: #fff;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.3;
    color: #fff;
}

.footer-accordion-item:hover .accordion-arrow {
    opacity: 0.6;
}

.footer-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-accordion-item.active .footer-accordion-content {
    max-height: 1000px;
}

.content-inner {
    padding: 0 24px 24px 54px; /* Align with text by compensating for icon + gap */
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    line-height: 1.6;
}

.contact-box {
    margin-top: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-box p {
    margin-bottom: 6px;
    display: flex;
    gap: 8px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    min-width: 80px;
}


.footer-social {
    padding: 30px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--border-subtle);
    margin-top: 20px;
}

.social-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

.social-icons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-icons a {
    color: #fff;
    opacity: 0.5;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    opacity: 1;
    transform: scale(1.15);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.footer-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info p {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}


.footer-link:hover {
    color: #fff;
}



@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 40px;
    }
    
    .footer-accordion-header {
        padding: 20px;
        font-size: 1rem;
    }
    
    .content-inner {
        padding: 0 20px 24px;
        font-size: 0.9rem;
    }
    
    .contact-box {
        padding: 16px;
    }

    .footer-social {
        padding: 40px 0 30px;
        margin-top: 30px;
        gap: 16px;
    }

    .social-icons {
        gap: 20px;
    }
}




@media (max-width: 768px) {
    .help-cta-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .help-title {
        font-size: 28px;
    }
    
    .btn-black-pill {
        width: 100%;
        justify-content: center;
    }
}

/* --- VIDEO LIGHTBOX (Premium Overlay) --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    width: 100%;
    z-index: 10;
    animation: lightboxScale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Aspect Ratio Variations */
.lightbox.aspect-9-16 .lightbox-content { max-width: 420px; }
.lightbox.aspect-9-16 .video-wrapper { aspect-ratio: 9/16; }

.lightbox.aspect-16-9 .lightbox-content { max-width: 960px; }
.lightbox.aspect-16-9 .video-wrapper { aspect-ratio: 16/9; }

@keyframes lightboxScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -40px;
        font-size: 30px;
    }
}

/* --- REGULAMENTO PAGE STYLES (LIGHT CONTENT, DARK NAV/FOOTER) --- */
.page-regulamento {
    background-color: #fff;
    color: #1d1d1f;
    overflow-x: hidden;
}

.page-regulamento .navbar {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: saturate(180%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-regulamento .nav-links a {
    color: #fff !important;
}

.page-regulamento .nav-links a.active::after {
    background: var(--accent);
}

.page-regulamento .btn-nav-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff !important;
}

.page-regulamento .lang-btn {
    color: #fff !important;
}

.page-regulamento .navbar {
    background-color: #000000 !important;
}

.page-regulamento .hamburger {
    color: #fff !important;
}

/* FORCED VISIBILITY FOR REGULATORY PAGES */
.page-regulamento #reg-content {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

@media (max-width: 992px) {
    .page-regulamento #menu-toggle.hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ffffff !important;
    }
    .page-regulamento .hamburger svg {
        stroke: #ffffff !important;
    }
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.reg-header {
    text-align: center;
    margin-bottom: 60px;
}

.reg-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #1d1d1f;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.reg-subtitle {
    font-size: 1.15rem;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Apple Style Tabs Pill - Light Mode */
.reg-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.reg-tabs-pill {
    position: relative;
    display: flex;
    background: #f5f5f7;
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.reg-tabs-pill::-webkit-scrollbar {
    display: none;
}

.reg-tab-btn {
    position: relative;
    z-index: 2;
    padding: 12px 28px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6e6e73;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 100px;
}

.reg-tab-btn:hover {
    color: #1d1d1f;
}

.reg-tab-btn.active {
    color: #1d1d1f;
}

.reg-tab-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Content Area - Light Mode */
.reg-content-area {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.reg-placeholder h2 {
    font-size: 2.2rem;
    color: #1d1d1f;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.reg-text-mock p {
    color: #424245;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.reg-text-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.reg-section {
    margin-bottom: 48px;
}

.reg-section:last-child {
    margin-bottom: 0;
}

.reg-section ul {
    list-style: none;
    padding: 0;
}

.reg-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #424245;
    font-size: 1.05rem;
    line-height: 1.6;
}

.reg-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #0071e3;
    border-radius: 50%;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.reg-card-mini {
    background: #f5f5f7;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.reg-card-mini:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.reg-card-mini strong {
    display: block;
    font-size: 0.95rem;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.reg-card-mini p {
    font-size: 0.85rem;
    color: #6e6e73;
    margin: 0;
    line-height: 1.4;
}

.reg-info-box {
    background: rgba(0, 113, 227, 0.05);
    border-left: 4px solid #0071e3;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin-top: 32px;
}

.reg-info-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #1d1d1f;
}

@media (max-width: 768px) {
    .reg-tabs-pill {
        width: 100%;
        justify-content: flex-start;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .reg-content-area {
        padding: 40px 24px;
    }
    
    .reg-title {
        font-size: 2.5rem;
    }

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


/* CONTENT SPACING FOR POLICIES AND REGULATIONS */
.reg-text-content {
    color: #1d1d1f;
    word-break: break-word;
    overflow-wrap: break-word;
}

.reg-text-content h1, 
.reg-text-content h2, 
.reg-text-content h3, 
.reg-text-content h4 {
    margin-top: 48px;
    margin-bottom: 24px;
    color: #1d1d1f;
    font-weight: 700;
}

.reg-text-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #424245;
}

.reg-text-content ul, 
.reg-text-content ol {
    margin-bottom: 32px;
    padding-left: 20px;
}

.reg-text-content li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #424245;
}

.reg-text-content strong {
    color: #1d1d1f;
}

.reg-text-content h3 {
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.reg-text-content ul, 
.reg-text-content ol {
    margin-bottom: 32px;
    padding-left: 20px;
}

.reg-text-content li {
    margin-bottom: 14px;
    line-height: 1.6;
}

.reg-text-content strong {
    color: #1d1d1f;
}

/* --- HOME SPECIFIC HERO --- */
.hero-home {
    padding: 100px 0 80px !important;
    min-height: 100vh !important;
    height: auto !important;
    /* Force completely override .hero background */
    background-image: linear-gradient(to right, #000000 50%, transparent 100%),
                      url('identidadevisual/institucional.png?v=4') !important;
    background-size: contain !important;
    background-position: right top !important;
    background-repeat: no-repeat !important;
    background-color: #000000 !important;
    background-blend-mode: normal !important; /* Overrides the overlay blend mode from .hero */
    position: relative !important;
    overflow: hidden !important;
}

.hero-home .container {
    position: relative;
    z-index: 2;
}


/* Override hero-visual alignment for home: center the play button */
.hero-home .hero-visual {
    justify-content: center;
    align-items: center;
}

/* Adjust the container to push content to the left */
.hero-home .container {
    position: relative;
    z-index: 3;
}

/* Compensate missing badge: badge height (~28px) + margin-bottom (32px) = 60px */
.hero-home .hero-title {
    margin-top: 60px;
}

/* Widen left column so H1 breaks into 3 lines */
.hero-home .hero-content {
    flex: 1.5;
}

.hero-home .hero-visual {
    flex: 0.7;
}

@media (max-width: 768px) {
    .hero-home {
        background: linear-gradient(to bottom, var(--bg-primary) 50%, rgba(0,0,0,0.6) 100%),
                    url('identidadevisual/institucional.png') no-repeat center center !important;
        background-size: cover !important;
        padding: 140px 0 80px !important;
    }
}

/* Video Play Button Overlay */
.home-play-wrapper {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    cursor: pointer;
}

@media (max-width: 768px) {
    .home-play-wrapper {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 40px auto 0;
        display: flex;
        justify-content: center;
    }
}

/* Circular Play Button (Premium Style) */
.play-button-circular {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateCircle 15s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.play-icon-inner {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    transition: var(--transition);
}

.play-icon-inner svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.4));
}

.video-cover-wrapper:hover .play-icon-inner {
    transform: scale(1.15);
    color: var(--accent);
}

@media (max-width: 768px) {
    .play-button-circular {
        width: 120px;
        height: 120px;
    }
    .play-icon-inner {
        width: 48px;
        height: 48px;
    }
}
