:root {
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-darker: #050505;
    --color-gold: #9B59B6;
    --color-gold-light: #B794F6;
    --color-gold-dark: #7C3AED;
    --color-gold-glow: rgba(155, 89, 182, 0.4);
    --color-white: #FFFFFF;
    --color-gray: #888888;
    --color-gray-light: #CCCCCC;
    --color-gray-dark: #333333;
    --font-primary: 'Montserrat', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --shadow-gold: 0 0 60px rgba(155, 89, 182, 0.3);
    --shadow-gold-intense: 0 0 100px rgba(155, 89, 182, 0.5);
    --spacing-section: 100px;
    --spacing-container: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 19.2px;
    -webkit-text-size-adjust: 100%;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

.section {
    position: relative;
    overflow: visible;
    width: 100%;
}

.stars-background,
.stars-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stars-background::before,
.stars-decoration::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow:
        100px 50px 0 0 rgba(155, 89, 182, 0.8),
        200px 150px 0 0 rgba(155, 89, 182, 0.6),
        300px 80px 0 0 rgba(155, 89, 182, 0.4),
        450px 200px 0 0 rgba(155, 89, 182, 0.7),
        600px 100px 0 0 rgba(155, 89, 182, 0.5),
        750px 250px 0 0 rgba(155, 89, 182, 0.6),
        900px 50px 0 0 rgba(155, 89, 182, 0.8),
        1050px 180px 0 0 rgba(155, 89, 182, 0.4),
        150px 300px 0 0 rgba(155, 89, 182, 0.5),
        350px 350px 0 0 rgba(155, 89, 182, 0.7),
        550px 400px 0 0 rgba(155, 89, 182, 0.6),
        800px 380px 0 0 rgba(155, 89, 182, 0.4),
        950px 320px 0 0 rgba(155, 89, 182, 0.8),
        1100px 400px 0 0 rgba(155, 89, 182, 0.5),
        50px 450px 0 0 rgba(155, 89, 182, 0.6),
        250px 500px 0 0 rgba(155, 89, 182, 0.7);
    animation: twinkle 4s ease-in-out infinite;
}

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

.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--color-black);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 30px;
}

.animated-chart-container {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

#salesChart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.chart-gradient-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.6) 30%,
        var(--color-black) 100%
    );
    pointer-events: none;
}

.hero-content {
    text-align: center;
    padding: 50px 20px 30px;
    z-index: 100;
    position: relative;
    flex-shrink: 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.2) 0%, rgba(142, 68, 173, 0.3) 100%);
    border: 1px solid rgba(155, 89, 182, 0.5);
    color: var(--color-purple-light);
    font-size: clamp(0.84rem, 2.4vw, 1.02rem);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(155, 89, 182, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(155, 89, 182, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 4px 25px rgba(155, 89, 182, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.vsl-container {
    padding: 25px 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    position: relative;
    flex-shrink: 0;
}

.vsl-wrapper {
    width: 100%;
    max-width: 580px;
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(155, 89, 182, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(155, 89, 182, 0.15);
    position: relative;
}

.vsl-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.5), transparent);
}

.custom-video-player,
.google-drive-player,
.vimeo-player-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a14 0%, #12121f 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(155, 89, 182, 0.5);
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.2), 0 0 40px rgba(155, 89, 182, 0.1);
}

.vimeo-player-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 14px;
}

.vimeo-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.vimeo-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    pointer-events: auto;
}

.volume-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    opacity: 0.8;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

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

.volume-btn:active {
    opacity: 1;
}

.volume-btn svg {
    width: 18px;
    height: 18px;
    color: #fff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.volume-btn .hidden {
    display: none;
}

.google-drive-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 14px;
}

.custom-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.video-click-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 8;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 10;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-video-player:hover .video-controls,
.custom-video-player.playing .video-controls {
    opacity: 1;
    pointer-events: auto;
}

.custom-video-player.paused .video-controls {
    opacity: 0;
    pointer-events: none;
}

.custom-video-player.loading .video-controls {
    opacity: 0;
    pointer-events: none;
}

.play-pause-btn {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.2) 0%, rgba(155, 89, 182, 0.1) 100%);
    border: 1px solid rgba(155, 89, 182, 0.4);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.4) 0%, rgba(155, 89, 182, 0.2) 100%);
    border-color: rgba(155, 89, 182, 0.6);
    transform: scale(1.05);
}

.play-pause-btn svg {
    width: 20px;
    height: 20px;
    color: #9b59b6;
}

.play-pause-btn .hidden {
    display: none;
}

.progress-container {
    flex: 1;
    height: 3px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: height 0.2s ease;
    position: relative;
}

