/* ==========================================================================
   DESIGN SYSTEM - GUIA AMAPÁ PREMIUM SAAS LANDING PAGE
   ========================================================================== */

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

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray: #9c9c9c;
    --yellow: #ffcd24;
    --yellow-rgb: 255, 205, 36;
    --glass-bg: rgba(25, 25, 25, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-speed: 0.3s;
    --transition-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --premium-card-bg: #252623;
    --combo-card-bg: #252623;
}

/* ==========================================================================
   RESET & SETUP
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-primary);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    background-color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 205, 36, 0.15);
    border: 2px solid var(--black);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--yellow);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s var(--transition-premium), visibility 0.8s var(--transition-premium);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}

.loader-logo span {
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(255, 205, 36, 0.6);
}

.loader-bar-container {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--yellow);
    box-shadow: 0 0 10px var(--yellow);
    transition: width 0.4s ease-out;
}

/* ==========================================================================
   VISUAL DEPTH (BACKGROUND GLOWS & PARTICLES)
   ========================================================================== */

.ambient-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 205, 36, 0.08) 0%, rgba(255, 205, 36, 0) 70%);
    filter: blur(80px);
    animation: floatGlow 20s infinite alternate;
}

.glow-2 {
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: -100px;
    right: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 205, 36, 0.05) 0%, rgba(255, 205, 36, 0) 70%);
    filter: blur(100px);
    animation: floatGlow 25s infinite alternate-reverse;
}

.glow-3 {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 80px) scale(1.1); }
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

@media(max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.gradient-text {
    color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.gold-text {
    color: var(--yellow);
    text-shadow: 0 0 15px rgba(255, 205, 36, 0.3);
}

/* ==========================================================================
   GLASSMORPHISM BASE & CARD DEPTH
   ========================================================================== */

.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;
}

/* Glow on Hover Card */
.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;
}

/* ==========================================================================
   BUTTONS (MAGNETIC & GLOWING)
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-speed) var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--black);
    border: 1px solid var(--yellow);
    box-shadow: 0 10px 25px rgba(255, 205, 36, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 205, 36, 0.4), 0 0 15px rgba(255, 205, 36, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-magnetic-wrap {
    display: inline-block;
    position: relative;
}

/* ==========================================================================
   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: 0.78rem;
    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;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 40px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    z-index: 2;
    background-image: 
        linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.90) 0%, 
            rgba(0, 0, 0, 0.82) 40%, 
            rgba(0, 0, 0, 0.88) 70%, 
            rgba(0, 0, 0, 0.96) 88%, 
            var(--black) 100%),
        url('../hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


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

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 205, 36, 0.1);
    border: 1px solid rgba(255, 205, 36, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
}

@media(max-width: 991px) {
    .hero-subtitle {
        margin: 0 auto 40px;
    }
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

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

.hero-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

@media(max-width: 576px) {
    .hero-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.hero-ind-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-ind-num span {
    color: var(--yellow);
}

.hero-ind-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Interactive Amapá SVG Map Container */
.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
}

.map-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

.map-path {
    fill: rgba(30, 30, 30, 0.5);
    stroke: rgba(255, 205, 36, 0.2);
    stroke-width: 1.5;
    transition: all 0.5s ease;
}

.map-path:hover {
    fill: rgba(255, 205, 36, 0.05);
    stroke: rgba(255, 205, 36, 0.6);
}

.map-node {
    fill: var(--yellow);
    stroke: rgba(255, 205, 36, 0.4);
    stroke-width: 4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-node:hover {
    fill: var(--white);
    stroke: var(--yellow);
    filter: drop-shadow(0 0 10px var(--yellow));
}

.map-link {
    stroke: rgba(255, 205, 36, 0.15);
    stroke-dasharray: 5, 5;
    stroke-width: 1;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.map-floating-card {
    position: absolute;
    bottom: 40px;
    right: 20px;
    width: 260px;
    padding: 16px;
    z-index: 10;
    pointer-events: none;
    border-radius: 12px;
}

.map-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.map-card-desc {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ==========================================================================
   STATISTICS BAR (COUNTERS)
   ========================================================================== */

.section-stats {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 205, 36, 0.01);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stats-item {
    text-align: center;
    min-width: 180px;
}

.stats-number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(255, 205, 36, 0.2);
}

.stats-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================================================
   BENTO GRID (ECOSYSTEM SECTION)
   ========================================================================== */

.section {
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

#planos {
    padding-top: 40px;
    padding-bottom: 30px;
}

#ecossistema {
    padding-top: 30px;
    padding-bottom: 40px;
}

#ecossistema .section-header {
    margin-bottom: 30px;
}

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

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
}

