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

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Guia Amapá Premium Landing Page)
   ========================================================================== */

:root {
    /* Fonts */
    --font-display: 'Outfit', sans-serif;

    /* Color Palette */
    --black: #000000;
    --white: #ffffff;
    --gray: #9c9c9c;
    --dark-gray: #121212;
    --light-gray: #f5f5f7;
    --yellow: #ffcd24;
    --yellow-rgb: 255, 205, 36;
    
    /* Effects */
    --glass-bg: rgba(25, 25, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(25px) saturate(180%);
    
    /* Spacing */
    --section-padding: 6rem 2rem;
    --container-width: 1200px;
    
    /* Animation Speeds */
    --transition-speed: 0.4s;
    --transition-ease: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */

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

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: initial; /* Lenis handles smooth scroll */
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--yellow);
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    padding: 0 4rem;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.grid {
    display: grid;
    gap: 3rem;
}

.grid-2-col {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3-col {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4-col {
    grid-template-columns: repeat(4, 1fr);
}

.align-items-center {
    align-items: center;
}

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

/* Glassmorphism Effect */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Glassmorphism Card (Exact styles from assinaturas.php) */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-speed) var(--transition-premium), 
                border-color var(--transition-speed) ease, 
                box-shadow var(--transition-speed) ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
}

.glass-card:hover {
    border-color: rgba(255, 205, 36, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 205, 36, 0.08);
}

/* Dynamic Spotlight Mouse Glow */
.glow-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 205, 36, 0.06), transparent 40%);
    z-index: 2;
}

.border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid transparent;
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 205, 36, 0.25), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover .border-glow {
    opacity: 1;
}

/* Section Headers */
.section-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.2rem, 5vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 2.5rem;
}

.section-desc {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    color: var(--gray);
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.text-highlight {
    color: var(--yellow);
}

/* ==========================================================================
   BUTTONS (Netflix/Premium Style)
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.6rem 3.6rem;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-speed) var(--transition-ease);
    position: relative;
    overflow: hidden;
}


.btn-premium {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.btn-premium:hover {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 205, 36, 0.25);
}

.btn-premium i {
    width: 1.8rem;
    height: 1.8rem;
    transition: transform var(--transition-speed) var(--transition-ease);
}

.btn-premium:hover i {
    transform: translate(2px, -2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

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

.btn i {
    width: 1.8rem;
    height: 1.8rem;
}

/* ==========================================================================
   HEADER / NAVBAR (ESTILO SOBRE)
   ========================================================================== */

.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border: none;
}

.navbar.scrolled {
    top: 16px;
}

.navbar.scrolled .navbar-container {
    background: rgba(10, 10, 10, 0.75);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 
                0 0 30px rgba(255, 205, 36, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 4px 6px;
}

.navbar-container {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-placeholder {
    display: none;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px 0 14px;
    height: 32px;
    transition: transform 0.3s ease;
}

.nav-logo-link:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 205, 36, 0.3));
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 10px 0 2px;
}

