/* ============================================
   MODELAGEM PRO — Sales Page
   ============================================ */

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

:root {
    --cyan: #00D4FF;
    --cyan-dark: #00A8CC;
    --cyan-glow: rgba(0, 212, 255, 0.3);
    --cyan-soft: rgba(0, 212, 255, 0.08);
    --red-accent: #FF3355;
    --red-glow: rgba(255, 51, 85, 0.2);
    --dark: #060D1A;
    --dark-2: #0A1628;
    --dark-3: #0F1D32;
    --dark-4: #142640;
    --dark-5: #1A304D;
    --gray: #6B7FA0;
    --gray-light: #9BB0CC;
    --white: #FFFFFF;
    --green: #00CC66;
    --neon-border: rgba(0, 212, 255, 0.25);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--dark-2) 0%, var(--dark-4) 50%, var(--dark-2) 100%);
    border-bottom: 1px solid var(--neon-border);
    color: var(--white);
    text-align: center;
    padding: 12px 24px;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar p {
    margin: 0;
}

.top-bar strong {
    color: var(--cyan);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: var(--cyan-soft);
    color: var(--cyan);
    border: 1px solid var(--neon-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.highlight {
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.hero-tagline {
    font-size: clamp(17px, 2.5vw, 22px);
    color: var(--gray-light);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hero-tagline strong {
    color: var(--white);
}

.hero-video {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--neon-border);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
    z-index: 1;
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.icon-svg {
    width: 28px;
    height: 28px;
    color: var(--cyan);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.hero-icon-item span {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.p1 { width: 3px; height: 3px; background: var(--cyan); top: 20%; left: 15%; animation-delay: 0s; }
.p2 { width: 2px; height: 2px; background: var(--red-accent); top: 40%; right: 20%; animation-delay: 1s; }
.p3 { width: 4px; height: 4px; background: var(--cyan); bottom: 30%; left: 25%; animation-delay: 2s; }
.p4 { width: 2px; height: 2px; background: var(--red-accent); top: 15%; right: 30%; animation-delay: 3s; }
.p5 { width: 3px; height: 3px; background: var(--cyan); bottom: 20%; right: 15%; animation-delay: 4s; }
.p6 { width: 2px; height: 2px; background: var(--cyan); top: 60%; left: 10%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.3); opacity: 1; }
}

/* ============================================
   HONESTY SECTION
   ============================================ */
.honesty-section {
    padding: 80px 0;
    background: var(--dark);
}

.honesty-section h2 {
    text-align: center;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 40px;
}

.honesty-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.honesty-lead {
    font-size: 19px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.honesty-zeros {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.honesty-zeros span {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
}

.honesty-punchline {
    font-size: 24px;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* ============================================
   COMPARE SECTION
   ============================================ */
.compare-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.compare-section h2 {
    text-align: center;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 40px;
}

.vs {
    color: var(--gray);
    font-weight: 400;
    font-size: 0.7em;
}

.compare-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.compare-card {
    background: var(--dark-3);
    border-radius: 16px;
    padding: 40px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.compare-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.compare-card p {
    font-size: 15px;
    color: var(--gray-light);
}

.compare-card.wrong {
    border: 2px solid rgba(255, 51, 85, 0.3);
}

.compare-card.wrong h3 {
    color: var(--red-accent);
}

.compare-card.right {
    border: 2px solid var(--neon-border);
}

.compare-card.right h3 {
    color: var(--cyan);
}

.compare-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 60px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.4;
}

.compare-glow.red { background: var(--red-accent); }
.compare-glow.cyan { background: var(--cyan); }

.compare-arrow svg {
    width: 32px;
    height: 32px;
    color: var(--gray);
}

.compare-bottom {
    text-align: center;
    font-size: 17px;
    color: var(--gray-light);
}

.compare-bottom strong {
    color: var(--white);
}

/* ============================================
   EQUATION SECTION
   ============================================ */
.equation-section {
    padding: 80px 0;
    background: var(--dark);
}

.equation-section h2 {
    text-align: center;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 8px;
}

.equation-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 40px;
    font-weight: 600;
}

.equation-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.flow-box {
    background: var(--dark-3);
    border: 1px solid var(--neon-border);
    border-radius: 12px;
    padding: 20px 28px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.06);
    min-width: 170px;
}

.flow-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--cyan);
}

.equation-closing {
    text-align: center;
    font-size: 17px;
    color: var(--gray);
    font-style: italic;
}

/* ============================================
   WANTS SECTION
   ============================================ */
.wants-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.wants-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 650px;
    margin: 0 auto;
}

.wants-col {
    flex: 1;
    text-align: center;
    padding: 32px;
}

.wants-col h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
}

.wants-col.wrong h3 { color: var(--red-accent); }
.wants-col.right h3 { color: var(--cyan); text-shadow: 0 0 15px rgba(0, 212, 255, 0.3); }

.wants-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wants-col.wrong ul li {
    font-size: 17px;
    color: rgba(255, 51, 85, 0.7);
    font-weight: 500;
}

.wants-col.right ul li {
    font-size: 17px;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.15);
}

