:root {
    --bg-dark: #f8fafc;
    --bg-darker: #ffffff;
    --neon-green: #1e3a8a;
    --neon-green-glow: rgba(30, 58, 138, 0.2);
    --gold: #0f172a;
    --gold-glow: rgba(15, 23, 42, 0.1);
    --text-main: #0f172a;
    --text-muted: #475569;
    
    --glass-bg: #ffffff;
    --glass-border: #e2e8f0;
    --bg-dots: rgba(30, 58, 138, 0.18);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f1f5f9;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 36px;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Utilities */
.highlight-neon {
    color: var(--neon-green);
}

.highlight-gold {
    color: var(--neon-green);
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.neon-border {
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.neon-glow {
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.neon-glow-heavy {
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.4);
    border: 1px solid var(--neon-green);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.benefit-list-quick {
    list-style: none;
    margin-bottom: 40px;
}

.benefit-list-quick li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.neon-icon {
    color: var(--neon-green);
    font-size: 1.5rem;
}

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

.huge-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.pricing-box {
    text-align: center;
    padding: 25px;
}

.pricing-box .price {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.old-price {
    color: #ff4d4d;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.new-price {
    font-size: 1.5rem;
    color: var(--text-main);
}

.new-price strong {
    font-size: 2.5rem;
    color: #16a34a;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(90deg, #16a34a, #15803d);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.3);
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(22, 163, 74, 0.4);
    color: #ffffff;
}

.pulse-effect {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 0 15px rgba(22, 163, 74, 0); transform: scale(1.02); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); transform: scale(1); }
}

.secure-checkout {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.5));
}

.hero-image video {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.mockup-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 4rem;
}
.mockup-placeholder span {
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
    font-family: var(--font-heading);
}

/* Sections */
section {
    padding: 80px 0;
}

/* Problem Solution */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.problem-icon {
    font-size: 3rem;
    color: #ff4d4d;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.solution-banner {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f0fdf4;
}

.solution-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--neon-green);
    margin-bottom: 10px;
}

/* Detailed Benefits */
.detailed-benefits {
    background-color: var(--bg-darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    font-size: 2rem;
    color: var(--neon-green);
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.gold-glow {
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.1);
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* How It Works */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-card {
    text-align: center;
    position: relative;
    padding-top: 50px;
    border: 1px solid rgba(30, 58, 138, 0.3) !important;
    box-shadow: 0 0 20px rgba(30, 58, 138, 0.15) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.3) !important;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--neon-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.3);
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--neon-green);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Bonuses */
.bonuses {
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" /><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)" /></svg>');
}