.nav-menu {
    display: flex;
    gap: 6px;
    align-items: center;
    list-style: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-icon {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

.nav-link.active {
    color: var(--yellow);
    background: rgba(255, 205, 36, 0.12);
    border-color: rgba(255, 205, 36, 0.3);
    box-shadow: 0 0 15px rgba(255, 205, 36, 0.1);
}

.nav-link.active .nav-icon {
    opacity: 1;
    color: var(--yellow);
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition-speed) ease;
}

@media (max-width: 991px) {
    .navbar {
        width: auto;
        max-width: 95%;
        left: 50%;
        transform: translateX(-50%);
        top: 16px;
    }
    
    .navbar-container {
        justify-content: center;
        width: 100%;
        padding: 4px;
        border-radius: 100px;
        flex-wrap: nowrap;
    }
    
    .nav-logo-link {
        display: flex !important;
        padding: 0 4px 0 10px;
        height: 28px;
    }
    
    .nav-logo-img {
        height: 20px;
        width: auto;
        object-fit: contain;
    }
    
    .nav-divider {
        display: block !important;
        height: 16px;
        margin: 0 6px;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 4px;
        padding: 0;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        width: auto;
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    
    .nav-link {
        width: auto;
        padding: 8px 10px;
        justify-content: center;
    }
    
    .nav-link span {
        display: inline-block;
        max-width: 0;
        opacity: 0;
        overflow: hidden;
        white-space: nowrap;
        transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    opacity 0.3s ease,
                    margin-left 0.3s ease;
        margin-left: 0;
    }
    
    .nav-link.active span {
        max-width: 110px;
        opacity: 1;
        margin-left: 6px;
    }
}

/* ==========================================================================
   SEÇÃO 01: HERO CINEMATOGRÁFICO
   ========================================================================== */

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05); /* Prepped for GSAP Parallax zoom */
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 8rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrapper {
    position: relative;
    border-radius: 28px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: heroLogoFloat 6s ease-in-out infinite;
}

.hero-logo-img {
    height: clamp(140px, 15vw, 220px);
    width: auto;
    display: block;
    filter: drop-shadow(0 0 25px rgba(255, 205, 36, 0.15));
}

@keyframes heroLogoFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.6rem, 5.5vw, 7.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 2.5rem;
}

.hero-subtitle {
    font-size: clamp(1.6rem, 2vw, 2rem);
    color: var(--gray);
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

.hero-ctas .scroll-indicator {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    margin: 0;
}

.scroll-text {
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--gray);
    font-weight: 700;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--gray);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--yellow);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 1.5s infinite;
}

@keyframes scrollAnimation {
    0% { transform: translate(-50%, 0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* ==========================================================================
   SEÇÃO 02: INTRODUÇÃO PREMIUM (Bioryx Column Layout)
   ========================================================================== */

.intro-section {
    background-color: var(--black);
}

.intro-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Float cards */
.premium-image-container {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background-color: var(--dark-gray);
    aspect-ratio: 4/3;
    width: 100%;
}

.premium-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Parallax image prep */
.parallax-container {
    overflow: hidden;
}

.parallax-img {
    transform: scale(1.1);
    will-change: transform;
}

.card-floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) scale(1.1); }
    50% { transform: translateY(-15px) scale(1.1); }
    100% { transform: translateY(0px) scale(1.1); }
}

/* ==========================================================================
   SEÇÃO 03: LOGOS / ECOSSISTEMA (Scroll Infinito)
   ========================================================================== */

.marquee-section {
    background-color: var(--dark-gray);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

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

.marquee-content {
    display: flex;
    gap: 8rem;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    transition: color var(--transition-speed);
}

.marquee-item i,
.marquee-item img {
    width: 2.8rem;
    height: 2.8rem;
    color: var(--yellow);
}

.marquee-item img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(51%) saturate(1478%) hue-rotate(352deg) brightness(103%) contrast(101%);
}

.marquee-item:hover {
    color: var(--white);
}

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

/* ==========================================================================
   SEÇÃO 04: FUNCIONALIDADES IMERSIVAS
   ========================================================================== */

.functionalities-section {
    background-color: var(--black);
}

.functionalities-grid {
    margin-top: 6rem;
}

.premium-card {
    border-radius: 20px;
    padding: 4rem 3.5rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-speed) var(--transition-ease), border-color var(--transition-speed);
}

.premium-card:hover {
    border-color: var(--yellow);
    transform: translateY(-8px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 205, 36, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    color: var(--yellow);
    transition: transform 0.5s var(--transition-ease);
}

.premium-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i, .card-icon img {
    width: 2.8rem;
    height: 2.8rem;
    object-fit: contain;
}

.premium-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.premium-card p {
    font-size: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

/* 3D Card Hover Glow */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 250px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 205, 36, 0.08), transparent 80%);
    opacity: 0;
    transition: opacity var(--transition-speed);
    pointer-events: none;
    z-index: 1;
}