.wants-divider {
    width: 2px;
    min-height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--cyan) 50%, transparent 100%);
    flex-shrink: 0;
    align-self: stretch;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* ============================================
   STEPS SECTION
   ============================================ */
.steps-section {
    padding: 80px 0;
    background: var(--dark);
}

.steps-section h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--neon-border);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.08);
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--cyan);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
}

/* ============================================
   COMBO SECTION
   ============================================ */
.combo-section {
    padding: 80px 0;
    background: var(--dark);
}

.combo-section h2 {
    text-align: center;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    margin-bottom: 8px;
}

.combo-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.step-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin-top: 8px;
}

/* ============================================
   MODULES SECTION
   ============================================ */
.modules-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.modules-section h2 {
    text-align: center;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 40px;
}

.module-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--neon-border);
}

.module-card.featured {
    border-color: var(--neon-border);
    background: linear-gradient(135deg, var(--cyan-soft) 0%, var(--dark-3) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.06);
}

.module-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    background: var(--dark-4);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.module-tag.featured-tag {
    color: var(--cyan);
    background: var(--cyan-soft);
    border: 1px solid var(--neon-border);
}

.module-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.module-subtitle {
    color: var(--cyan);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.module-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.module-list span {
    background: var(--dark-4);
    border: 1px solid var(--dark-5);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--gray-light);
}

.module-desc {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 4px;
}

.module-footnote {
    font-size: 14px;
    color: var(--gray);
    margin-top: 12px;
    font-style: italic;
}

.agents-list-inline {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.agent-item {
    background: var(--dark-4);
    border: 1px solid var(--neon-border);
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
}

/* ============================================
   BONUS SECTION
   ============================================ */
.bonus-section {
    padding: 80px 0;
    background: var(--dark);
}

.bonus-section h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 40px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 850px;
    margin: 0 auto;
}

.bonus-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--neon-border);
}

.bonus-card.highlight-card {
    border-color: var(--neon-border);
    background: linear-gradient(135deg, var(--cyan-soft) 0%, var(--dark-3) 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.06);
}

.bonus-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.bonus-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.bonus-card p {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.5;
}

.bonus-card p strong {
    color: var(--white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--dark);
}

.about-section h2 {
    text-align: center;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 40px;
}

.about-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.about-photo img {
    width: 200px;
    border-radius: 16px;
    border: 2px solid var(--neon-border);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.about-instagram {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--cyan-soft);
    border: 1px solid var(--neon-border);
    transition: all 0.3s ease;
}

.about-instagram:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

.about-instagram svg {
    width: 18px;
    height: 18px;
    color: var(--cyan);
}

.about-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-lead {
    font-size: 16px;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 12px;
}

.about-content p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.about-content p strong {
    color: var(--white);
}

.about-stats {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.about-stat {
    background: var(--dark-3);
    border: 1px solid var(--neon-border);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    flex: 1;
}

.about-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--cyan);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    margin-bottom: 4px;
}

.about-stat span {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .about-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-stat {
        flex: none;
        min-width: 90px;
    }
}

/* ============================================
   FILTER SECTION
   ============================================ */
.filter-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.filter-section h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 40px;
}

.filter-list {
    max-width: 500px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-item {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 600;
}

.filter-check {
    color: var(--cyan);
    font-size: 22px;
}

.filter-closing {
    text-align: center;
    font-size: 20px;
    color: var(--gray-light);
}

.filter-closing strong {
    color: var(--cyan);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* ============================================
   ESCALATION SECTION
   ============================================ */
.escalation-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.escalation-section h2 {
    text-align: center;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 40px;
}

.escalation-list {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.escalation-item {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.escalation-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    width: 100%;
}

.escalation-detail {
    font-size: 14px;
    color: var(--gray);
}

.escalation-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--gray);
    text-decoration: line-through;
    text-decoration-color: var(--red-accent);
}

.escalation-reveal {
    text-align: center;
    margin-bottom: 40px;
}

.escalation-but {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 16px;
    font-weight: 500;
}

.escalation-final-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.escalation-currency {
    font-size: 32px;
    font-weight: 800;
    color: var(--cyan);
}

.escalation-value {
    font-size: 72px;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.escalation-once {
    font-size: 15px;
    color: var(--gray-light);
    max-width: 480px;
    margin: 8px auto 0;
    line-height: 1.5;
}

.escalation-why {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-3);
    border: 1px solid var(--neon-border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.06);
}

.escalation-why h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 16px;
}