.video-controls:hover .progress-container {
    height: 4px;
}

.progress-bar {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 10px;
    overflow: visible;
    cursor: default;
    pointer-events: none;
    position: relative;
}

.progress-filled {
    height: 100%;
    width: 0%;
    background: #a855f7;
    border-radius: 10px;
    transition: width 0.1s linear;
    position: relative;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.progress-filled::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.9), 0 2px 4px rgba(0,0,0,0.3);
}

.video-controls:hover .progress-filled::after {
    transform: translateY(-50%) scale(1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.custom-video-player.paused .video-overlay {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-loading.hidden {
    display: none;
}

.loading-spinner-ring {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spinRing 1.5s ease-in-out infinite;
}

.spinner-ring:nth-child(1) {
    width: 80px;
    height: 80px;
    border-top-color: rgba(155, 89, 182, 0.9);
    border-right-color: rgba(155, 89, 182, 0.3);
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    border-top-color: rgba(183, 148, 246, 0.8);
    border-left-color: rgba(183, 148, 246, 0.3);
    animation-delay: 0.15s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    border-bottom-color: rgba(155, 89, 182, 0.7);
    border-right-color: rgba(155, 89, 182, 0.2);
    animation-delay: 0.3s;
}

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

.big-play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.25) 0%, rgba(155, 89, 182, 0.1) 100%);
    border: 2px solid rgba(155, 89, 182, 0.5);
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 40px rgba(155, 89, 182, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

.big-play-btn:hover {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.4) 0%, rgba(155, 89, 182, 0.2) 100%);
    border-color: rgba(155, 89, 182, 0.8);
}

.big-play-btn:active {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.4) 0%, rgba(155, 89, 182, 0.2) 100%);
}

.big-play-btn svg {
    width: 36px;
    height: 36px;
    color: #9b59b6;
    margin-left: 4px;
    filter: drop-shadow(0 0 8px rgba(155, 89, 182, 0.6));
}

.resume-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.resume-overlay.hidden {
    display: none;
}

.resume-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.95) 0%, rgba(10, 10, 20, 0.98) 100%);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(155, 89, 182, 0.15);
}

.resume-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-align: center;
}

.resume-time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.resume-buttons {
    display: flex;
    gap: 12px;
}

.resume-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.resume-btn svg {
    width: 16px;
    height: 16px;
}

.resume-yes {
    background: linear-gradient(135deg, #9b59b6 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(155, 89, 182, 0.4);
}

.resume-yes:hover {
    box-shadow: 0 6px 25px rgba(155, 89, 182, 0.5);
}

.resume-yes:active {
    transform: scale(0.98);
}

.resume-no {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.resume-no:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.resume-no:active {
    transform: scale(0.98);
}

@media (max-width: 480px) {
    .resume-box {
        padding: 24px 28px;
        margin: 0 20px;
    }
    
    .resume-text {
        font-size: 1rem;
    }
    
    .resume-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

.vsl-cta-button-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: 580px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(124, 58, 237, 0.25) 100%);
    border: 1px solid rgba(155, 89, 182, 0.5);
    border-radius: 16px;
    padding: 18px 24px;
    margin-top: 25px;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 32px rgba(155, 89, 182, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.vsl-cta-button-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.2), transparent);
    animation: ctaShimmer 3s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.vsl-cta-button-new:hover {
    transform: translateY(-3px);
    border-color: rgba(155, 89, 182, 0.8);
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.25) 0%, rgba(124, 58, 237, 0.35) 100%);
    box-shadow: 
        0 12px 40px rgba(155, 89, 182, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.cta-main-text {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cta-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.cta-old-price {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.cta-new-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-new-price strong {
    color: #00ff88;
    font-size: 1rem;
    font-weight: 800;
}

.cta-installment {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(155, 89, 182, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(155, 89, 182, 0.3);
}

.cta-installment strong {
    color: #c56cf0;
    font-weight: 700;
}

.cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.4) 0%, rgba(124, 58, 237, 0.5) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 89, 182, 0.4);
    position: relative;
    z-index: 2;
}

.cta-arrow svg {
    width: 24px;
    height: 24px;
    color: #fff;
    transition: transform 0.3s ease;
}

.vsl-cta-button-new:hover .cta-arrow {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.6) 0%, rgba(124, 58, 237, 0.7) 100%);
    border-color: rgba(155, 89, 182, 0.6);
}

.vsl-cta-button-new:hover .cta-arrow svg {
    transform: translateX(4px);
}

@media (max-width: 480px) {
    .vsl-cta-button-new {
        padding: 14px 18px;
        gap: 12px;
    }
    
    .cta-arrow {
        width: 40px;
        height: 40px;
    }
    
    .cta-arrow svg {
        width: 20px;
        height: 20px;
    }
}