.premium-card:hover .card-glow, .testimonial-card:hover .card-glow, .unique-card:hover .card-glow {
    opacity: 1;
}

/* ==========================================================================
   SEÇÃO 05: BLOCO DE EXPERIÊNCIA (NIO Grid Split Layout)
   ========================================================================== */

.experience-block-section {
    padding: var(--section-padding);
    background-color: var(--dark-gray);
}

.split-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.split-image-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background-color: var(--black);
}

.split-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   MELHORIAS SEÇÃO VIVÊNCIA DIGITAL (PREMIUM OVERLAYS & LAYOUT)
   ========================================================================== */
.experience-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 2.5rem;
    perspective: 1200px;
}

/* Glow de Fundo */
.experience-glow-backdrop {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 205, 36, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: glowPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes glowPulse {
    0% { transform: scale(0.9) opacity(0.7); }
    100% { transform: scale(1.1) opacity(1); }
}

/* Card Principal */
.experience-main-card {
    position: relative;
    width: 100%;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(255, 205, 36, 0.03);
    z-index: 2;
    transition: transform 0.4s var(--transition-premium), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.experience-main-card:hover {
    border-color: rgba(255, 205, 36, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 
                0 0 50px rgba(255, 205, 36, 0.1);
}

.experience-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--transition-premium);
}

.experience-main-card:hover .experience-img {
    transform: scale(1.03);
}

/* Reflexo do Card */
.card-reflection {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 3;
    pointer-events: none;
}

.experience-main-card:hover .card-reflection {
    left: 150%;
}




.glass-panel {
    border-radius: 24px;
    padding: 5rem;
    width: 100%;
    max-width: 550px;
}

.panel-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.glass-panel h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 3.5rem;
    letter-spacing: -0.05em;
}

.experience-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.experience-steps li {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
    padding: 1.8rem 2.2rem;
    border-radius: 20px;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.4s var(--transition-premium);
    cursor: pointer;
}

.experience-steps li:hover,
.experience-steps li.active {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
}

/* Efeito de foco atenuado nas outras etapas ao passar o mouse */
.experience-steps:hover li:not(:hover) {
    opacity: 0.35;
    transform: scale(0.98);
}

/* Se não houver hover mas houver um item ativo (scroll trigger), atenua os outros */
.experience-steps.has-active:not(:hover) li.active {
    opacity: 1;
}

.experience-steps.has-active:not(:hover) li:not(.active) {
    opacity: 0.35;
    transform: scale(0.98);
}

/* Indicador de linha acesa ao passar o mouse ou ativo */
.experience-steps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 3px;
    background-color: var(--yellow);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transform: scaleY(0);
    transition: transform 0.4s var(--transition-premium), opacity 0.4s ease;
}

.experience-steps li:hover::before,
.experience-steps li.active::before {
    opacity: 1;
    transform: scaleY(1);
}

.step-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    transition: transform 0.4s var(--transition-premium), color 0.3s ease;
}

.experience-steps li:hover .step-num,
.experience-steps li.active .step-num {
    color: var(--yellow);
    transform: scale(1.2);
    text-shadow: 0 0 12px rgba(255, 205, 36, 0.4);
}

.step-body h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.experience-steps li:hover .step-body h4,
.experience-steps li.active .step-body h4 {
    color: var(--white);
}

.step-body p {
    font-size: 1.4rem;
    color: var(--gray);
    line-height: 1.5;
}

.panel-actions {
    margin-top: 2rem;
}

/* ==========================================================================
   SEÇÃO 06: NÚMEROS DA PLATAFORMA (Bioryx Stats Grid)
   ========================================================================== */