.escalation-why p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.escalation-why p:last-child {
    margin-bottom: 0;
}

.escalation-why p strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .escalation-value {
        font-size: 48px;
    }

    .escalation-why {
        padding: 24px 20px;
    }
}

/* ============================================
   OFFER SECTION
   ============================================ */
.offer-section {
    padding: 80px 0;
    background: var(--dark);
}

.offer-section h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 40px;
}

.offer-box {
    max-width: 550px;
    margin: 0 auto;
    background: var(--dark-2);
    border: 2px solid var(--cyan);
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.12);
}

.offer-includes {
    margin-bottom: 32px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--dark-4);
}

.offer-item:last-child {
    border-bottom: none;
}

.offer-item span:first-child {
    color: var(--cyan);
    font-size: 18px;
    flex-shrink: 0;
}

.offer-price {
    margin-bottom: 28px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.price-value {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.price-type {
    display: block;
    font-size: 14px;
    color: var(--gray-light);
    margin-top: 8px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Button */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: var(--dark);
    box-shadow: 0 4px 20px var(--cyan-glow);
    width: 100%;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #33DDFF 0%, var(--cyan) 100%);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 17px;
}

.pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px var(--cyan-glow); }
    50% { box-shadow: 0 4px 40px rgba(0, 212, 255, 0.5); }
    100% { box-shadow: 0 4px 20px var(--cyan-glow); }
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    color: var(--gray);
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
    padding: 60px 0;
    background: var(--dark);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-3);
    border: 1px solid var(--neon-border);
    border-radius: 16px;
    padding: 32px;
}

.guarantee-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.guarantee-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.guarantee-box p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.guarantee-box p strong {
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    text-align: center;
    background: var(--dark-2);
    border-top: 1px solid var(--dark-5);
}

.footer-brand {
    font-size: 16px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.footer p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 6px;
}

.footer-disclaimer {
    max-width: 500px;
    margin: 12px auto 0 !important;
    font-size: 11px !important;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero { padding: 60px 0 50px; }

    .compare-grid {
        flex-direction: column;
        gap: 16px;
    }

    .compare-card {
        min-width: auto;
        width: 100%;
        padding: 28px 32px;
    }

    .compare-arrow svg {
        transform: rotate(90deg);
    }

    .equation-flow {
        flex-direction: column;
        gap: 12px;
    }

    .flow-arrow svg {
        transform: rotate(90deg);
    }

    .flow-box {
        min-width: auto;
        width: 100%;
    }

    .wants-grid {
        flex-direction: column;
        align-items: center;
    }

    .wants-divider {
        width: 80%;
        min-height: 2px;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .agents-list-inline {
        flex-direction: column;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .offer-box {
        padding: 36px 20px;
    }

    .price-value {
        font-size: 44px;
    }

    .payment-methods {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ============================================
   CAROUSEL — MÓDULOS
   ============================================ */
.carousel-section {
    padding: 80px 0 60px;
    overflow: hidden;
}

.carousel-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: carouselScroll 35s linear infinite;
}

.carousel-track img {
    height: 280px;
    width: auto;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 212, 255, 0.1);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 212, 255, 0.25);
}

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

.carousel-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .carousel-track img {
        height: 200px;
    }
    .carousel-track {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .carousel-track img {
        height: 160px;
    }
    .carousel-section {
        padding: 60px 0 40px;
    }
}

/* ============================================
   FLOATING INSTAGRAM BUTTON
   ============================================ */
.floating-ig {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.45), 0 0 30px rgba(253, 29, 29, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatBounce 3s ease-in-out infinite;
}

.floating-ig:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(131, 58, 180, 0.6), 0 0 40px rgba(253, 29, 29, 0.35);
}

.floating-ig svg {
    flex-shrink: 0;
}

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

.floating-ig:hover {
    animation: none;
    transform: scale(1.08);
}

@media (max-width: 480px) {
    .floating-ig {
        bottom: 18px;
        right: 18px;
        padding: 12px 18px;
        font-size: 13px;
    }
}