.hero-title {
    font-size: clamp(1.1rem, 2.8vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--color-white);
    padding: 0 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 10px;
    line-height: 1.5;
}

.pagamentos-orbit-section {
    padding: 40px 0 60px;
    margin-top: -20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.phone-orbit-composition {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 450px;
    max-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 800px;
}

.orbit-central-phone {
    position: relative;
    z-index: 10;
    animation: phoneFloat 5s ease-in-out infinite;
}

.orbit-phone-img {
    width: clamp(240px, 66vw, 400px);
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(155, 89, 182, 0.5))
            drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.01); }
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transform-style: preserve-3d;
}

.orbit-coin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(38px, 11vw, 60px);
    height: clamp(38px, 11vw, 60px);
    margin: calc(clamp(38px, 11vw, 60px) / -2) 0 0 calc(clamp(38px, 11vw, 60px) / -2);
    will-change: transform;
}

.orbit-coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6))
            drop-shadow(0 2px 6px rgba(155, 89, 182, 0.4));
}

.coin-1 {
    animation: meteorOrbit1 8s linear infinite;
}

.coin-2 {
    animation: meteorOrbit2 12s linear infinite -2s;
}

.coin-3 {
    animation: meteorOrbit3 10s linear infinite -4s;
}

.coin-4 {
    animation: meteorOrbit4 14s linear infinite -1s;
}

.coin-5 {
    animation: meteorOrbit5 9s linear infinite -3s;
}

.coin-6 {
    animation: meteorOrbit6 11s linear infinite -5s;
}

@keyframes meteorOrbit1 {
    0% { 
        transform: rotate(0deg) translateX(clamp(120px, 32vw, 220px)) rotate(0deg) scale(0.9);
        opacity: 0.7;
    }
    25% { 
        transform: rotate(90deg) translateX(clamp(100px, 28vw, 180px)) rotate(-90deg) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: rotate(180deg) translateX(clamp(140px, 36vw, 240px)) rotate(-180deg) scale(0.85);
        opacity: 0.8;
    }
    75% { 
        transform: rotate(270deg) translateX(clamp(110px, 30vw, 200px)) rotate(-270deg) scale(1.05);
        opacity: 0.95;
    }
    100% { 
        transform: rotate(360deg) translateX(clamp(120px, 32vw, 220px)) rotate(-360deg) scale(0.9);
        opacity: 0.7;
    }
}

@keyframes meteorOrbit2 {
    0% { 
        transform: rotate(45deg) translateX(clamp(130px, 35vw, 230px)) translateY(-20px) rotate(-45deg) scale(1);
        opacity: 0.9;
    }
    33% { 
        transform: rotate(165deg) translateX(clamp(90px, 25vw, 160px)) translateY(15px) rotate(-165deg) scale(0.8);
        opacity: 0.6;
    }
    66% { 
        transform: rotate(285deg) translateX(clamp(150px, 38vw, 250px)) translateY(-10px) rotate(-285deg) scale(1.15);
        opacity: 1;
    }
    100% { 
        transform: rotate(405deg) translateX(clamp(130px, 35vw, 230px)) translateY(-20px) rotate(-405deg) scale(1);
        opacity: 0.9;
    }
}