.stats-section {
    background-color: var(--black);
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: clamp(4.5rem, 6vw, 7.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.stat-number span {
    color: var(--white);
}

.stat-label {
    font-size: 1.5rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ==========================================================================
   SEÇÃO 07: DIFERENCIAIS (Layout Split Sticky Interativo)
   ========================================================================== */

.unique-section {
    background-color: var(--black);
    position: relative;
}

.unique-split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8rem;
    align-items: start;
}

.unique-left-panel {
    position: sticky;
    top: 12rem;
    padding-right: 4rem;
}

.unique-left-panel .section-title {
    margin-bottom: 2rem;
}

.unique-left-panel .section-desc {
    margin-bottom: 4rem;
}

/* Indicadores Interativos */
.unique-indicators {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.8rem 0;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity var(--transition-speed) var(--transition-ease);
}

.indicator-item.active {
    opacity: 1;
}

.indicator-bar {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: width var(--transition-speed) var(--transition-ease), background-color var(--transition-speed);
}

.indicator-item.active .indicator-bar {
    width: 48px;
    background-color: var(--yellow);
}

.indicator-label {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    transition: color var(--transition-speed);
}

.indicator-item.active .indicator-label {
    color: var(--yellow);
}

.unique-right-panel {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.unique-card {
    border-radius: 24px;
    padding: 5rem 4.5rem;
    transition: all var(--transition-speed) var(--transition-ease);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.unique-card-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.unique-icon {
    width: 48px;
    height: 48px;
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.unique-icon i, .unique-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.unique-icon img, .card-icon img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(51%) saturate(1478%) hue-rotate(352deg) brightness(103%) contrast(101%);
}

.unique-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.unique-card p {
    font-size: 1.6rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

/* Card Active / Hover style */
.unique-card.active, .unique-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(25, 25, 25, 0.85);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Add media query specific adjustments later in media queries section if needed */

/* ==========================================================================
   SEÇÃO 08: MÓDULO IMÓVEIS (NIO Showcase Style)
   ========================================================================== */

.imoveis-section {
    background-color: var(--dark-gray);
}

.imoveis-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3.5rem 0 4rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.highlight-item i {
    width: 2.4rem;
    height: 2.4rem;
    color: var(--yellow);
}

/* ==========================================================================
   SEÇÃO 09: MÓDULO EVENTOS
   ========================================================================== */

.eventos-section {
    background-color: var(--black);
}

.eventos-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.eventos-features-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.6rem;
    color: var(--gray);
}

.eventos-features-list li i {
    width: 2rem;
    height: 2rem;
    color: var(--yellow);
}

.eventos-image-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.eventos-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   SEÇÃO 10: MÓDULO SHOPPING
   ========================================================================== */

.shopping-section {
    background-color: var(--dark-gray);
}

.shopping-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 3rem 0 4rem;
}

.category-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    transition: all var(--transition-speed);
}

.category-badge:hover {
    background-color: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.shopping-image-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.shopping-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   SEÇÃO 11: MÓDULO AO VIVO (Netflix Streaming Grid)
   ========================================================================== */

.streaming-section {
    background-color: var(--black);
}

.streaming-hero {
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 6rem;
    margin-top: 5rem;
    margin-bottom: 4rem;
    position: relative;
    border: 1px solid var(--glass-border);
}

.streaming-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.live-badge {
    background-color: #e50914; /* Red accent for live streaming Netflix feel */
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--white);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

.streaming-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.streaming-hero-desc {
    color: var(--gray);
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.streaming-actions {
    display: flex;
    gap: 1.5rem;
}

.streaming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.streaming-item {
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-speed) var(--transition-ease);
    cursor: pointer;
    border: 1px solid transparent;
}

.streaming-item:hover {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.2);
}

.stream-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
}

.stream-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
}

.stream-thumb .category {
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--yellow);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    z-index: 2;
}

.stream-info {
    padding: 2.5rem;
}