.bonus-wrapper {
    padding: 60px 40px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.bonus-item h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.bonus-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Updates Notice */
.updates-notice {
    padding: 30px 0;
}
.alert-banner {
    background: rgba(57, 255, 20, 0.1);
    border: 1px dashed var(--neon-green);
    color: var(--neon-green);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Testimonials */
/* Testimonials Carousel */
.testimonial-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.whatsapp-print {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: center;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-print img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Proteção contra cópias/downloads casuais */
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

@media (min-width: 600px) {
    .whatsapp-print {
        width: 320px;
    }
}

/* Final CTA */
.final-cta .pricing-box.large {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 50px 30px;
}

.final-cta .old-price { font-size: 1.3rem; }
.final-cta .new-price { font-size: 2rem; }
.final-cta .new-price strong { font-size: 3.5rem; }

.cta-button.large {
    font-size: 1.4rem;
    padding: 22px 40px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.secure-badges .badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover, .faq-item.active .faq-question {
    color: var(--neon-green);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px; /* arbitrary large value for transition */
}

.faq-answer p {
    color: var(--text-muted);
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-green);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0 25px;
}

.copyright {
    color: #666;
    font-size: 0.85rem;
}

/* Responsive */
/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility for mobile video logic */
.video-mobile-only { display: none !important; }

@media (max-width: 900px) {
    .video-mobile-only {
        display: flex !important;
    }
    .desktop-only {
        display: none !important;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 400px;
    }

    .benefit-list-quick {
        display: inline-block;
        text-align: left;
    }
    
    .solution-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .headline {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta .new-price strong {
        font-size: 2.8rem;
    }
    
    .secure-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: var(--bg-darker);
    max-width: 600px;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
    text-align: left;
}
.modal-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.modal-content p strong {
    color: var(--text-main);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover {
    color: var(--text-main);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 999;
    transition: bottom 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    max-width: 320px;
    border-left: 4px solid #16a34a;
}
.sales-notification.show {
    bottom: 20px;
    opacity: 1;
}
.notification-icon {
    font-size: 24px;
    background: rgba(22, 163, 74, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.notification-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.3;
}
.notification-content small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .sales-notification {
        left: 15px;
        width: calc(100% - 95px);
        padding: 12px;
    }
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
    .sales-notification.show {
        bottom: 15px;
    }
}

/* Comparison Boxes */
.comparison-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.comp-box {
    padding: 25px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.bad-box {
    background: #fff5f5;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.good-box {
    background: #f0fdf4;
    border: 1px solid rgba(22, 163, 74, 0.3);
    box-shadow: 0 0 20px rgba(22, 163, 74, 0.1);
}

.comp-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.bad-box .comp-title {
    color: #ef4444;
}

.good-box .comp-title {
    color: #16a34a;
}

.comp-list {
    list-style: none;
    text-align: left;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.comp-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bad-box .comp-list li i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 2px;
}

.good-box .comp-list li i {
    color: #16a34a;
    font-size: 1.2rem;
    margin-top: 2px;
}

.vs-badge {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-muted);
    background: var(--bg-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto;
    position: relative;
    z-index: 10;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

@media (min-width: 901px) {
    .hero .container {
        display: block;
    }
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "head head"
            "img comp"
            "sub comp"
            "price price";
        column-gap: 50px;
        align-items: start;
    }
    .headline { grid-area: head; text-align: center; max-width: 900px; margin: 0 auto 40px; }
    .hero-image-wrapper { grid-area: img; margin-bottom: 25px; }
    .sub-headline { grid-area: sub; text-align: left; margin-bottom: 30px; }
    .comparison-boxes { grid-area: comp; align-self: center; margin-bottom: 0; }
    .pricing-box { grid-area: price; justify-self: center; width: 100%; max-width: 600px; margin-top: 45px; }
}

/* Sticker Deck Modal / Cards Stack */
.sticker-deck-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 420px;
    margin: 0 auto;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.sticker-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 380px;
    background: transparent;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.08);
    border: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, box-shadow 0.3s ease;
    will-change: transform, opacity;
}

.sticker-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    pointer-events: none;
    -webkit-user-drag: none;
}

/* Stack Positions */
.sticker-card.pos-0 {
    transform: translate(0, 0) rotate(0deg) scale(1);
    z-index: 10;
    opacity: 1;
}

.sticker-card.pos-0:hover {
    transform: translate(0, -6px) rotate(1deg) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.sticker-card.pos-1 {
    transform: translate(-16px, 12px) rotate(-6deg) scale(0.96);
    z-index: 9;
    opacity: 0.95;
}

.sticker-card.pos-2 {
    transform: translate(18px, 18px) rotate(7deg) scale(0.92);
    z-index: 8;
    opacity: 0.9;
}

.sticker-card.pos-3 {
    transform: translate(-26px, 24px) rotate(-12deg) scale(0.88);
    z-index: 7;
    opacity: 0.8;
}

.sticker-card.pos-4,
.sticker-card.pos-5,
.sticker-card.pos-6 {
    transform: translate(0, 30px) rotate(0deg) scale(0.84);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

/* Fly Out Animation */
.sticker-card.fly-out {
    transform: translate(130%, -30px) rotate(25deg) scale(0.95) !important;
    opacity: 0 !important;
    transition: transform 0.35s ease-in, opacity 0.35s ease-in !important;
}

/* Hint Badge */
.deck-hint {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 20;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    animation: bounceHint 2s infinite;
}

@keyframes bounceHint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 600px) {
    .sticker-deck-container {
        max-width: 300px;
        height: 350px;
    }
    .sticker-card {
        height: 310px;
        padding: 0;
    }
}

/* Top Announcement Bar (Marquee Ticker) */
.top-marquee-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background-color: #000000;
    color: #ffffff;
    z-index: 9999;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 22s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 15px;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.marquee-content .dot {
    color: #38bdf8;
    margin: 0 6px;
    opacity: 0.8;
}

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