@keyframes meteorOrbit3 {
    0% { 
        transform: rotate(-30deg) translateX(clamp(100px, 28vw, 190px)) rotate(30deg) scale(1.1);
        opacity: 1;
    }
    20% { 
        transform: rotate(42deg) translateX(clamp(140px, 34vw, 220px)) rotate(-42deg) scale(0.75);
        opacity: 0.65;
    }
    40% { 
        transform: rotate(114deg) translateX(clamp(85px, 24vw, 150px)) rotate(-114deg) scale(1.2);
        opacity: 0.9;
    }
    60% { 
        transform: rotate(186deg) translateX(clamp(125px, 32vw, 210px)) rotate(-186deg) scale(0.9);
        opacity: 0.75;
    }
    80% { 
        transform: rotate(258deg) translateX(clamp(145px, 36vw, 235px)) rotate(-258deg) scale(1);
        opacity: 1;
    }
    100% { 
        transform: rotate(330deg) translateX(clamp(100px, 28vw, 190px)) rotate(-330deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes meteorOrbit4 {
    0% { 
        transform: rotate(120deg) translateX(clamp(135px, 34vw, 225px)) translateY(25px) rotate(-120deg) scale(0.85);
        opacity: 0.75;
    }
    50% { 
        transform: rotate(300deg) translateX(clamp(95px, 26vw, 170px)) translateY(-30px) rotate(-300deg) scale(1.1);
        opacity: 1;
    }
    100% { 
        transform: rotate(480deg) translateX(clamp(135px, 34vw, 225px)) translateY(25px) rotate(-480deg) scale(0.85);
        opacity: 0.75;
    }
}

@keyframes meteorOrbit5 {
    0% { 
        transform: rotate(-60deg) translateX(clamp(115px, 30vw, 200px)) rotate(60deg) scale(1);
        opacity: 0.85;
    }
    25% { 
        transform: rotate(30deg) translateX(clamp(145px, 37vw, 240px)) rotate(-30deg) scale(0.7);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(120deg) translateX(clamp(80px, 22vw, 145px)) rotate(-120deg) scale(1.25);
        opacity: 1;
    }
    75% { 
        transform: rotate(210deg) translateX(clamp(130px, 33vw, 215px)) rotate(-210deg) scale(0.9);
        opacity: 0.8;
    }
    100% { 
        transform: rotate(300deg) translateX(clamp(115px, 30vw, 200px)) rotate(-300deg) scale(1);
        opacity: 0.85;
    }
}

@keyframes meteorOrbit6 {
    0% { 
        transform: rotate(180deg) translateX(clamp(105px, 29vw, 185px)) translateY(-15px) rotate(-180deg) scale(1.05);
        opacity: 0.9;
    }
    35% { 
        transform: rotate(306deg) translateX(clamp(140px, 35vw, 230px)) translateY(20px) rotate(-306deg) scale(0.8);
        opacity: 0.7;
    }
    70% { 
        transform: rotate(432deg) translateX(clamp(90px, 25vw, 160px)) translateY(-25px) rotate(-432deg) scale(1.15);
        opacity: 1;
    }
    100% { 
        transform: rotate(540deg) translateX(clamp(105px, 29vw, 185px)) translateY(-15px) rotate(-540deg) scale(1.05);
        opacity: 0.9;
    }
}

.futuro-section {
    background: #000000;
    padding: 0;
    position: relative;
    min-height: auto;
    overflow: hidden;
}

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

.planet-canvas {
    position: relative;
    width: 100%;
    height: clamp(180px, 45vw, 350px);
    z-index: 2;
    pointer-events: none;
    display: block;
}

.futuro-content-wrapper {
    position: relative;
    z-index: 3;
    padding: 30px 20px 60px;
}

.futuro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.video-fullwidth {
    position: relative;
    z-index: 4;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(155, 89, 182, 0.3);
    background: linear-gradient(145deg, rgba(155, 89, 182, 0.1) 0%, rgba(10, 10, 20, 0.95) 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(155, 89, 182, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 8px;
}

.fullwidth-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 14px;
}

.section-tag {
    display: inline-block;
    font-size: clamp(1.404rem, 3.9vw, 1.8rem);
    color: var(--color-gold);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.section-tag strong {
    color: var(--color-gold-light);
    font-weight: 700;
}

.section-title {
    font-size: clamp(1.56rem, 5.4vw, 3rem);
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.35;
    padding: 0 12px;
    color: var(--color-white);
}

.section-title strong {
    font-weight: 700;
}

.gold-dot {
    color: var(--color-gold);
}

.section-text {
    font-size: clamp(1.2rem, 3vw, 1.38rem);
    color: var(--color-gray-light);
    max-width: 700px;
    margin: 0 auto 22px;
    line-height: 1.85;
    padding: 0 8px;
}

.quantum-section {
    background: var(--color-black);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.quantum-visual-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quantum-logo-fixed {
    display: flex;
    justify-content: center;
    padding: 30px 20px 0;
    z-index: 2;
}

.quantum-logo-img {
    width: clamp(280px, 50vw, 600px);
    height: auto;
}

.quantum-atom-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.quantum-lines-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.quantum-atom-gif {
    position: relative;
    z-index: 2;
    width: clamp(280px, 50vw, 600px);
    height: auto;
    margin-top: -30px;
}

.ghost-wallet-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(155, 89, 182, 0.15) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(10, 10, 20, 0.98) 100%);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 20px;
    padding: 25px;
    max-width: 380px;
    margin: 30px auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(155, 89, 182, 0.2), 0 0 40px rgba(155, 89, 182, 0.1) inset;
}

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

.wallet-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

.wallet-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.wallet-title {
    display: flex;
    flex-direction: column;
}

.wallet-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.wallet-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.wallet-balance {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.2) 0%, rgba(155, 89, 182, 0.05) 100%);
    border: 1px solid rgba(155, 89, 182, 0.25);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
}

.balance-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.balance-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #9b59b6;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.wallet-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(155, 89, 182, 0.1) 100%);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 12px;
    padding: 14px 16px;
}

.alert-icon {
    font-size: 1.2rem;
}

.alert-text {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.alert-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
}

.quantum-text-section {
    position: relative;
    z-index: 3;
    padding: 50px 20px 80px;
    text-align: center;
    background: var(--color-black);
}

.quantum-text-section .container {
    max-width: 1000px;
}

.quantum-subtitle {
    font-size: clamp(1.2rem, 3.6vw, 1.62rem);
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 35px;
    line-height: 1.7;
}

.quantum-text {
    font-size: clamp(1.26rem, 3.6vw, 1.5rem);
    color: var(--color-gray-light);
    margin-bottom: 25px;
    line-height: 1.85;
}

.tecnologia-section {
    background: var(--color-black);
    padding: 80px 0;
    position: relative;
    min-height: auto;
    overflow-x: hidden;
    overflow-y: visible;
}

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

.tech-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1200px, 180vw);
    height: min(1200px, 180vw);
    background: radial-gradient(circle, 
        rgba(155, 89, 182, 0.25) 0%, 
        rgba(155, 89, 182, 0.15) 25%,
        rgba(155, 89, 182, 0.08) 45%,
        rgba(155, 89, 182, 0.02) 65%,
        transparent 80%
    );
    pointer-events: none;
    z-index: 1;
    animation: glowPulse 5s ease-in-out infinite;
}

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

