/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-icon {
    font-size: 24px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.cookie-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
    white-space: nowrap;
}

.cookie-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--green);
    color: #000;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.3);
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-btn {
        width: 100%;
    }
}

:root {
    --bg: #040905; --bg2: #07100A; --panel: #0a130c;
    --green: #00FF7F; --green2: #00cc66; --green3: #007A3D;
    --white: #f0fff5; --text: #d4ead9; --gray: #7faf8a;
    --red: #ff4c4c; --blue: #38bdf8; --gold: #f7c948; --f: 'Outfit', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { scroll-behavior: smooth; overflow-x: hidden; width: 100%; position: relative; }
body { font-family: var(--f); background: radial-gradient(circle at top, rgba(56,189,248,0.08), transparent 25%), radial-gradient(circle at 20% 20%, rgba(0,255,127,0.08), transparent 30%), var(--bg); color: var(--text); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.ui-icon { width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ui-icon svg { width: 100%; height: 100%; fill: currentColor; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* NAVBAR PREMIUM */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 70px; display: flex; align-items: center; padding: 0 clamp(15px, 5vw, 60px); background: rgba(4, 9, 5, 0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(56, 189, 248, 0.12); box-shadow: 0 14px 40px rgba(0,0,0,0.28); transition: 0.3s; }
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo-name { font-size: 22px; font-weight: 900; color: var(--green); letter-spacing: -0.5px; }
.nav-logo-sub { font-size: 9px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; display: block; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 5px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: rgba(212, 234, 217, 0.7); padding: 8px 12px; border-radius: 8px; display: inline-flex; align-items: center; gap: 7px; }
.nav-links a:hover { color: var(--white); background: rgba(0, 255, 127, 0.05); }
.nav-cta { 
    background: linear-gradient(135deg, #00FF7F 0%, #00F0FF 100%) !important;
    color: #000 !important; 
    font-weight: 900 !important; 
    padding: 12px 26px !important; 
    border-radius: 50px !important; 
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.4), 0 0 40px rgba(0, 240, 255, 0.2);
    border: 2px solid rgba(255,255,255,0.4) !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: vibrant-pulse 2s infinite !important;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15), 0 8px 24px rgba(0, 255, 127, 0.3);
    filter: brightness(1.05);
}

@keyframes vibrant-pulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 255, 127, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 35px rgba(0, 255, 127, 0.6), 0 0 50px rgba(0, 240, 255, 0.3); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 255, 127, 0.4); }
}

.nav-outline-btn {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.8;
}
.nav-outline-btn:hover { background: rgba(255,255,255,0.05); border-color: var(--white); opacity: 1; }

.nav-link-icon { width: 14px; height: 14px; display: inline-flex; align-items: center; justify-content: center; opacity: 0.9; }
.nav-link-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* MENU MÓVIL */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1100; position: relative; }
.burger span { display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: 0.3s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mmenu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--bg); z-index: 1050; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding: 20px; }
.mmenu.open { right: 0; }
.mmenu a { font-size: 28px; font-weight: 800; color: var(--white); padding: 12px; width: 100%; text-align: center; }

/* HERO SECTION */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 20px 80px; position: relative; overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(0, 255, 127, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 127, 0.02) 1px, transparent 1px); background-size: 50px 50px; }
.hero::before { content: ""; position: absolute; top: 10%; right: -10%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(56,189,248,0.22), transparent 65%); filter: blur(10px); z-index: 0; }
.hero::after { content: ""; position: absolute; bottom: -120px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(0,255,127,0.18), transparent 68%); z-index: 0; }
.hero-glow { position: absolute; top: 20%; left: 10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(0, 255, 127, 0.07) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.hero-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 30px; position: relative; z-index: 1; text-align: center; }

.h-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, rgba(0,255,127,0.1), rgba(56,189,248,0.12)); border: 1px solid rgba(0, 255, 127, 0.24); color: var(--green); font-size: 11px; font-weight: 800; padding: 8px 16px; border-radius: 100px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; backdrop-filter: blur(8px); box-shadow: 0 12px 30px rgba(0,255,127,0.08); }
.h-title { font-size: clamp(38px, 6vw, 74px); font-weight: 950; color: var(--white); line-height: 1; margin-bottom: 20px; letter-spacing: -3px; }
.h-title span.grad { background: linear-gradient(90deg, var(--green), var(--gold), var(--blue)); background-size: 200% 200%; background-clip: text; -webkit-background-clip: text; -webkit-fill-color: transparent; -webkit-text-fill-color: transparent; animation: shineText 7s ease infinite; }
.h-desc { font-size: clamp(17px, 2.2vw, 22px); color: var(--text); line-height: 1.6; max-width: 850px; margin: 0 auto 30px; }
.h-desc strong { color: var(--green); border-bottom: 1px dashed rgba(0, 255, 127, 0.5); }