.bento-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

.bento-item:hover {
    border-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(20, 20, 20, 0.5) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

/* Custom Spans for Bento */
.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.glass-card:hover .bento-icon {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    box-shadow: none;
    transform: none;
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bento-desc {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.bento-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    list-style: none;
}

.bento-benefit-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bento-benefit-item svg {
    color: var(--yellow);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.bento-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.bento-action svg {
    transition: transform 0.3s ease;
}

.glass-card:hover .bento-action svg {
    transform: translateX(4px);
}

/* CTA Bento filler */
.bento-cta {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(255, 205, 36, 0.05) 100%);
    border: 1px solid rgba(255, 205, 36, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.bento-cta-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.bento-cta-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

@media(max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-wide {
        grid-column: span 1;
    }
}

/* ==========================================================================
   TIMELINE (HOW IT WORKS)
   ========================================================================== */

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 40px 0;
}

.timeline-line-bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--yellow), rgba(255, 205, 36, 0.2));
    transform: translateX(-50%);
    transition: height 0.1s ease-out;
    box-shadow: 0 0 15px var(--yellow);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
    box-sizing: border-box;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--black);
    border: 3px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    transition: all 0.5s ease;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item.active .timeline-dot {
    background: var(--yellow);
    border-color: var(--black);
    box-shadow: 0 0 15px var(--yellow);
    transform: scale(1.25);
}

.timeline-step {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 205, 36, 0.1);
    line-height: 1;
    margin-bottom: 10px;
    transition: color 0.5s ease;
}

.timeline-item.active .timeline-step {
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(255, 205, 36, 0.3);
}

.timeline-card {
    padding: 24px;
}

.timeline-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

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

@media(max-width: 768px) {
    .timeline-line-bg, .timeline-line-progress {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }
    .timeline-item:nth-child(even) .timeline-dot, .timeline-item:nth-child(odd) .timeline-dot {
        left: 10px;
        right: auto;
    }
}

/* ==========================================================================
   MODULE DETAILS & PRICING
   ========================================================================== */

.section-pricing {
    background: linear-gradient(180deg, var(--black) 0%, rgba(255, 205, 36, 0.02) 50%, var(--black) 100%);
}

.pricing-menu {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.pricing-menu-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray);
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-menu-btn:hover, .pricing-menu-btn.active {
    background: rgba(255, 205, 36, 0.1);
    border-color: var(--yellow);
    color: var(--white);
    box-shadow: 0 0 15px rgba(255, 205, 36, 0.15);
}

.module-showcase {
    display: none;
    animation: fadeInUp 0.6s var(--transition-premium) forwards;
}

.module-showcase.active {
    display: block;
}

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

.module-header-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

@media(max-width: 768px) {
    .module-header-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.module-meta-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.module-meta-desc {
    margin-bottom: 24px;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.plan-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card.featured {
    border-color: var(--yellow);
    background: linear-gradient(180deg, rgba(255, 205, 36, 0.05) 0%, rgba(25, 25, 25, 0.7) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 205, 36, 0.12);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--gray);
}

.plan-card.featured .plan-name {
    color: var(--yellow);
}

.plan-price-block {
    margin-bottom: 24px;
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.plan-currency {
    font-size: 0.9rem;
    color: var(--gray);
}

.plan-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
}

.plan-period {
    font-size: 0.85rem;
    color: var(--gray);
}

.plan-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.plan-feature-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-feature-item svg {
    color: var(--yellow);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    margin-top: auto;
}

/* ==========================================================================
   MODULE 6 SUB-TABS (GUIA PLUS SPECIAL LAYOUT)
   ========================================================================== */

.submodule-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.submodule-tab-btn {
    background: none;
    border: none;
    color: var(--gray);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    position: relative;
    transition: color 0.3s ease;
}

.submodule-tab-btn.active {
    color: var(--yellow);
}

.submodule-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.submodule-tab-btn.active::after {
    transform: scaleX(1);
}

.submodule-pane {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.submodule-pane.active {
    display: block;
}

/* ==========================================================================
   COMPARATOR TABLE
   ========================================================================== */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: left;
}

.comp-table th, .comp-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comp-table th {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.4);
}

.comp-table td {
    font-size: 0.9rem;
}