.stream-info h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.stream-info p {
    color: var(--gray);
    font-size: 1.3rem;
    line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO 12: DEPOIMENTOS PREMIUM (TESTIMONIALS)
   ========================================================================== */
#testimonials {
    background-color: #000000;
    background-image: radial-gradient(
        circle at center,
        rgba(255,205,36,0.03) 0%,
        transparent 60%
    );
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cabeçalho */
.testimonials-header {
    text-align: center;
    width: 100%;
    margin-bottom: 0px;
}

.testimonials-badge {
    display: block;
    color: #ffcd24;
    font-family: var(--font-display), 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-title {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 64px;
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.8;
    max-width: 800px;
    text-align: center;
    margin: 24px auto 50px;
    font-weight: 400;
}

/* Responsivo para o título principal */
@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 48px;
    }
    .testimonials-subtitle {
        font-size: 18px;
        margin: 24px auto 60px;
    }
    .testimonials-container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 38px;
    }
    .testimonials-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin: 20px auto 40px;
    }
    #testimonials {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* Carousel wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

/* Fade Overlays */
.testimonials-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-fade-left {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.testimonials-fade-right {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

@media (max-width: 768px) {
    .testimonials-fade {
        width: 50px;
    }
}

.testimonials-carousel-track-container {
    width: 100%;
    overflow: hidden;
}

.testimonials-carousel-track {
    display: flex;
    gap: 24px;
    width: 100%;
    will-change: transform;
}

/* Cards Estilo */
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Sizing of cards */
/* Desktop: 3 visible cards */
.testimonial-card {
    width: calc((100% - (2 * 24px)) / 3);
}

/* Tablet: 2 visible cards */
@media (max-width: 1024px) {
    .testimonial-card {
        width: calc((100% - (1 * 24px)) / 2);
    }
}

/* Mobile: 1 visible card */
@media (max-width: 768px) {
    .testimonial-card {
        width: 100%;
        padding: 24px 20px;
    }
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 205, 36, 0.3);
    box-shadow: 0 20px 60px rgba(255, 205, 36, 0.08);
}

/* Texto do depoimento */
.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .testimonial-text {
        font-size: 18px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 14.5px;
        line-height: 1.65;
        font-weight: 300;
        letter-spacing: 0.01em;
        -webkit-line-clamp: 6;
    }
    .testimonial-card {
        height: auto;
        min-height: 220px;
    }
}

/* Rodapé do card */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

/* Avatar */
.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #ffcd24;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display), 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Informações */
.testimonial-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.testimonial-company {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .testimonial-name {
        font-size: 16px;
    }
    .testimonial-company {
        font-size: 13px;
    }
    .testimonial-footer {
        margin-top: 16px;
        gap: 12px;
    }
}

/* Indicadores (Dots) */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-dot.active {
    width: 10px;
    height: 10px;
    background: #ffcd24;
    box-shadow: 0 0 15px rgba(255, 205, 36, 0.8);
}

/* Animation classes */
.testimonials-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-animate.animated {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   SEÇÃO 13: FAQ (Accordion Glassmorphism)
   ========================================================================== */

.faq-section {
    background-color: var(--black);
}

.faq-container {
    max-width: 800px;
    margin: 6rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--transition-speed);
    border: 1px solid var(--glass-border);
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--gray);
    transition: transform var(--transition-speed) var(--transition-ease);
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) var(--transition-ease);
}