.tecnologia-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.flow-diagram {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow-diagram.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.flow-image {
    width: 90%;
    max-width: 1200px;
    height: auto;
    flex-shrink: 0;
}

.tech-description {
    font-size: clamp(1.08rem, 3vw, 1.32rem);
    color: var(--color-gray-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.85;
    padding: 0 10px;
}

.tech-description strong {
    color: var(--color-gold);
    font-weight: 600;
}

.monitoramento-section {
    background: var(--color-black);
    padding: var(--spacing-section) 0;
    position: relative;
    min-height: auto;
}

@media (max-width: 768px) {
    .monitoramento-section {
        background: url('../assets/images/mockup-bg.webp') no-repeat center top;
        background-size: cover;
        min-height: 100vh;
        padding-top: 60vh;
        position: relative;
    }
    
    .monitoramento-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 150px;
        background: linear-gradient(to bottom, var(--color-black) 0%, transparent 100%);
        z-index: 1;
        pointer-events: none;
    }
    
    .monitoramento-section .portal-background {
        display: none;
    }
}

.portal-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    max-width: 1800px;
    z-index: 0;
    opacity: 0.75;
}

.portal-image {
    width: 100%;
    height: auto;
}

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

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.video-faded {
    position: relative;
}

.video-faded::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.monitor-video {
    width: 100%;
    height: auto;
    display: block;
}

.monitor-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.monitor-text {
    font-size: clamp(1.26rem, 3.6vw, 1.5rem);
    color: var(--color-gray-light);
    margin-bottom: 25px;
    line-height: 1.85;
}

.monitor-text.highlight {
    color: var(--color-white);
    font-weight: 500;
}