.comp-feature-name {
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.comp-table tbody tr {
    transition: background-color 0.2s ease;
}

.comp-table tbody tr:hover {
    background-color: rgba(255, 205, 36, 0.02);
}

.comp-check {
    color: var(--yellow);
    display: flex;
    justify-content: center;
}

.comp-cross {
    color: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   CROSS SELLING (COMBO SIMULATOR)
   ========================================================================== */

.section-cross {
    background: rgba(255, 205, 36, 0.005);
}

.combo-simulator {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    transform: none !important;
}

.combo-display-card:hover {
    transform: none !important;
}

.combo-savings-tag {
    display: inline-block !important;
    align-self: flex-start;
    background: rgba(255, 205, 36, 0.08) !important;
    border: 1px solid rgba(255, 205, 36, 0.2) !important;
    color: #ffcd24 !important;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px !important;
    margin-bottom: 24px !important;
    letter-spacing: 0.5px;
}

.combo-display-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.combo-display-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: #ffcd24 !important;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 205, 36, 0.6) !important;
}

.combo-display-desc {
    font-size: 0.95rem;
    color: #9c9c9c !important;
    line-height: 1.6;
    margin-bottom: 24px;
}

.combo-includes-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9c9c9c !important;
    margin-bottom: 10px;
}

.combo-modules-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.combo-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.combo-pill svg {
    color: #ffcd24 !important;
    width: 12px;
    height: 12px;
}

.combo-action-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

@media(max-width: 576px) {
    .combo-action-block {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
}

.combo-pricing {
    display: flex;
    flex-direction: column;
}

.combo-original-price {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.combo-deal-price {
    font-size: 1.6rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: #ffffff !important;
}

.combo-deal-price span {
    font-size: 0.95rem;
    color: #9c9c9c !important;
    font-weight: 400;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    margin-top: 40px;
    padding: 10px 0 20px;
    scrollbar-width: none; /* Firefox */
}

.testimonials-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    scroll-snap-align: start;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

.test-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow) 0%, #d4a017 100%);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(255, 205, 36, 0.2);
}

.test-meta h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.test-meta p {
    font-size: 0.78rem;
    color: var(--gray);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */

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

@media(max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 205, 36, 0.25);
    background: rgba(25, 25, 25, 0.65);
}

.faq-header {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-icon-chevron {
    color: var(--gray);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

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

/* Smooth Accordion Height with CSS grid templates */
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s var(--transition-premium);
}

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

.faq-answer-inner {
    overflow: hidden;
    padding: 0 24px 24px;
}

.faq-answer-inner p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--gray);
}

/* ==========================================================================
   CTA FINAL & FOOTER
   ========================================================================== */

.section-cta {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(255, 205, 36, 0.05) 0%, var(--black) 80%);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media(max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--black);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

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

.footer-brand p {
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    max-width: 280px;
}

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

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: var(--yellow);
    border-color: var(--yellow);
    background: rgba(255, 205, 36, 0.05);
    transform: translateY(-2px);
}

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

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

.footer-link a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
}

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

.footer-legal-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   LEAD MODAL (CONTACT FORM)
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--transition-premium);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 90%;
    max-width: 580px;
    transform: scale(0.9);
    transition: transform 0.5s var(--transition-premium);
    position: relative;
}

.modal-backdrop.active .modal-container {
    transform: scale(1);
}

.modal-card {
    padding: 40px;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: center;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 30px;
}

/* Form inputs */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(255, 205, 36, 0.1);
}

.form-modules-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
    cursor: pointer;
    user-select: none;
}

.form-checkbox-label input {
    accent-color: var(--yellow);
    width: 16px;
    height: 16px;
}

.form-submit-btn {
    width: 100%;
    font-size: 1rem;
    padding: 16px;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3), 0 0 15px rgba(37, 211, 102, 0.2);
    z-index: 90;
    transition: all 0.3s var(--transition-premium);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* ==========================================================================
   PRELOADER LOGO FLOATING GLASS CARD (FROM SOBRE PROJECT)
   ========================================================================== */
.hero-logo-wrapper {
    position: relative;
    border-radius: 28px;
    padding: 2.5rem;
    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;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 190px;
    margin: 0 auto;
}

.official-logo-img {
    height: 130px;
    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); }
}

/* ==========================================================================
   COMPACT TABLE RESPONSIVE DEFAULTS
   ========================================================================== */
.desktop-header {
    display: inline;
}
.mobile-header {
    display: none;
}