.h-btns { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 40px; }
.btn-main { 
    background: #00FF7F;
    background: linear-gradient(180deg, #10ff8a 0%, #00cc66 100%);
    color: #03120a; 
    padding: 22px 48px; 
    border-radius: 14px; 
    font-size: 18px; 
    font-weight: 800; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px; 
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 
        0 1px 1px rgba(0,0,0,0.1),
        0 2px 4px rgba(0,0,0,0.1),
        0 10px 30px rgba(0, 255, 127, 0.25);
    border: 1px solid rgba(255,255,255,0.25); 
    cursor: pointer; 
    position: relative; 
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-main:hover { 
    transform: translateY(-2px); 
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.1),
        0 4px 8px rgba(0,0,0,0.1),
        0 15px 45px rgba(0, 255, 127, 0.35); 
    filter: brightness(1.05);
}
.btn-main:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 255, 127, 0.2);
}
.btn-outline { 
    background: rgba(255,255,255,0.02); 
    color: var(--white); 
    border: 1px solid rgba(255,255,255,0.15); 
    padding: 22px 48px; 
    border-radius: 14px; 
    font-size: 18px; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    transition: 0.2s; 
}
.btn-outline:hover { 
    background: rgba(255,255,255,0.05); 
    border-color: var(--green);
    transform: translateY(-1px);
}
.btn-outline:hover { background: rgba(0, 255, 127, 0.1); border-color: rgba(56,189,248,0.45); transform: translateY(-3px); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: -10px; }
.proof-pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 16px; background: rgba(8, 18, 12, 0.78); border: 1px solid rgba(56,189,248,0.16); color: var(--white); box-shadow: 0 12px 24px rgba(0,0,0,0.2); }
.proof-icon { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: linear-gradient(135deg, rgba(0,255,127,0.16), rgba(56,189,248,0.22)); color: var(--green); }
.proof-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ANIMACIONES COMPONENTES */
.scale-css { width: 100px; height: 80px; position: relative; transition: 0.4s; }
.scale-base { width: 100%; height: 50%; background: #222; border-radius: 4px 4px 10px 10px; position: absolute; bottom: 0; border-bottom: 4px solid #111; }
.scale-tray { width: 110%; height: 10px; background: linear-gradient(to bottom, #888, #555); border-radius: 4px; position: absolute; top: 35%; left: -5%; }
.scale-display { width: 40px; height: 20px; background: #000; border: 1px solid #444; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.scale-light { width: 30px; height: 8px; background: #004400; border-radius: 1px; transition: 0.3s; }
.flow-node.active .scale-light { background: #00ff00; box-shadow: 0 0 10px #00ff00; }

.pc-css { width: 120px; height: 100px; position: relative; transition: 0.4s; z-index: 5; }
.pc-monitor { width: 100%; height: 75%; background: #1a1a1a; border: 4px solid #333; border-radius: 6px; position: relative; overflow: hidden; }
.pc-screen { width: 100%; height: 100%; background: #050505; display: flex; flex-direction: column; padding: 6px; gap: 3px; position: relative; }
.pc-line { width: 0%; height: 3px; background: #333; border-radius: 10px; transition: 0.4s ease; }
.flow-node.active .pc-line { background: #222; width: 60%; }
.pc-weight-val { font-family: monospace; font-size: 14px; color: var(--green); margin-top: 5px; opacity: 0; transition: 0.3s; font-weight: bold; text-align: center; }
.flow-node.active .pc-weight-val { opacity: 1; }
.pc-stand { width: 30px; height: 15px; background: #333; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); }
.pc-base { width: 70px; height: 6px; background: #222; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 10px; }

/* FLUJO DINÁMICO */
.flow-master { width: 100%; max-width: 1000px; display: flex; align-items: center; justify-content: center; margin: 40px auto; position: relative; padding: 20px; gap: 15px; }
.flow-node { display: flex; flex-direction: column; align-items: center; gap: 15px; transition: 0.4s; opacity: 0.2; min-width: 100px; }
.flow-node.active { opacity: 1; transform: scale(1.05); }
.node-label { font-size: 11px; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* APP WIDGET CENTRAL */
.flow-node-app { flex-shrink: 0; width: clamp(280px, 40vw, 420px); z-index: 10; margin: 0 15px; }
.app-window { background: #0f0f0f; border: 2px solid #333; border-radius: 12px; width: 100%; height: 140px; box-shadow: 0 40px 80px rgba(0,0,0,0.8); display: flex; overflow: hidden; position: relative; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.flow-node.active .app-window { border-color: var(--green); transform: scale(1.1); box-shadow: 0 0 60px rgba(0, 255, 127, 0.2); }
.app-sidebar-l, .app-sidebar-r { width: 45px; background: #080808; display: flex; flex-direction: column; align-items: center; padding: 12px 0; gap: 12px; }
.app-main { flex: 1; display: flex; align-items: center; justify-content: center; background: #0a0a0a; }
.app-weight { font-family: 'Courier New', monospace; color: var(--green); font-size: clamp(30px, 6vw, 60px); font-weight: 700; letter-spacing: 2px; text-shadow: 0 0 15px rgba(0, 255, 127, 0.4); }
.app-unit { font-size: 18px; margin-left: 5px; opacity: 0.8; }

/* FLECHAS PROFESIONALES */
.connector-wrap { width: 60px; height: 20px; position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.connector-line { width: 100%; height: 2px; background: rgba(0, 255, 127, 0.1); position: relative; }
.connector-line::after { content: ''; position: absolute; right: 0; top: -4px; width: 10px; height: 10px; border-right: 2px solid var(--green); border-top: 2px solid var(--green); transform: rotate(45deg); opacity: 0.2; transition: 0.3s; }
.connector-pulse { position: absolute; left: -20px; top: 0; width: 30px; height: 2px; background: linear-gradient(90deg, transparent, var(--green)); opacity: 0; }
.connector-wrap.active .connector-pulse { animation: flowPulse 0.8s linear infinite; opacity: 1; }
.connector-wrap.active .connector-line::after { opacity: 1; border-color: var(--green); }
@keyframes flowPulse { 0% { left: -50%; } 100% { left: 150%; } }

/* VENTA COMPLETA */
.venta-badge { position: absolute; top: -50px; left: 50%; transform: translateX(-50%) scale(0); background: var(--green); color: #000; font-weight: 950; padding: 8px 20px; border-radius: 100px; font-size: 12px; box-shadow: 0 0 40px rgba(0,255,127,0.7); transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); z-index: 20; display: flex; align-items: center; gap: 8px; letter-spacing: 0.5px; white-space: nowrap; }
.flow-node.active .venta-badge.show { transform: translateX(-50%) scale(1); }

/* SECCIONES POSTERIORES */
.sec { padding: 100px 20px; }
.sec-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.sec-tag { display: inline-block; font-size: 11px; font-weight: 800; color: var(--green); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; background: rgba(0, 255, 127, 0.1); padding: 6px 16px; border-radius: 100px; }
.sec-title { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: var(--white); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 40px; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.pain-card { background: linear-gradient(180deg, rgba(10,19,12,0.95), rgba(7,16,10,0.96)); border: 1px solid rgba(0, 255, 127, 0.08); border-radius: 24px; padding: 40px; text-align: left; position: relative; overflow: hidden; transition: 0.4s ease; cursor: default; box-shadow: 0 18px 40px rgba(0,0,0,0.18); }
.pain-card:hover { transform: translateY(-10px) scale(1.02); border-color: var(--green); box-shadow: 0 22px 44px rgba(0, 255, 127, 0.12); }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--green), var(--blue), var(--gold)); }
.pain-icon { width: 50px; height: 50px; margin-bottom: 18px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; background: linear-gradient(135deg, rgba(0,255,127,0.15), rgba(56,189,248,0.18)); color: var(--green); border: 1px solid rgba(0, 255, 127, 0.2); box-shadow: inset 0 0 20px rgba(255,255,255,0.03); }
.pain-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pain-card:nth-child(1) .pain-icon { background: linear-gradient(135deg, rgba(0,255,127,0.2), rgba(34,197,94,0.15)); color: #57f39a; }
.pain-card:nth-child(2) .pain-icon { background: linear-gradient(135deg, rgba(247,201,72,0.22), rgba(255,123,84,0.18)); color: #ffd76a; }
.pain-card:nth-child(3) .pain-icon { background: linear-gradient(135deg, rgba(56,189,248,0.24), rgba(59,130,246,0.16)); color: #72d8ff; }

/* ROI MATEMÁTICA */
.roi-sec { background: var(--panel); padding: 100px 20px; }
.roi-card { max-width: 1100px; margin: 0 auto; background: var(--bg); border: 1px solid rgba(0, 255, 127, 0.15); border-radius: 32px; padding: clamp(30px, 5vw, 60px); display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; transition: 0.4s; }
.roi-card:hover { border-color: rgba(0, 255, 127, 0.4); box-shadow: 0 10px 40px rgba(0, 255, 127, 0.05); }
.roi-math-box { background: rgba(0,0,0,0.6); padding: 40px; border-radius: 24px; border: 2px dashed rgba(255, 76, 76, 0.3); position: relative; transition: 0.4s; }
.roi-math-box:hover { border-color: var(--red); box-shadow: 0 0 20px rgba(255, 76, 76, 0.1); transform: scale(1.02); }
.roi-math-box::after { content: '!'; position: absolute; top: -15px; right: -15px; width: 35px; height: 35px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; }
.roi-math-total { display: flex; justify-content: space-between; margin-top: 25px; padding-top: 25px; border-top: 1px solid rgba(255, 76, 76, 0.3); font-size: 28px; font-weight: 900; color: var(--red); }
.roi-highlight { display: inline-block; background: rgba(0, 255, 127, 0.1); color: var(--green); font-weight: 900; padding: 12px 20px; border-radius: 10px; margin-top: 20px; border: 1px solid rgba(0, 255, 127, 0.2); font-size: 18px; width: 100%; text-align: center; }

/* TESTIMONIOS */
.test-sec { padding: 100px 20px; border-top: 1px solid rgba(0, 255, 127, 0.08); background: var(--bg2); }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; max-width: 1200px; margin: 0 auto; }
.test-card { background: var(--panel); border: 1px solid rgba(0, 255, 127, 0.15); border-radius: 20px; padding: 45px; text-align: left; transition: 0.4s; }
.test-card:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: 0 10px 20px rgba(0, 255, 127, 0.1); }
.test-quote { font-size: 18px; color: var(--white); font-style: italic; line-height: 1.7; margin-bottom: 35px; }
.test-author { display: flex; align-items: center; gap: 15px; }
.test-avatar { width: 50px; height: 50px; border-radius: 50%; background: rgba(0, 255, 127, 0.1); display: flex; align-items: center; justify-content: center; color: var(--green); font-weight: 900; flex-shrink: 0; }

/* FAQ */
.faq-sec { padding: 80px 20px; background: var(--bg); }
.faq-container { max-width: 850px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--panel); border: 1px solid rgba(0, 255, 127, 0.06); border-radius: 16px; overflow: hidden; transition: 0.3s; text-align: left; }
.faq-item:hover { border-color: rgba(0, 255, 127, 0.2); }
.faq-q { padding: 22px 25px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 18px; font-weight: 800; color: var(--white); user-select: none; }
.faq-label { display: inline-flex; align-items: center; gap: 12px; text-align: left; }
.faq-q-icon { width: 30px; height: 30px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: rgba(0, 255, 127, 0.08); color: var(--green); border: 1px solid rgba(0, 255, 127, 0.12); flex-shrink: 0; }
.faq-q-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.faq-item:nth-child(1) .faq-q-icon,
.faq-item:nth-child(6) .faq-q-icon { background: linear-gradient(135deg, rgba(56,189,248,0.18), rgba(0,255,127,0.12)); color: #76d9ff; }
.faq-item:nth-child(2) .faq-q-icon,
.faq-item:nth-child(5) .faq-q-icon { background: linear-gradient(135deg, rgba(247,201,72,0.18), rgba(255,123,84,0.12)); color: #ffd76a; }
.faq-item:nth-child(3) .faq-q-icon,
.faq-item:nth-child(7) .faq-q-icon { background: linear-gradient(135deg, rgba(0,255,127,0.18), rgba(34,197,94,0.12)); color: #62f5a4; }
.faq-item:nth-child(4) .faq-q-icon,
.faq-item:nth-child(8) .faq-q-icon { background: linear-gradient(135deg, rgba(168,85,247,0.16), rgba(56,189,248,0.12)); color: #c89bff; }
.faq-icon { font-size: 12px; color: var(--green); transition: 0.4s; }
.faq-a { max-height: 0; overflow: hidden; padding: 0 25px; transition: 0.4s ease; color: var(--gray); font-size: 16px; line-height: 1.7; opacity: 0; }
.faq-item.active { border-color: rgba(0, 255, 127, 0.3); background: rgba(0, 255, 127, 0.02); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active .faq-a { max-height: 500px; padding: 10px 25px 30px; opacity: 1; }

/* PRECIOS */
.price-sec { padding: 100px 20px; background: var(--bg2); }
.price-card { 
    max-width: 620px; 
    margin: 60px auto; 
    background: radial-gradient(circle at top left, rgba(0, 255, 127, 0.2), transparent 45%), #040905; 
    border: 1px solid rgba(0, 255, 127, 0.4); 
    border-radius: 36px; 
    padding: 85px 45px 55px; 
    text-align: center; 
    position: relative; 
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 255, 127, 0.1); 
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    overflow: visible; 
}
.price-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 39px;
    background: linear-gradient(135deg, var(--green), transparent, var(--blue), transparent, var(--green));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0.4;
    animation: border_flow 8s linear infinite;
}
@keyframes border_flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.price-card:hover { 
    transform: translateY(-15px); 
    border-color: var(--green);
    box-shadow: 0 50px 150px rgba(0, 255, 127, 0.25); 
}
.price-badge { 
    position: absolute; 
    top: -18px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: linear-gradient(135deg, #ff4c4c, #ff1a1a); 
    color: #fff; 
    font-size: 13px; 
    font-weight: 900; 
    padding: 10px 32px; 
    border-radius: 12px; 
    box-shadow: 0 10px 25px rgba(255, 76, 76, 0.4), 0 0 40px rgba(255, 76, 76, 0.2);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: glow_pulse 2s infinite ease-in-out;
}
@keyframes glow_pulse {
    0%, 100% { box-shadow: 0 10px 25px rgba(255, 76, 76, 0.4), 0 0 40px rgba(255, 76, 76, 0.2); transform: translateX(-50%) scale(1); }
    50% { box-shadow: 0 15px 35px rgba(255, 76, 76, 0.6), 0 0 60px rgba(255, 76, 76, 0.4); transform: translateX(-50%) scale(1.05); }
}
@keyframes pulse_p { 0%, 100% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.05); } }
.price-amount { 
    font-size: clamp(65px, 12vw, 92px); 
    font-weight: 950; 
    color: #fff; 
    line-height: 1; 
    margin-bottom: 5px; 
    text-shadow: 0 10px 30px rgba(0, 255, 127, 0.3);
    position: relative;
    display: inline-block;
}
.price-amount::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: -20%;
    right: -20%;
    height: 30%;
    background: radial-gradient(ellipse, rgba(0, 255, 127, 0.3), transparent 70%);
    z-index: -1;
}
.price-period { 
    font-size: 16px; 
    color: var(--white); 
    font-weight: 700; 
    margin-bottom: 30px; 
    background: linear-gradient(90deg, transparent, rgba(0, 255, 127, 0.1), transparent); 
    padding: 12px; 
    border-radius: 12px; 
    display: inline-block; 
    width: 100%; 
    border-top: 1px solid rgba(0, 255, 127, 0.1);
    border-bottom: 1px solid rgba(0, 255, 127, 0.1);
}
.price-feats { text-align: left; display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.price-feat { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    font-size: 17px; 
    font-weight: 700; 
    padding: 16px 20px; 
    border-radius: 16px; 
    background: rgba(255,255,255,0.02); 
    border-left: 3px solid var(--green);
    transition: 0.3s;
}
.price-feat:hover {
    background: rgba(0, 255, 127, 0.05);
    transform: translateX(5px);
}

/* FOOTER PROFESIONAL */
.footer { background: #020603; padding: 80px 20px 40px; border-top: 1px solid rgba(0, 255, 127, 0.05); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
.footer-brand h2 { font-size: 28px; font-weight: 900; color: var(--green); margin-bottom: 15px; letter-spacing: -1px; }
.footer-brand p { font-size: 14px; color: var(--gray); max-width: 300px; margin-bottom: 20px; line-height: 1.6; }
.footer-brand .hecho-con-amor { font-size: 12px; color: var(--gray); opacity: 0.6; margin-top: 15px; display: block; font-style: italic; }
.footer-col h4 { color: var(--white); font-size: 16px; font-weight: 800; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--gray); text-decoration: none; }
.footer-links a:hover { color: var(--green); padding-left: 5px; }
.footer-contact { display: flex; flex-direction: column; gap: 15px; color: var(--gray); font-size: 14px; }
.footer-contact div { display: flex; align-items: center; gap: 10px; }
.contact-icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.contact-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom { max-width: 1200px; margin: 60px auto 0; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copy { font-size: 12px; color: rgba(127, 175, 138, 0.3); }

/* WHATSAPP FAB & TOOLTIP */
.wfab { position: fixed; bottom: 25px; right: 25px; z-index: 2000; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,0.5); cursor: pointer; }
.wfab svg { width: 32px; height: 32px; fill: white; }
.wfab::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid #25D366; animation: w-pulse 2s infinite; }
.wfab-tooltip { position: absolute; right: 80px; top: 50%; transform: translateY(-50%); background: #25D366; color: #fff; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 700; white-space: nowrap; opacity: 0; pointer-events: none; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 5px 15px rgba(37,211,102,0.3); }
.wfab-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border-left: 6px solid #25D366; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.wfab:hover .wfab-tooltip { opacity: 1; transform: translateY(-50%) translateX(-10px); }
@keyframes w-pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

/* NUEVAS ANIMACIONES - SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { 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; }

/* NUEVAS ANIMACIONES - MARQUEE MARCAS */
.brands-marquee { width: 100%; overflow: hidden; background: rgba(0, 255, 127, 0.02); padding: 15px 0; border-top: 1px solid rgba(0, 255, 127, 0.05); border-bottom: 1px solid rgba(0, 255, 127, 0.05); display: flex; white-space: nowrap; position: relative; z-index: 10;}
.marquee-content { display: inline-flex; align-items: center; gap: 40px; animation: marquee 25s linear infinite; font-size: 14px; font-weight: 800; color: var(--gray); letter-spacing: 2px; }
.marquee-content:hover { animation-play-state: paused; }
.brand-tag { background: rgba(0, 255, 127, 0.05); padding: 8px 16px; border-radius: 10px; color: var(--white); border: 1px solid rgba(0, 255, 127, 0.1); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes shineText { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* BOTON SOPORTE REMOTO NAVBAR (PC) */
.nav-support-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 130, 255, 0.1) !important; border: 1px solid rgba(0, 130, 255, 0.4); color: #6fb1fc !important; font-weight: 800 !important; padding: 8px 16px !important; border-radius: 8px !important; transition: all 0.3s ease !important; }
.nav-support-btn:hover { background: rgba(0, 130, 255, 0.2) !important; border-color: #00d2ff !important; color: #fff !important; box-shadow: 0 0 15px rgba(0, 210, 255, 0.3); transform: translateY(-2px); }
.pulse-dot { width: 8px; height: 8px; background: #00d2ff; border-radius: 50%; box-shadow: 0 0 8px #00d2ff, 0 0 15px #00d2ff; animation: pulse-dot-anim 2s infinite cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes pulse-dot-anim { 0% { transform: scale(0.8); opacity: 0.8; } 50% { transform: scale(1.5); opacity: 1; } 100% { transform: scale(0.8); opacity: 0.8; } }

/* MOBILE MENU ENHANCEMENTS */
.mmenu-contact { margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(0, 255, 127, 0.1); width: 85%; text-align: center; display: flex; flex-direction: column; gap: 10px; }

/* DEMO VIDEO */
.video-wrapper { max-width: 900px; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 1px solid rgba(0, 255, 127, 0.2); box-shadow: 0 20px 60px rgba(0, 255, 127, 0.1); background: var(--bg2); position: relative; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; transition: 0.4s; cursor: pointer; }
.video-wrapper:hover { border-color: var(--green); box-shadow: 0 30px 80px rgba(0, 255, 127, 0.2); transform: translateY(-5px); }
.video-placeholder { text-align: center; color: var(--gray); font-weight: 800; font-size: clamp(18px, 4vw, 24px); padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.play-btn { width: 80px; height: 80px; background: rgba(0, 255, 127, 0.1); border: 2px solid var(--green); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; padding-left: 6px; transition: 0.3s; box-shadow: 0 0 30px rgba(0, 255, 127, 0.2); }
.video-wrapper:hover .play-btn { background: var(--green); color: #000; transform: scale(1.1); box-shadow: 0 0 50px rgba(0, 255, 127, 0.4); }
.video-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* PASOS DE INSTALACION */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
.step-card { background: var(--panel); border: 1px solid rgba(0, 255, 127, 0.08); border-radius: 24px; padding: 40px 30px; text-align: center; position: relative; transition: 0.4s ease; display: flex; flex-direction: column; align-items: center; }
.step-card:hover { transform: translateY(-10px); border-color: var(--green); box-shadow: 0 15px 30px rgba(0, 255, 127, 0.1); }
.step-num { width: 58px; height: 58px; background: rgba(0, 255, 127, 0.1); color: var(--green); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; border: 1px solid rgba(0, 255, 127, 0.2); box-shadow: inset 0 0 20px rgba(0, 255, 127, 0.08); }
.step-num svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step-card:nth-child(1) .step-num { background: linear-gradient(135deg, rgba(56,189,248,0.18), rgba(59,130,246,0.12)); color: #7cd8ff; }
.step-card:nth-child(2) .step-num { background: linear-gradient(135deg, rgba(247,201,72,0.18), rgba(255,123,84,0.12)); color: #ffd76a; }
.step-card:nth-child(3) .step-num { background: linear-gradient(135deg, rgba(0,255,127,0.18), rgba(34,197,94,0.12)); color: #62f5a4; }
.step-card h3 { color: var(--white); font-size: 22px; font-weight: 800; margin-bottom: 15px; }
.step-card p { color: var(--gray); font-size: 16px; line-height: 1.6; }
.step-card::after { content: '→'; position: absolute; right: -25px; top: 50%; transform: translateY(-50%); font-size: 30px; color: rgba(0, 255, 127, 0.2); font-weight: 900; }
.step-card:last-child::after { display: none; }

/* GARANTIA BOX */
.guarantee-box { margin-top: 30px; background: rgba(0, 255, 127, 0.05); border: 1px dashed rgba(0, 255, 127, 0.3); border-radius: 16px; padding: 20px; display: flex; align-items: flex-start; gap: 15px; text-align: left; transition: 0.3s; }
.guarantee-box:hover { border-style: solid; border-color: rgba(0, 255, 127, 0.6); background: rgba(0, 255, 127, 0.08); }
.g-icon { font-size: 30px; flex-shrink: 0; }
.g-text strong { display: block; color: var(--green); font-size: 16px; font-weight: 800; margin-bottom: 5px; }
.g-text span { color: var(--white); font-size: 13px; line-height: 1.5; display: block; opacity: 0.8; }
.price-headline { color: var(--white); font-size: 18px; line-height: 1.6; margin: 0 auto 18px; max-width: 460px; }
.price-kicker { font-size: 15px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.price-kicker span { text-decoration: line-through; opacity: 0.8; margin-left: 6px; }
.price-currency { font-size: 24px; color: var(--gray); font-weight: 600; }
.price-action { width: 100%; margin-bottom: 15px; }
.price-secondary { width: 100%; margin-bottom: 25px; border-color: rgba(255,255,255,0.2); color: var(--text); }
.price-feat-icon { width: 34px; height: 34px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(0,255,127,0.18), rgba(56,189,248,0.2)); color: var(--green); flex-shrink: 0; }
.price-feat-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.price-feat:nth-child(1) .price-feat-icon { background: linear-gradient(135deg, rgba(0,255,127,0.18), rgba(34,197,94,0.12)); color: #62f5a4; }
.price-feat:nth-child(2) .price-feat-icon { background: linear-gradient(135deg, rgba(56,189,248,0.2), rgba(59,130,246,0.12)); color: #7cd8ff; }
.price-feat:nth-child(3) .price-feat-icon { background: linear-gradient(135deg, rgba(247,201,72,0.18), rgba(255,123,84,0.12)); color: #ffd76a; }
.price-feat:nth-child(4) .price-feat-icon { background: linear-gradient(135deg, rgba(168,85,247,0.16), rgba(56,189,248,0.12)); color: #c89bff; }
.price-urgency { display: flex; align-items: center; gap: 14px; text-align: left; padding: 16px 18px; margin-bottom: 20px; border-radius: 20px; background: linear-gradient(135deg, rgba(247,201,72,0.14), rgba(255,76,76,0.08)); border: 1px solid rgba(247,201,72,0.18); }
.price-urgency strong { display: block; color: #ffe08a; margin-bottom: 3px; }
.price-urgency span { color: var(--white); font-size: 14px; opacity: 0.9; }
.price-urgency-icon { width: 44px; height: 44px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(247,201,72,0.14); color: var(--gold); flex-shrink: 0; }
.price-urgency-icon svg { width: 20px; height: 20px; fill: currentColor; stroke: currentColor; stroke-width: 1.2; }
.btn-paypal { width: 100%; margin-bottom: 12px; background: linear-gradient(135deg, #0070ba, #003087); color: #fff; padding: 18px 24px; border-radius: 18px; font-size: 18px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(0, 48, 135, 0.35); }
.btn-paypal:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0, 48, 135, 0.45); }
.paypal-zone { 
    margin: 25px 0 15px; 
    padding: 24px; 
    border-radius: 28px; 
    background: linear-gradient(180deg, rgba(8, 20, 32, 0.95), rgba(4, 9, 12, 0.98)); 
    border: 1px solid rgba(0, 112, 186, 0.3); 
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.paypal-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 112, 186, 0.05) 0%, transparent 60%);
    pointer-events: none;
}
.paypal-zone-head { display: flex; align-items: center; gap: 15px; text-align: left; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
.paypal-zone-head strong { display: block; color: var(--white); font-size: 18px; font-weight: 800; margin-bottom: 2px; }
.paypal-zone-head span { color: var(--gray); font-size: 13px; line-height: 1.4; display: block; }
.paypal-zone-icon { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: #0070ba; color: #fff; flex-shrink: 0; box-shadow: 0 8px 20px rgba(0, 112, 186, 0.4); }
.paypal-hosted-wrap { 
    width: 100%; 
    margin-bottom: 18px; 
    padding: 12px; 
    border-radius: 20px; 
    background: rgba(255,255,255,0.02); 
    border: 1px solid rgba(255,255,255,0.05); 
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}
.paypal-trust { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 10px; }
.paypal-trust-pill { 
    padding: 6px 12px; 
    border-radius: 8px; 
    background: rgba(0, 255, 127, 0.05); 
    border: 1px solid rgba(0, 255, 127, 0.15); 
    color: var(--green); 
    font-size: 11px; 
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.paypal-trust-pill::before { content: '🛡️'; font-size: 12px; }
.paypal-note { color: var(--gray); font-size: 12px; line-height: 1.5; margin: 10px 0 0; opacity: 0.7; }

/* USE CASES SECTION */
.use-cases-sec { padding: 100px 20px; border-top: 1px solid rgba(0, 255, 127, 0.05); }
.uc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.uc-card { background: var(--bg); border: 1px solid rgba(0, 255, 127, 0.08); border-radius: 20px; padding: 30px; text-align: center; transition: 0.4s ease; display: flex; flex-direction: column; align-items: center; }
.uc-card:hover { border-color: var(--green); transform: translateY(-8px); box-shadow: 0 18px 34px rgba(0, 255, 127, 0.12); background: linear-gradient(180deg, rgba(7,16,10,1), rgba(10,19,12,1)); }
.uc-icon { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 15px; background: rgba(0, 255, 127, 0.05); width: 64px; height: 64px; border-radius: 20px; border: 1px solid rgba(0, 255, 127, 0.1); transition: 0.3s; color: var(--green); }
.uc-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.uc-card:nth-child(1) .uc-icon { background: linear-gradient(135deg, rgba(247,201,72,0.18), rgba(255,123,84,0.12)); color: #ffd76a; }
.uc-card:nth-child(2) .uc-icon { background: linear-gradient(135deg, rgba(255,123,84,0.18), rgba(239,68,68,0.12)); color: #ffb38e; }
.uc-card:nth-child(3) .uc-icon { background: linear-gradient(135deg, rgba(56,189,248,0.2), rgba(59,130,246,0.12)); color: #7cd8ff; }
.uc-card:nth-child(4) .uc-icon { background: linear-gradient(135deg, rgba(0,255,127,0.18), rgba(34,197,94,0.12)); color: #62f5a4; }
.uc-card:hover .uc-icon { background: rgba(0, 255, 127, 0.2); transform: scale(1.1); box-shadow: 0 0 20px rgba(0, 255, 127, 0.3); }
.uc-card h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.uc-card p { font-size: 15px; color: var(--gray); line-height: 1.6; }

@media(max-width: 1024px) {
    .step-card::after { content: '↓'; right: 50%; bottom: -35px; top: auto; transform: translateX(50%); }
    .nav-links { display: none; }
    .burger { display: flex; }
    .hero { padding-top: 80px; }
    .hero-proof { max-width: 760px; }
    .flow-master { flex-direction: column; gap: 20px; }
    .connector-wrap { transform: rotate(90deg); margin: 15px 0; }
    .flow-node-app { width: 100%; max-width: 320px; margin: 20px 0; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .roi-card { grid-template-columns: 1fr; text-align: center; }
    .venta-badge { top: auto; bottom: -30px; }
}
@media(max-width: 768px) {
    .sec, .price-sec, .roi-sec, .test-sec, .use-cases-sec, .faq-sec, .footer { padding-left: 16px; padding-right: 16px; }
    .sec-title { margin-bottom: 28px; }
    .hero { padding: 92px 16px 56px; }
    .hero-inner { gap: 22px; }
    .h-title { font-size: clamp(34px, 11vw, 52px); letter-spacing: -2px; }
    .h-desc { font-size: 16px; margin-bottom: 22px; }
    .hero-proof { flex-direction: column; width: 100%; max-width: 100%; }
    .proof-pill { width: 100%; justify-content: flex-start; }
    .flow-master { padding: 8px 0; }
    .flow-node { min-width: auto; }
    .flow-node-app { max-width: 100%; }
    .app-window { height: 124px; }
    .pain-grid, .uc-grid, .test-grid { grid-template-columns: 1fr; }
    .test-grid { gap: 20px; }
    .price-card { max-width: 100%; padding: 92px 18px 28px; border-radius: 28px; }
    .price-badge { width: calc(100% - 36px); max-width: 320px; padding: 10px 16px; font-size: 11px; white-space: normal; line-height: 1.2; }
    .price-headline { font-size: 16px; }
    .price-amount { font-size: clamp(50px, 18vw, 72px); }
    .price-currency { display: block; margin-top: 8px; font-size: 20px; }
    .price-feat { align-items: flex-start; padding: 12px; font-size: 15px; }
    .price-urgency { flex-direction: column; align-items: flex-start; padding: 14px; }
    .paypal-zone { padding: 12px; border-radius: 20px; }
    .paypal-zone-head { align-items: flex-start; }
    .paypal-zone-head strong { font-size: 16px; }
    .paypal-hosted-wrap { padding: 10px; border-radius: 18px; }
    .paypal-trust { justify-content: flex-start; }
    .faq-q { padding: 18px; font-size: 16px; align-items: flex-start; }
    .faq-label { gap: 10px; }
    .faq-q-icon { width: 26px; height: 26px; border-radius: 9px; }
    .faq-q-icon svg { width: 14px; height: 14px; }
    .pain-icon { width: 44px; height: 44px; }
    .pain-icon svg { width: 20px; height: 20px; }
    .step-num { width: 50px; height: 50px; }
    .step-num svg { width: 20px; height: 20px; }
    .uc-icon { width: 56px; height: 56px; }
    .uc-icon svg { width: 22px; height: 22px; }
    .faq-a { font-size: 15px; }
    .footer-bottom { justify-content: center; text-align: center; }
}
@media(max-width: 480px) {
    .hero { padding-top: 88px; }
    .h-badge { font-size: 10px; padding: 8px 12px; }
    .h-title { font-size: 38px; }
    .h-btns { gap: 12px; margin-bottom: 24px; }
    .app-window { transform: scale(0.92); transform-origin: center; }
    .roi-card { padding: 24px 16px; border-radius: 16px; }
    .roi-math-box { padding: 24px 18px; }
    .roi-math-total { font-size: 22px; }
    .btn-main, .btn-outline { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
    .proof-pill { padding: 9px 12px; font-size: 14px; }
    .step-card, .pain-card, .uc-card, .test-card { padding: 22px 18px; }
    .step-card h3, .uc-card h3 { font-size: 19px; }
    .price-card { padding: 86px 14px 22px; border-radius: 24px; }
    .price-badge { top: 14px; width: calc(100% - 28px); }
    .price-headline { font-size: 15px; }
    .price-period { font-size: 14px; padding: 10px 8px; }
    .price-feat { font-size: 14px; gap: 10px; }
    .price-feat-icon { width: 30px; height: 30px; }
    .price-feat-icon svg { width: 14px; height: 14px; }
    .paypal-zone-head { flex-direction: column; gap: 10px; }
    .paypal-zone-icon { width: 34px; height: 34px; }
    .paypal-zone-icon svg { width: 16px; height: 16px; }
    .paypal-trust-pill { font-size: 11px; padding: 7px 10px; }
    .faq-q { padding: 16px 14px; font-size: 15px; }
    .faq-item.active .faq-a { padding: 8px 14px 22px; }
    .nav-link-icon, .ui-icon { width: 14px; height: 14px; }
    .footer { padding-bottom: 110px; }
    .wfab-tooltip { display: none; }
}

/* Soporte Flotante (Izquierda) */
.sfabs {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #0070ba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 112, 186, 0.4);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255,255,255,0.2);
}

.sfabs-icon { font-size: 28px; }

.sfabs:hover { transform: scale(1.1) rotate(10deg); filter: brightness(1.2); }

.sfabs-tooltip {
    position: absolute;
    left: 75px;
    background: #0070ba;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.sfabs:hover .sfabs-tooltip { opacity: 1; transform: translateX(5px); }

@keyframes glow-pulse {
    0% { box-shadow: 0 0 5px rgba(0, 255, 127, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 127, 0.7); transform: scale(1.02); }
    100% { box-shadow: 0 0 5px rgba(0, 255, 127, 0.4); transform: scale(1); }
}

@media (max-width: 768px) {
    .sfabs { bottom: 100px; left: 20px; width: 50px; height: 50px; }
    .sfabs-tooltip { display: none; }
}