.cta-section {
    background: var(--color-black);
    padding: 0;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.cta-background {
    position: relative;
    width: 100%;
    max-width: 1200px;
    z-index: 0;
    margin: 0 auto;
    padding: 0;
    pointer-events: none;
}

.planet-image {
    width: 100%;
    height: auto;
    display: block;
}

.cta-content {
    position: relative;
    z-index: 1000;
    text-align: center;
    margin-top: -250px;
    padding-bottom: 0;
}

.cta-title {
    font-size: clamp(1.44rem, 4.8vw, 2.64rem);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 120px;
    padding: 0 15px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    font-size: clamp(0.96rem, 2.4vw, 1.2rem);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: var(--transition-fast);
    box-shadow: 
        0 15px 50px rgba(155, 89, 182, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button svg {
    width: 22px;
    height: 22px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 60px rgba(155, 89, 182, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.footer {
    background: var(--color-darker);
    padding: 45px 0;
    border-top: 1px solid rgba(155, 89, 182, 0.1);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

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

.footer-logo-img {
    width: 200px;
    height: auto;
    max-width: 100%;
}

.footer-logo span {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-gold);
    letter-spacing: 0.12em;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-align: center;
}

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

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

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .phone-orbit-composition {
        height: 500px;
    }
    
    .orbit-ring {
        width: clamp(300px, 65vw, 500px);
        height: clamp(300px, 65vw, 500px);
    }
    
    .orbit-coin {
        width: clamp(45px, 9vw, 70px);
        height: clamp(45px, 9vw, 70px);
    }
}

@media (max-width: 991px) {
    :root {
        --spacing-section: 80px;
        --spacing-container: 25px;
    }
    
    .container {
        max-width: 720px;
    }
    
    .hero-section {
        min-height: auto;
    }
    
    .animated-chart-container {
        top: 80px;
        height: 65%;
    }
    
    .vsl-wrapper {
        max-width: 520px;
        border-radius: 12px;
    }
    
    .hero-content {
        padding: 45px 20px 25px;
    }
    
    .vsl-container {
        padding: 20px 20px 45px;
    }
    
    .videos-grid {
        gap: 20px;
        max-width: 600px;
    }
    
    .quantum-logo-img {
        width: clamp(240px, 45vw, 450px);
    }
    
    .quantum-atom-gif {
        width: clamp(250px, 45vw, 500px);
    }
    
    .quantum-lines-bg {
        max-width: 1200px;
    }
    
    .portal-background {
        width: 180%;
    }
    
    .flow-image {
        width: 95%;
        max-width: 100%;
    }
    
    .phone-orbit-composition {
        height: 65vh;
        min-height: 400px;
        max-height: 520px;
    }
    
    .orbit-phone-img {
        width: clamp(216px, 60vw, 336px);
    }
    
    .orbit-coin {
        width: clamp(36px, 10vw, 52px);
        height: clamp(36px, 10vw, 52px);
        margin: calc(clamp(36px, 10vw, 52px) / -2) 0 0 calc(clamp(36px, 10vw, 52px) / -2);
    }
    
    .cta-background {
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }
    
    :root {
        --spacing-section: 70px;
        --spacing-container: 20px;
    }
    
    .container {
        max-width: 100%;
    }
    
    .hero-content {
        padding: 40px 15px 22px;
    }
    
    .animated-chart-container {
        top: 70px;
        height: 60%;
    }
    
    .vsl-container {
        padding: 18px 15px 40px;
    }
    
    .vsl-wrapper {
        max-width: 90%;
        border-radius: 10px;
    }
    
    .quantum-logo-fixed {
        padding: 40px 15px 15px;
    }
    
    .quantum-logo-img {
        width: clamp(200px, 55vw, 350px);
    }
    
    .quantum-atom-gif {
        width: clamp(220px, 55vw, 400px);
    }
    
    .quantum-lines-bg {
        max-width: 180%;
    }
    
    .quantum-text-section {
        padding: 40px 15px 60px;
    }
    
    .flow-image {
        width: 100%;
        max-width: 100%;
    }
    
    .pagamentos-orbit-section {
        padding: 30px 0 45px;
        margin-top: -15px;
    }
    
    .phone-orbit-composition {
        height: 60vh;
        min-height: 380px;
        max-height: 480px;
    }
    
    .orbit-phone-img {
        width: clamp(204px, 62vw, 312px);
    }
    
    .orbit-coin {
        width: clamp(34px, 11vw, 48px);
        height: clamp(34px, 11vw, 48px);
        margin: calc(clamp(34px, 11vw, 48px) / -2) 0 0 calc(clamp(34px, 11vw, 48px) / -2);
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 18px;
    }
    
    .video-card {
        border-radius: 8px;
    }
    
    .tech-glow {
        width: min(500px, 130vw);
        height: min(500px, 130vw);
    }
    
    .cta-content {
        margin-top: -200px;
    }
    
    .cta-title {
        margin-bottom: 100px;
    }
    
    .cta-button {
        padding: 12px 28px;
        gap: 8px;
        font-size: 0.85rem;
    }
    
    .cta-button svg {
        width: 18px;
        height: 18px;
    }
    
    .cta-section {
        padding: 0 0 50px;
    }
    
    .cta-background {
        max-width: 100%;
    }
    
    .footer {
        padding: 35px 0;
    }
    
    .footer-logo-img {
        width: 180px;
    }
    
    .footer-logo span {
        font-size: 1.2rem;
    }
    
    .portal-background {
        width: 220%;
    }
}

@media (max-width: 575px) {
    html {
        font-size: 14px;
    }
    
    :root {
        --spacing-section: 60px;
        --spacing-container: 16px;
    }
    
    .animated-chart-container {
        top: 60px;
        height: 55%;
    }
    
    .hero-content {
        padding: 35px 12px 18px;
    }
    
    .hero-title {
        padding: 0 5px;
        font-size: clamp(1rem, 4vw, 1.3rem);
    }
    
    .hero-subtitle {
        padding: 0 5px;
        font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    }
    
    .vsl-container {
        padding: 15px 12px 35px;
    }
    
    .quantum-logo-fixed {
        padding: 30px 10px 10px;
    }
    
    .quantum-logo-img {
        width: clamp(180px, 60vw, 280px);
    }
    
    .quantum-atom-gif {
        width: clamp(200px, 60vw, 350px);
    }
    
    .quantum-lines-bg {
        max-width: 220%;
    }
    
    .quantum-text-section {
        padding: 30px 12px 50px;
    }
    
    .quantum-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }
    
    .pagamentos-orbit-section {
        padding: 25px 0 40px;
        margin-top: -10px;
    }
    
    .phone-orbit-composition {
        height: 55vh;
        min-height: 340px;
        max-height: 420px;
    }
    
    .orbit-phone-img {
        width: clamp(192px, 66vw, 276px);
    }
    
    .orbit-coin {
        width: clamp(32px, 12vw, 44px);
        height: clamp(32px, 12vw, 44px);
        margin: calc(clamp(32px, 12vw, 44px) / -2) 0 0 calc(clamp(32px, 12vw, 44px) / -2);
    }
    
    .flow-image {
        width: 100%;
        max-width: 100%;
    }
    
    .section-text,
    .quantum-text,
    .monitor-text,
    .tech-description {
        padding: 0 8px;
    }
    
    .cta-button {
        padding: 15px 28px;
        font-size: 0.85rem;
        letter-spacing: 0.06em;
    }
    
    .cta-title {
        padding: 0 10px;
    }
    
    .videos-grid {
        max-width: 320px;
    }
    
    .portal-background {
        width: 260%;
    }
    
    .tech-glow {
        width: min(400px, 120vw);
        height: min(400px, 120vw);
    }
}

@media (max-width: 479px) {
    html {
        font-size: 13px;
    }
    
    :root {
        --spacing-section: 50px;
        --spacing-container: 14px;
    }
    
    .animated-chart-container {
        top: 50px;
        height: 50%;
    }
    
    .hero-content {
        padding: 30px 10px 15px;
    }
    
    .hero-title {
        font-size: clamp(0.95rem, 4.5vw, 1.2rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3.2vw, 1rem);
    }
    
    .vsl-container {
        padding: 12px 10px 30px;
    }
    
    .vsl-wrapper {
        border-radius: 10px;
    }
    
    .quantum-logo-fixed {
        padding: 25px 8px 8px;
    }
    
    .quantum-logo-img {
        width: clamp(160px, 65vw, 240px);
    }
    
    .quantum-atom-gif {
        width: clamp(180px, 70vw, 300px);
    }
    
    .quantum-lines-bg {
        max-width: 260%;
    }
    
    .quantum-text-section {
        padding: 25px 10px 40px;
    }
    
    .pagamentos-orbit-section {
        padding: 20px 0 30px;
        margin-top: -10px;
    }
    
    .phone-orbit-composition {
        height: 50vh;
        min-height: 320px;
        max-height: 380px;
    }
    
    .orbit-phone-img {
        width: clamp(180px, 70vw, 252px);
    }
    
    .orbit-coin {
        width: clamp(28px, 13vw, 40px);
        height: clamp(28px, 13vw, 40px);
        margin: calc(clamp(28px, 13vw, 40px) / -2) 0 0 calc(clamp(28px, 13vw, 40px) / -2);
    }
    
    .cta-content {
        margin-top: -180px;
    }
    
    .cta-title {
        margin-bottom: 90px;
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 11px 22px;
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .cta-button svg {
        width: 16px;
        height: 16px;
    }
    
    .cta-section {
        padding: 0 0 40px;
    }
    
    .videos-grid {
        max-width: 280px;
        gap: 15px;
    }
    
    .portal-background {
        width: 300%;
    }
    
    .tech-glow {
        width: min(320px, 110vw);
        height: min(320px, 110vw);
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-logo-img {
        width: 160px;
    }
    
    .footer-logo span {
        font-size: 1.1rem;
        letter-spacing: 0.08em;
    }
    
    .footer-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 12px;
    }
    
    :root {
        --spacing-section: 45px;
        --spacing-container: 12px;
    }
    
    .animated-chart-container {
        top: 45px;
        height: 45%;
    }
    
    .hero-content {
        padding: 25px 8px 12px;
    }
    
    .hero-title {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
    }
    
    .vsl-container {
        padding: 10px 8px 25px;
    }
    
    .pagamentos-orbit-section {
        padding: 15px 0 25px;
    }
    
    .phone-orbit-composition {
        height: 48vh;
        min-height: 300px;
        max-height: 360px;
    }
    
    .orbit-phone-img {
        width: clamp(168px, 72vw, 228px);
    }
    
    .orbit-coin {
        width: clamp(26px, 14vw, 36px);
        height: clamp(26px, 14vw, 36px);
        margin: calc(clamp(26px, 14vw, 36px) / -2) 0 0 calc(clamp(26px, 14vw, 36px) / -2);
    }
    
    .videos-grid {
        max-width: 250px;
    }
    
    .cta-content {
        margin-top: -150px;
    }
    
    .cta-title {
        margin-bottom: 80px;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 18px;
        font-size: 0.7rem;
        gap: 5px;
    }
    
    .cta-button svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding-bottom: 30px;
    }
    
    :root {
        --spacing-section: 50px;
    }
    
    .animated-chart-container {
        top: 50px;
        height: 65%;
    }
    
    .vsl-wrapper {
        max-width: 45%;
    }
    
    .hero-content {
        padding: 20px 20px 15px;
    }
    
    .hero-title {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .vsl-container {
        padding: 10px 20px 20px;
    }
}

.cta-pricing-wrapper {
    max-width: 580px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-pricing-wrapper.hidden {
    display: none !important;
}

.cta-pricing-wrapper.cta-visible {
    display: flex !important;
    animation: ctaFadeIn 0.8s ease forwards;
}

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

.cta-price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.cta-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.price-old {
    font-size: clamp(1.08rem, 2.64vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.price-new {
    font-size: clamp(1.2rem, 3vw, 1.38rem);
    color: #E0E0E0;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.price-new strong {
    font-size: clamp(1.56rem, 4.2vw, 1.92rem);
    font-weight: 800;
    color: #C9A0FF;
    text-shadow: 
        0 0 25px rgba(183, 148, 246, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.4);
}

.price-installment {
    font-size: clamp(1.02rem, 2.4vw, 1.14rem);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.price-installment strong {
    color: #C9A0FF;
    font-weight: 700;
}

.cta-button-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    padding: 16px 28px;
    background: linear-gradient(135deg, #9B59B6 0%, #7C3AED 50%, #6D28D9 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(155, 89, 182, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(155, 89, 182, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 
            0 12px 35px rgba(155, 89, 182, 0.55),
            0 6px 18px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

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

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

.cta-button-pricing:hover {
    animation: none;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(155, 89, 182, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta-button-pricing:active {
    transform: translateY(-2px) scale(1.01);
}

.cta-headline {
    font-size: clamp(0.9rem, 2.8vw, 1.2rem);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.cta-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.cta-icon-box svg {
    width: 18px;
    height: 18px;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.cta-button-pricing:hover .cta-icon-box {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.cta-button-pricing:hover .cta-icon-box svg {
    transform: translateX(3px);
}

@media (max-width: 600px) {
    .cta-pricing-wrapper {
        width: 100%;
        gap: 12px;
    }
    
    .cta-button-pricing {
        padding: 14px 22px;
        gap: 10px;
    }
    
    .cta-icon-box {
        width: 28px;
        height: 28px;
    }
    
    .cta-icon-box svg {
        width: 16px;
        height: 16px;
    }
    
    .cta-price-row {
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .cta-pricing-wrapper {
        width: 100%;
    }
    
    .cta-button-pricing {
        padding: 12px 18px;
        gap: 8px;
    }
    
    .cta-headline {
        font-size: clamp(1.05rem, 3.5vw, 1.25rem);
        letter-spacing: 0.02em;
    }
    
    .cta-icon-box {
        width: 26px;
        height: 26px;
    }
    
    .cta-icon-box svg {
        width: 14px;
        height: 14px;
    }
}

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

.text-white {
    color: var(--color-white);
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.loaded .hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

body.loaded .section-tag,
body.loaded .section-title {
    animation: fadeInUp 0.8s ease forwards;
}

@supports (-webkit-touch-callout: none) {
    .hero-section {
        min-height: -webkit-fill-available;
    }
}

.telegram-cta-box {
    width: 100%;
    max-width: 580px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(155, 89, 182, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.telegram-main-button {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.telegram-button-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #9B59B6 0%, #7C3AED 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: clamp(1.2rem, 3vw, 1.38rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(155, 89, 182, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    text-decoration: none;
    position: relative;
    overflow: visible;
    z-index: 1000;
    pointer-events: auto;
}

.telegram-button-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #B794F6 0%, #9B59B6 100%);
    box-shadow: 0 12px 32px rgba(155, 89, 182, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.telegram-button-primary:active {
    transform: translateY(-1px);
}

.telegram-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 136, 204, 0.2);
    border: 1px solid rgba(0, 136, 204, 0.5);
    border-radius: 50%;
    color: #0088cc;
    font-weight: 700;
    flex-shrink: 0;
}

.telegram-cta-text {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(155, 89, 182, 0.2);
}

@media (max-width: 480px) {
    .telegram-cta-box {
        padding: 28px 20px;
        gap: 20px;
    }
    
    .telegram-button-primary {
        padding: 16px 20px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
}