/* ==========================================================================
   MOBILE VIEW OPTIMIZATIONS (WIDTH <= 768PX)
   ========================================================================== */
@media(max-width: 768px) {
    /* 1. Combos simulator mobile menu - styled by premium tabs mapping */
    .combo-display-title {
        font-size: 1.4rem !important;
        color: #ffffff !important;
    }
    .combo-display-title::before {
        height: 18px !important;
        background: #ffcd24 !important;
    }
    .combo-display-desc {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        color: #9c9c9c !important;
    }
    .combo-modules-pills {
        margin-bottom: 20px !important;
        gap: 6px !important;
    }
    .combo-pill {
        padding: 4px 10px !important;
        font-size: 0.72rem !important;
    }
    .combo-action-block {
        padding-top: 16px !important;
    }
    
    /* 2. Matriz Comparativa (Análise Detalhada) - compact without scrollbar */
    .table-wrapper {
        border-radius: 12px !important;
        box-shadow: none !important;
        overflow-x: visible !important; /* Disables horizontal scrollbar wrapper */
    }
    .comp-table {
        table-layout: fixed !important;
        width: 100% !important;
    }
    .comp-table th, .comp-table td {
        padding: 8px 3px !important; /* Squeezed padding */
        border-bottom: 1px solid rgba(255,255,255,0.03) !important;
    }
    .desktop-header {
        display: none !important;
    }
    .mobile-header {
        display: inline-block !important;
        font-size: 0.65rem !important;
    }
    .comp-table th.feature-col-header, 
    .comp-table td.comp-feature-name {
        width: 40% !important; /* Feature name gets 40% */
        font-size: 0.65rem !important;
        padding-left: 6px !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    .comp-table th:not(.feature-col-header), 
    .comp-table td:not(.comp-feature-name) {
        width: 10% !important; /* Each of the 6 columns gets 10% */
        text-align: center !important;
    }
    .comp-feature-name {
        display: block !important; /* Removes flex layout to fit text better */
        line-height: 1.2 !important;
    }
    .comp-feature-name svg {
        display: none !important; /* Hide icon to save horizontal space */
    }
    .comp-check svg {
        width: 11px !important;
        height: 11px !important;
    }
    .comp-cross {
        font-size: 0.65rem !important;
    }
    
    /* 3. Hide WhatsApp button on mobile */
    .whatsapp-float {
        display: none !important;
    }

    /* 4. Premium Tabs mobile view optimizations */
    .premium-tab-btn,
    .combo-menu-item {
        padding: 0 14px !important;
        height: 50px !important;
        border-radius: 0 !important;
        font-size: 0.8rem !important;
        background: transparent !important;
        border: none !important;
    }
    
    .premium-tab-btn.active {
        height: 50px !important;
        border-bottom-left-radius: 16px !important;
        border-bottom-right-radius: 16px !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        background: var(--premium-card-bg) !important;
    }

    .combo-menu-item.active {
        height: 50px !important;
        border-bottom-left-radius: 16px !important;
        border-bottom-right-radius: 16px !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        background: var(--combo-card-bg) !important;
    }

    .premium-tab-btn .tab-icon,
    .combo-menu-item .tab-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .premium-tab-btn:not(.active) .tab-text,
    .combo-menu-item:not(.active) .tab-text {
        display: none !important;
    }

    .premium-tab-btn.active .tab-icon,
    .combo-menu-item.active .tab-icon {
        margin-right: 8px !important;
    }

    .premium-tab-btn.active .tab-text,
    .combo-menu-item.active .tab-text {
        display: inline-block !important;
    }

    /* Scale down tab active curves on mobile */
    .premium-tab-btn.active::before {
        left: -16px !important;
        width: 16px !important;
        height: 16px !important;
        border-top-right-radius: 16px !important;
        background: var(--premium-card-bg) !important;
        border-bottom: none !important;
        border-right: none !important;
        box-shadow: none !important;
        top: 0 !important;
    }

    .combo-menu-item.active::before {
        left: -16px !important;
        width: 16px !important;
        height: 16px !important;
        border-top-right-radius: 16px !important;
        background: var(--combo-card-bg) !important;
        border-bottom: none !important;
        border-right: none !important;
        box-shadow: none !important;
        top: 0 !important;
    }

    .premium-tab-btn.active::after {
        right: -16px !important;
        width: 16px !important;
        height: 16px !important;
        border-top-left-radius: 16px !important;
        background: var(--premium-card-bg) !important;
        border-bottom: none !important;
        border-left: none !important;
        box-shadow: none !important;
        top: 0 !important;
    }

    .combo-menu-item.active::after {
        right: -16px !important;
        width: 16px !important;
        height: 16px !important;
        border-top-left-radius: 16px !important;
        background: var(--combo-card-bg) !important;
        border-bottom: none !important;
        border-left: none !important;
        box-shadow: none !important;
        top: 0 !important;
    }
}

/* ==========================================================================
   REDUCED SECTION SPACING FOR JORNADA DE ATIVAÇÃO
   ========================================================================== */
#como-funciona {
    padding-bottom: 30px !important;
}

