:root {
    --primary-color: #051021;
    --primary-light: #0d213f;
    --secondary-color: #d4af37;
    --secondary-glow: rgba(212, 175, 55, 0.3);
    --text-light: #f0f6fc;
    --text-dim: #8b949e;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    /* Reduced slightly for mobile default */
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dim);
    background-color: var(--primary-color);
    line-height: 1.6;
    /* Tighter line height for mobile */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    /* Base size */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 92%;
    /* Wider on mobile */
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Ambient Background & Particles */
.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% -20%, #1a365d 0%, transparent 70%),
        radial-gradient(circle at 100% 60%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* Refined Buttons */
.cta-button {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    padding: 1rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--secondary-color);
    border-radius: 2px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.8rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    width: 100%;
    /* Full width on mobile */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-button:hover {
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.cta-button.big-cta {
    width: 100%;
    max-width: 100%;
    /* Full width mobile */
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
    background: rgba(212, 175, 55, 0.1);
}

/* Animations */
@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.pulse-gold {
    animation: pulse-soft 3s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* Fade Up Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    /* Reduced movement for mobile */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    /* Reduced padding */
    text-align: center;
    position: relative;
}

.urgency-text {
    color: var(--secondary-color);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.headline {
    font-size: 2.2rem;
    /* Smaller for mobile */
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    font-weight: 400;
    line-height: 1.2;
}

.subheadline {
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 100%;
    font-weight: 300;
    color: #a0aec0;
    letter-spacing: 0.5px;
    padding: 0 1rem;
}

.hero-3d-container {
    position: relative;
    margin: 0 auto 4rem;
    width: 220px;
    /* Smaller book on mobile */
    perspective: 1000px;
}

.book-3d {
    width: 100%;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.book-cover {
    width: 100%;
    border-radius: 2px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    display: block;
}

/* Reflection Effect */
.book-3d::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
    transform: scaleY(0.5);
    opacity: 0.6;
}

/* Fixed Badge Position - Mobile Optimized */
.premium-badge {
    position: absolute;
    top: -30px;
    right: -20px;
    /* Closer to book on mobile */
    background: rgba(5, 16, 33, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 20;
    animation: float 6s ease-in-out infinite reverse;
    white-space: nowrap;
}

.social-proof-hero {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    color: var(--secondary-color);
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.avatar:first-child {
    margin-left: 0;
}

.social-proof-hero p {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    text-align: center;
}

/* Problem Section */
.problems {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 300;
    padding: 0 1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column mobile */
    gap: 1.5rem;
}

.problem-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.icon-box {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

/* Solution Section */
.solution {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-color) 0%, #061225 100%);
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color));
    opacity: 0.2;
}

.tag {
    color: var(--secondary-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    padding: 0 1rem;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 400;
}

/* Testimonials Carousel */
.testimonials {
    padding: 4rem 0;
    background: #061225;
    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 1rem;
    padding-bottom: 2rem;
}

.testimonial-slide {
    min-width: 90%;
    /* Show part of next slide */
    scroll-snap-align: center;
    background: var(--primary-color);
    padding: 2.5rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-left: 5%;
    /* Center first slide */
}

.testimonial-slide:last-child {
    margin-right: 5%;
}

.stars {
    color: #d4af37;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    font-size: 0.6rem;
    opacity: 0.8;
}

.testimonial-slide p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 300;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.slider-controls button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    ```css text-align: center;
}

/* Problem Section */
.problems {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 300;
    padding: 0 1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column mobile */
    gap: 1.5rem;
}

.problem-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.icon-box {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

/* Solution Section */
.solution {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-color) 0%, #061225 100%);
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color));
    opacity: 0.2;
}

.tag {
    color: var(--secondary-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    padding: 0 1rem;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 400;
}

/* Testimonials Carousel */
.testimonials {
    padding: 4rem 0;
    background: #061225;
    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 1rem;
    padding-bottom: 2rem;
}

.testimonial-slide {
    min-width: 90%;
    /* Show part of next slide */
    scroll-snap-align: center;
    background: var(--primary-color);
    padding: 2.5rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-left: 5%;
    /* Center first slide */
}

.testimonial-slide:last-child {
    margin-right: 5%;
}

.stars {
    color: #d4af37;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    font-size: 0.6rem;
    opacity: 0.8;
}

.testimonial-slide p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 300;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.slider-controls button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simplified Clean Offer Section */
.offer {
    padding: 6rem 0;
    background: linear-gradient(180deg, #061225 0%, #051021 100%);
}

.offer-box-clean {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.offer-tag {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.offer-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.offer-subtitle-clean {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.offer-visual {
    margin: 3rem 0;
}

.offer-book {
    max-width: 200px;
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.2));
    animation: float 6s ease-in-out infinite;
}

.offer-features-clean {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 24px;
    opacity: 0.8;
}

.feature-item span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
}

.offer-value {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 3rem 0 2rem;
    opacity: 0.9;
}

.cta-button-main {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: var(--secondary-color);
    padding: 1.2rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.cta-button-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.cta-button-main:hover::before {
    left: 100%;
}

.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: #f3d878;
    color: #f3d878;
}

.cta-button-main:active {
    transform: translateY(-1px);
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    padding: 2rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.faq-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(to top, #02060d 0%, var(--primary-color) 100%);
}

.final-cta h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 400;
}

.micro-copy {
    margin-top: 1.5rem;
    font-size: 0.7rem;
    opacity: 0.5;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 1rem;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    font-size: 0.7rem;
    border-top: 1px solid var(--glass-border);
    color: #4a5568;
    letter-spacing: 0.5px;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    margin: 0;
    text-decoration: none;
    opacity: 0.6;
}

/* Desktop Media Query - Overrides for larger screens */
@media (min-width: 768px) {
    :root {
        --spacing-lg: 8rem;
    }

    .container {
        width: 88%;
        padding: 0 var(--spacing-sm);
    }

    .cta-button {
        width: auto;
        display: inline-block;
    }

    .cta-button.big-cta {
        width: 100%;
        max-width: 400px;
    }

    .hero {
        padding: 10rem 0 8rem;
    }

    .headline {
        font-size: 4.5rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .hero-3d-container {
        width: 340px;
    }

    .premium-badge {
        right: -80px;
        top: -20px;
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-slide {
        min-width: 100%;
        margin-left: 0;
    }

    .testimonial-slide:last-child {
        margin-right: 0;
    }

    .offer-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5rem 3rem;
    }

    .offer-features {
        min-width: 450px;
        width: auto;
        display: inline-block;
    }

    .guarantee-badge {
        flex-direction: row;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
    }
}

/* WhatsApp Social Proof Carousel */
.whatsapp-proof {
    padding: 6rem 0;
    background: linear-gradient(180deg, #061225 0%, var(--primary-color) 100%);
}

.whatsapp-carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.whatsapp-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.whatsapp-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.whatsapp-slide.active {
    display: block;
}

.whatsapp-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.whatsapp-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.whatsapp-prev,
.whatsapp-next {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--secondary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.whatsapp-prev:hover,
.whatsapp-next:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.whatsapp-dots {
    display: flex;
    gap: 0.5rem;
}

.whatsapp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}