.faq-content p {
    padding: 0 3rem 3rem;
    color: var(--gray);
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ==========================================================================
   SEÇÃO 14: CTA FINAL
   ========================================================================== */

.cta-final-section {
    height: 55vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.cta-final-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-final-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.6rem, 6vw, 6.5rem);
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.cta-final-desc {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: var(--gray);
    margin-bottom: 4.5rem;
    font-weight: 300;
}

/* ==========================================================================
   RODAPÉ PREMIUM (NIO Style Layout)
   ========================================================================== */

.footer-premium {
    background-color: var(--black);
    padding: 6rem 0 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 8rem;
    margin-bottom: 8rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2.5rem;
    letter-spacing: -0.05em;
}

.footer-logo span {
    color: var(--yellow);
}

.brand-tagline {
    color: var(--gray);
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: all var(--transition-speed) var(--transition-ease);
    background-color: rgba(255, 255, 255, 0.02);
}

.social-icon:hover {
    color: var(--black);
    background-color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.social-icon i,
.social-icon img {
    width: 2rem;
    height: 2rem;
    display: block;
    transition: filter var(--transition-speed) var(--transition-ease);
}

.social-icon:hover img {
    filter: brightness(0);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
}

.footer-link-group h4 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    color: var(--white);
}

.footer-link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-link-group ul li a {
    color: var(--gray);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-link-group ul li a:hover {
    color: var(--white);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 4rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    color: #555;
    font-size: 1.3rem;
}

/* Giant background typography style NIO */
.footer-giant-bg {
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: clamp(10rem, 20vw, 32rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: -0.05em;
    user-select: none;
}

/* ==========================================================================
   MEDIA QUERIES (Responsiveness & Mobile layout)
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .streaming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-split {
        grid-template-columns: 1fr;
    }
    
    .split-image-column {
        margin-bottom: 2rem;
    }
    
    .unique-split-layout {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .unique-left-panel {
        position: static;
        padding-right: 0;
    }
    
    .unique-indicators {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }
    
    .grid-2-col, .grid-3-col, .grid-4-col, .streaming-grid {
        grid-template-columns: 1fr;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4rem;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-right {
        order: -1;
    }

    .hero-logo-img {
        height: 120px;
    }
    
    .hero-ctas {
        flex-direction: row;
        width: auto;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .hero-ctas .scroll-indicator {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 1.2rem !important;
        margin: 0 !important;
    }
    
    .btn {
        padding: 1.2rem 2.8rem;
        font-size: 1.3rem;
    }
    
    .footer-premium {
        padding: 5rem 0 3rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .brand-tagline {
        margin-bottom: 2rem;
        font-size: 1.4rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    
    .footer-link-group h4 {
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
    }
    
    .footer-link-group ul {
        gap: 1rem;
    }
    
    .footer-link-group ul li a {
        font-size: 1.4rem;
    }
    
    .footer-divider {
        margin-bottom: 2.5rem;
    }
    
    .split-content-panel {
        padding: 3rem 1.5rem;
    }
    
    .glass-panel {
        padding: 3rem 2rem;
    }
    
    .faq-trigger {
        padding: 2rem;
        font-size: 1.6rem;
    }
    
    .faq-content p {
        padding: 0 2rem 2rem;
    }

    /* Otimização de cards para telas menores */
    .unique-card, .premium-card, .testimonial-card {
        padding: 3rem 2rem;
    }

    /* Seção Ao Vivo (Streaming Hero) responsiva */
    .streaming-hero {
        height: auto;
        min-height: 380px;
        padding: 4rem 2rem 3rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .streaming-hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .streaming-hero-desc {
        margin-bottom: 2.5rem;
    }

    .streaming-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 1.2rem;
    }

    /* Ajuste do indicador de scroll para celular */
    .scroll-indicator .scroll-text {
        display: none;
    }

    /* Ajuste da Vivência Digital para celular (Imagem após o texto) */
    .experience-block-section .split-image-column {
        order: 2;
        margin-bottom: 0;
        margin-top: 2rem;
    }

    .experience-block-section .split-content-column {
        order: 1;
    }

    .experience-image-wrapper {
        padding: 1rem;
    }

    .experience-steps li:hover {
        transform: translateX(4px);
    }

}

/* ==========================================================================
   VIDEO TEASER MODAL OVERLAY (Guia Amapá Premium)
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    z-index: 10;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 
                0 0 50px rgba(255, 205, 36, 0.1);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 11;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    transform: scale(1.1) rotate(90deg);
}

.video-wrapper {
    width: 100%;
    height: 100%;
}

.video-wrapper video,
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border: none;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
}