/* ==========================================================================
   BENTO GRID BENEFITS RESPONSIVENESS
   ========================================================================== */
@media(max-width: 500px) {
    .bento-benefits {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
}

/* ==========================================================================
   SEÇÃO PREMIUM ECOSSISTEMA SAAS (TABS & MOCKUPS)
   ========================================================================== */
#ecossistema-premium {
    --premium-card-bg: #252623;
    --premium-card-border: rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, var(--black) 0%, rgba(255, 205, 36, 0.02) 50%, var(--black) 100%);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}

/* Container de Abas - Estilo Fichário / Pasta */
.premium-tabs-outer,
.combo-menu {
    display: flex;
    justify-content: center;
    width: calc(100% + 120px);
    margin-top: -60px;
    margin-left: -60px;
    margin-right: -60px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--premium-card-border);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 15;
    height: 60px;
}

.premium-tabs-outer,
.combo-menu {
    background: #141312; /* Contrasta com o active tab */
}

.premium-tabs-outer::-webkit-scrollbar,
.combo-menu::-webkit-scrollbar {
    display: none;
}

.premium-tabs-menu,
.combo-tabs-menu {
    display: inline-flex;
    align-items: flex-start;
    padding: 0 40px;
    gap: 4px;
    height: 100%;
    position: relative;
}

.premium-tab-btn,
.combo-menu-item {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 28px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 10;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.premium-tab-btn:hover,
.combo-menu-item:hover {
    color: rgba(255, 255, 255, 0.85);
}

.premium-tab-btn .tab-icon,
.combo-menu-item .tab-icon {
    display: none;
}

.premium-tab-btn .tab-icon svg,
.combo-menu-item .tab-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Micro-interação de hover no ícone */
.premium-tab-btn:hover .tab-icon svg,
.combo-menu-item:hover .tab-icon svg {
    transform: scale(1.1) translateY(-1px);
}

/* Estado Ativo: Sem background próprio (o indicator brilha por baixo) */
.premium-tab-btn.active,
.combo-menu-item.active {
    background: transparent !important;
    border: none !important;
    color: var(--yellow) !important;
    z-index: 10;
    height: 60px !important;
}

/* O indicador que desliza criando o U-shape cutout */
.premium-tab-indicator,
.combo-tab-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 60px;
    background: var(--black) !important; /* Revela o fundo preto da página */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 5;
    pointer-events: none;
    transition: transform 500ms cubic-bezier(0.25, 1, 0.5, 1), width 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

/* Efeito Invertido Esquerda no Indicador */
.premium-tab-indicator::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -20px !important;
    width: 20px !important;
    height: 20px !important;
    background: var(--premium-card-bg) !important;
    border-top-right-radius: 20px !important;
    pointer-events: none;
    z-index: 5 !important;
}

.combo-tab-indicator::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -20px !important;
    width: 20px !important;
    height: 20px !important;
    background: var(--combo-card-bg) !important;
    border-top-right-radius: 20px !important;
    pointer-events: none;
    z-index: 5 !important;
}

/* Efeito Invertido Direita no Indicador */
.premium-tab-indicator::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: -20px !important;
    width: 20px !important;
    height: 20px !important;
    background: var(--premium-card-bg) !important;
    border-top-left-radius: 20px !important;
    pointer-events: none;
    z-index: 5 !important;
}

.combo-tab-indicator::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: -20px !important;
    width: 20px !important;
    height: 20px !important;
    background: var(--combo-card-bg) !important;
    border-top-left-radius: 20px !important;
    pointer-events: none;
    z-index: 5 !important;
}

/* Painel de Conteúdo Principal */
.premium-tabs-panel {
    background: var(--premium-card-bg) !important;
    border: 1px solid var(--premium-card-border) !important;
    border-radius: 28px !important;
    padding: 60px !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7) !important;
    position: relative;
    z-index: 5;
}

.combo-display-card {
    background: var(--combo-card-bg) !important;
    border: 1px solid var(--premium-card-border) !important;
    border-radius: 28px !important;
    padding: 60px !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7) !important;
    position: relative;
    z-index: 5;
}

.premium-panes-wrapper {
    position: relative;
    width: 100%;
}

.premium-tab-pane {
    display: none;
}

.premium-tab-pane.active {
    display: block;
}

/* Grid de duas colunas */
.premium-pane-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

@media(max-width: 991px) {
    .premium-pane-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .premium-tabs-panel,
    .combo-display-card {
        padding: 40px 24px !important;
    }
    .premium-tabs-outer,
    .combo-menu {
        margin-top: -40px !important;
        margin-left: -24px !important;
        margin-right: -24px !important;
        width: calc(100% + 48px) !important;
        margin-bottom: 25px !important;
        border-top-left-radius: 28px !important;
        border-top-right-radius: 28px !important;
        height: 50px !important;
    }
    .premium-tab-btn,
    .combo-menu-item {
        height: 50px !important;
    }
    .premium-tab-btn.active,
    .combo-menu-item.active {
        height: 50px !important;
    }
    .premium-tab-indicator,
    .combo-tab-indicator {
        height: 50px !important;
        border-bottom-left-radius: 16px !important;
        border-bottom-right-radius: 16px !important;
    }
    .premium-tab-indicator::before,
    .combo-tab-indicator::before {
        left: -16px !important;
        width: 16px !important;
        height: 16px !important;
        border-top-right-radius: 16px !important;
    }
    .premium-tab-indicator::after,
    .combo-tab-indicator::after {
        right: -16px !important;
        width: 16px !important;
        height: 16px !important;
        border-top-left-radius: 16px !important;
    }
}

/* Conteúdo Esquerdo (Textos) */
.pane-main-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}

.pane-main-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 30px;
    white-space: pre-line;
}

.pane-benefits-list {
    list-style: none;
    margin-bottom: 35px;
}

.pane-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.pane-benefits-list li .chk-icon {
    color: var(--yellow);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Estatísticas Internas */
.pane-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.pane-stat-val {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 4px;
}

.pane-stat-lbl {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pane-cta-wrap {
    margin-top: 35px;
}

/* Conteúdo Direito (Mockups Interativos) */
.pane-visual-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glow Backdrops */
.mockup-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.22;
    z-index: 1;
    animation: floatGlow 8s infinite alternate;
}

.pink-glow { background: #ff2a85; }
.blue-glow { background: #00c6ff; }
.yellow-glow { background: #ffcd24; }
.gold-glow { background: #dfb440; }
.teal-glow { background: #00f2fe; }
.orange-glow { background: #ff9f43; }
.purple-glow { background: #b128ff; }
.emerald-glow { background: #10ac84; }

/* Estrutura de Janela de Software SaaS (CSS Mockup Base) */
.mockup-screen {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 280px;
    background: rgba(12, 11, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    animation: floatMockup 6s ease-in-out infinite alternate;
}

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

.mockup-header-bar {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 6px;
}

.mockup-header-bar .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-header-bar .dot.red { background: #ff5f56; }
.mockup-header-bar .dot.yellow { background: #ffbd2e; }
.mockup-header-bar .dot.green { background: #27c93f; }

.mockup-search-input {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 3px 12px;
    flex-grow: 1;
    margin-left: 20px;
    font-family: monospace;
    max-width: 260px;
}

/* 1. MOCKUP PORTAL (MAPA & CARDS) */
.mockup-portal-body {
    display: flex;
    flex-grow: 1;
}

.portal-sidebar {
    width: 50px;
    background: rgba(0,0,0,0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 10px;
}

.portal-sidebar .side-item {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
}

.portal-sidebar .side-item.active {
    background: var(--yellow);
}

.portal-main {
    flex-grow: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portal-map-area {
    height: 100px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    position: relative;
}

.map-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulseDot 2s infinite ease-in-out;
}

.map-dot.dot-1 { top: 30px; left: 40px; }
.map-dot.dot-2 { top: 60px; left: 120px; animation-delay: 0.5s; }
.map-dot.dot-3 { top: 20px; left: 240px; animation-delay: 1s; }

@keyframes pulseDot {
    0% { transform: scale(0.8); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 10px var(--yellow); }
    100% { transform: scale(0.8); opacity: 0.4; }
}

.portal-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.portal-card-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    gap: 8px;
}

.card-img-placeholder {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.card-title-line {
    width: 45px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.card-stars {
    font-size: 0.55rem;
    color: var(--yellow);
}

/* 2. MOCKUP EVENTOS (TICKET) */
.ticket-body {
    flex-grow: 1;
    padding: 14px 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.ticket-card-ui {
    width: 170px;
    background: linear-gradient(135deg, #252423 0%, #151413 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

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

.ticket-logo {
    width: 16px;
    height: 16px;
    background: var(--yellow);
    border-radius: 50%;
}

.ticket-price {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
}

.ticket-middle .t-line {
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    margin-bottom: 6px;
}

.ticket-middle .t-line.l-1 { width: 90px; }
.ticket-middle .t-line.l-2 { width: 60px; }
.ticket-middle .t-line.l-3 { width: 75px; margin-bottom: 0; }

.ticket-dashed {
    border-top: 1px dashed rgba(255,255,255,0.15);
    margin: 4px 0;
}

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

.qr-code-placeholder {
    width: 34px;
    height: 34px;
    background: var(--white);
    padding: 3px;
    border-radius: 4px;
}

.qr-box {
    width: 100%;
    height: 100%;
    background: #000;
    mask-image: radial-gradient(circle at 50% 50%, transparent 20%, #000 21%); /* Fake QR */
    -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 20%, #000 21%);
}

.ticket-badge {
    background: rgba(255, 205, 36, 0.1);
    border: 1px solid rgba(255, 205, 36, 0.3);
    color: var(--yellow);
    font-size: 0.55rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
}

.ticket-stats-ui {
    flex-grow: 1;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mini-chart-bar-wrap {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    width: 100%;
    justify-content: center;
}

.mini-chart-bar-wrap .m-bar {
    width: 10px;
    background: var(--yellow);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    opacity: 0.8;
}

.m-bar.h-30 { height: 30%; }
.m-bar.h-50 { height: 50%; }
.m-bar.h-60 { height: 60%; }
.m-bar.h-80 { height: 80%; }
.m-bar.h-95 { height: 95%; background: var(--white); }

.mini-chart-lbl {
    font-size: 0.6rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 3. MOCKUP SHOPPING (VITRINE) */
.shopping-body {
    flex-grow: 1;
    padding: 14px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.shop-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shop-item-img {
    height: 55px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
}

.shop-item-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-title-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.shop-price-bar {
    width: 40%;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

/* 4. MOCKUP CLUB VIP (HOLOGRAPHIC CARD) */
.vip-card-wrap {
    perspective: 1000px;
    width: 100%;
    max-width: 340px;
    z-index: 2;
    animation: floatMockup 5s ease-in-out infinite alternate;
}

.vip-card-face {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1f1b18 0%, #151311 50%, #0c0b0a 100%);
    border: 1px solid rgba(223, 180, 64, 0.25);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(223, 180, 64, 0.06);
    position: relative;
    overflow: hidden;
}

/* Efeito Holograma / Dourado */
.vip-card-face::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(255, 205, 36, 0.05) 30%,
        rgba(255, 255, 255, 0.08) 35%,
        rgba(255, 205, 36, 0.05) 40%,
        transparent 60%
    );
    transform: rotate(-10deg);
    animation: holoShine 7s infinite linear;
}

@keyframes holoShine {
    0% { transform: translate(-30%, -30%) rotate(-10deg); }
    100% { transform: translate(30%, 30%) rotate(-10deg); }
}

.vip-card-logo {
    width: 30px;
    height: 30px;
    background: url('../logo_entrada.png') no-repeat center;
    background-size: contain;
    filter: drop-shadow(0 0 5px rgba(255,205,36,0.5));
}

.vip-card-chip {
    width: 32px;
    height: 24px;
    background: linear-gradient(135deg, #e5c060 0%, #a27520 100%);
    border-radius: 4px;
}

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

.vip-card-number {
    font-family: monospace;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.vip-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.vip-card-name {
    font-size: 0.65rem;
    color: var(--gray);
    letter-spacing: 1.5px;
}

.vip-card-tag {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--yellow);
    text-shadow: 0 0 8px rgba(255,205,36,0.3);
}

/* 5. MOCKUP FORTRESS (SECURITY/BI) */
.fortress-body {
    flex-grow: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fortress-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fortress-mini-card {
    height: 38px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px;
    position: relative;
}

.fortress-c-title {
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    margin-bottom: 6px;
}

.fortress-c-val {
    width: 60px;
    height: 5px;
    background: #00f2fe;
    border-radius: 2px;
}

.fortress-chart-area {
    height: 100px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.fortress-radar-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 254, 0.2);
    position: relative;
}

.fortress-radar-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 254, 0.1);
    transform: translate(-50%, -50%);
}

.radar-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 32.5px;
    background: linear-gradient(to top, rgba(0,242,254,0.8), transparent);
    transform-origin: bottom center;
    animation: rotateRadar 3s linear infinite;
}

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

.fortress-progress-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.05);
    border-top-color: #00f2fe;
    animation: rotateRadar 4s linear infinite;
}

.fortress-feed {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feed-item-line {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.feed-item-line:first-child { width: 80%; }
.feed-item-line:last-child { width: 50%; }

/* 6. MOCKUP DELIVERY (ROUTE MAP) */
.delivery-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.delivery-map {
    height: 150px;
    background: rgba(255,255,255,0.01);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.map-path-svg {
    width: 100%;
    height: 100%;
}

.route-progress {
    animation: dashRoute 8s linear infinite;
}

@keyframes dashRoute {
    to {
        stroke-dashoffset: 0;
    }
}

.delivery-pin {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.delivery-pin.start {
    background: #ff5f56;
    top: 96px;
    left: 16px;
}

.delivery-pin.end {
    background: #27c93f;
    top: 16px;
    right: 16px;
}

.delivery-pin.active-bike {
    background: var(--yellow);
    width: 12px;
    height: 12px;
    border: 2px solid #000;
    box-shadow: 0 0 10px var(--yellow);
    top: 75px;
    left: 105px;
    animation: pulseBike 1.5s infinite ease-in-out;
}

@keyframes pulseBike {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.delivery-card-info {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.2);
}

.delivery-card-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.delivery-name-line {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    margin-bottom: 6px;
}

.delivery-status-line {
    font-size: 0.6rem;
    color: var(--yellow);
    font-weight: bold;
}

/* 7. MOCKUP MARKETPLACE (FINANCIAL) */
.marketplace-body {
    flex-grow: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mkt-stats-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 14px;
}

.mkt-s-title {
    font-size: 0.6rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.mkt-s-val {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: #b128ff;
}

.mkt-sales-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mkt-sale-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mkt-s-circ {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.mkt-s-desc {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mkt-s-desc .m-line {
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 1px;
}

.mkt-s-desc .m-line.l-1 { width: 80px; }
.mkt-s-desc .m-line.l-2 { width: 40px; }

/* 8. MOCKUP CRM (KANBAN FUNNEL) */
.crm-body {
    flex-grow: 1;
    padding: 12px;
}

.crm-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: 100%;
}

.kanban-column {
    background: rgba(255,255,255,0.01);
    border: 1px dashed rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kanban-c-title {
    font-size: 0.6rem;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 4px;
}

.kanban-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kanban-card.win {
    border-color: #10ac84;
    background: rgba(16, 172, 132, 0.05);
}

.kanban-card .k-line {
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 1px;
}

.kanban-card .k-line.l-1 { width: 80%; }
.kanban-card .k-line.l-2 { width: 40%; }

/* Link de retorno mobile na sessão de planos */
.mobile-only-back-link {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only-back-link {
        display: block;
        text-align: center;
        margin-top: 40px;
    }
    .back-to-selector {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--gray);
        font-size: 0.9rem;
        font-weight: 500;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .back-to-selector:hover {
        color: var(--yellow);
        border-color: rgba(255, 205, 36, 0.3);
        background: rgba(255, 205, 36, 0.05);
        transform: translateY(-2px);
    }
}

/* ==========================================================================
   TESTIMONIALS MOBILE CAROUSEL & DOTS
   ========================================================================== */
@media (max-width: 768px) {
    .testimonials-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 16px !important;
        padding: 15px 20px 25px !important;
        margin: 0 -20px !important;
        scrollbar-width: none !important; /* Firefox */
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none !important; /* Chrome, Safari, Opera */
    }

    .testimonial-card {
        flex: 0 0 290px !important;
        max-width: 290px !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        height: auto !important;
        transform: none !important; /* Disable 3D tilt on mobile */
    }

    .testimonial-card:hover {
        transform: none !important;
    }

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

.testimonials-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 25px;
}

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

.testimonials-carousel-dots .carousel-dot.active {
    background: var(--yellow);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--yellow);
}

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


