/* =============================================
   VARIABLES Y RESET
   ============================================= */
:root {
    --bg-dark:        #080612;
    --bg-mid:         #0f0c1b;
    --bg-card:        #13102a;
    --bg-card-hover:  #1a1635;
    --primary:        #7c4dff;
    --primary-hover:  #651fff;
    --primary-glow:   rgba(124, 77, 255, 0.35);
    --secondary:      #00e5ff;
    --accent:         #ff4081;
    --green:          #4ade80;
    --text-light:     #f0eeff;
    --text-gray:      #8a8aaa;
    --text-muted:     #44425a;
    --whatsapp:       #25d366;
    --border:         rgba(255,255,255,0.06);
    --border-purple:  rgba(124,77,255,0.25);
    --radius:         14px;
    --radius-sm:      8px;
    --shadow-card:    0 8px 32px rgba(0,0,0,0.4);
    --transition:     0.3s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

/* Botones: reset de estilo nativo del navegador */
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background: transparent;
    border: none;
    cursor: pointer;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 2000;
    background: var(--primary);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}
.skip-link:focus {
    top: 12px;
}

:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}

.mobile-only {
    display: none !important;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(4, 3, 12, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* =============================================
   PARTÍCULAS
   ============================================= */
#particles-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

/* =============================================
   UTILIDADES
   ============================================= */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    background: rgba(124,77,255,0.12);
    color: var(--primary);
    border: 1px solid var(--border-purple);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   BOTONES
   ============================================= */
.btn-primary, .btn-secondary, .btn-whatsapp, .btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #9c6eff);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--border-purple);
}
.btn-secondary:hover {
    background: rgba(124,77,255,0.1);
    border-color: var(--primary);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #1da851);
    color: #fff;
    padding: 14px 32px;
    justify-content: center;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* =============================================
   HEADER
   ============================================= */

header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;

    background: rgba(8, 6, 18, 0.82);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: var(--transition);
}

header .container.nav-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

header.scrolled {
    background: rgba(8, 6, 18, 0.96);
    border-bottom-color: var(--border-purple);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
}

/* =============================================
   CONTENEDOR
   ============================================= */

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* =============================================
   LOGO
   ============================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.035em;

    color: var(--text-light);
    text-decoration: none;

    flex-shrink: 0;
}

.logo img {
    width: 30px;
    height: 30px;

    object-fit: cover;

    border-radius: 50%;
    border: 1.5px solid var(--border-purple);
}

/* =============================================
   NAVEGACIÓN
   ============================================= */

nav a {
    color: var(--text-gray);
    text-decoration: none;

    margin-left: 22px;

    font-size: 0.84rem;
    font-weight: 500;

    transition: color var(--transition);

    position: relative;
}

nav a::after {
    content: '';

    position: absolute;
    bottom: -4px;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--primary);
    border-radius: 2px;

    transition: width var(--transition);
}

nav a:hover {
    color: var(--text-light);
}

nav a:hover::after {
    width: 100%;
}

/* =============================================
   BOTÓN NAV
   ============================================= */

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 18px;

    padding: 7px 14px;

    background: var(--primary);
    color: #fff;

    border-radius: var(--radius-sm);

    font-size: 0.8rem;
    font-weight: 600;

    text-decoration: none;

    transition: var(--transition);

    white-space: nowrap;
}

.btn-nav:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* =============================================
   HAMBURGER
   ============================================= */

.hamburger {
    display: none;

    flex-direction: column;
    justify-content: center;

    gap: 4px;

    width: 34px;
    height: 34px;

    background: transparent;
    border: none;

    cursor: pointer;

    padding: 5px;

    z-index: 1100;
}

.hamburger span {
    display: block;

    width: 22px;
    height: 2px;

    background: var(--text-light);

    border-radius: 2px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =============================================
   TABLET / MÓVIL
   ============================================= */

@media (max-width: 768px) {

    .nav-container {
        padding: 8px 0;
        min-height: 52px;
    }

    header .container.nav-container {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    /* Logo compacto */

    .logo {
        font-size: 0.84rem;
        gap: 7px;
    }

    .logo img {
        width: 29px;
        height: 29px;
    }

    /* Ocultar botón del header; el del menú sí se muestra */

    .btn-nav.desktop {
        display: none;
    }

    .mobile-only {
        display: inline-flex !important;
    }

    /* Mostrar hamburguesa */

    .hamburger {
        display: flex;
    }

    /* =========================================
       MENÚ LATERAL
       ========================================= */

    #main-nav {
        display: flex;
        flex-direction: column;
        align-items: center;

        position: fixed;

        top: 0;
        right: -100%;

        width: 72%;
        max-width: 300px;
        height: 100vh;

        background: rgba(10, 8, 22, 0.98);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        padding: 80px 26px 30px;

        border-left: 1px solid var(--border-purple);

        transition:
            right 0.35s cubic-bezier(0.4, 0, 0.2, 1);

        z-index: 1050;

        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
    }

    #main-nav.open {
        right: 0;
    }

    #main-nav a {
        width: 100%;

        margin-left: 0;

        padding: 12px 0;

        border-bottom: 1px solid var(--border);

        text-align: center;

        font-size: 0.92rem;

        color: var(--text-light);
    }

    #main-nav a::after {
        display: none;
    }

    #main-nav .btn-nav.mobile-only {
        margin-top: 22px;
        width: 100%;
        justify-content: center;
        border-bottom: none;
        padding: 12px 14px;
    }
}


/* =============================================
   MÓVILES PEQUEÑOS
   ============================================= */

@media (max-width: 480px) {

    .nav-container {
        padding: 6px 0;
        min-height: 48px;
    }

    header .container.nav-container {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .logo {
        font-size: 0.78rem;
        gap: 6px;
    }

    .logo img {
        width: 27px;
        height: 27px;
    }

    .hamburger {
        width: 32px;
        height: 32px;
        padding: 4px;
    }

    .hamburger span {
        width: 21px;
    }
}
/*==============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(124,77,255,0.13) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,229,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 40px 0 80px;
}

.hero-text { flex: 1.15; }

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,211,102,0.08);
    border: 1px solid rgba(37,211,102,0.2);
    color: var(--green);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.6; transform:scale(1.3); }
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-text > p {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

/* Trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
}
.trust-item span:last-child {
    display: flex;
    flex-direction: column;
}
.trust-item small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-gray);
}
.trust-icon { font-size: 1.1rem; }
.trust-divider {
    width: 1px; height: 32px;
    background: var(--border);
}

/* Offer card */
.hero-offer { flex: 0.85; }

.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 18px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124,77,255,0.12);
}
.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.offer-badge {
    display: inline-block;
    background: rgba(124,77,255,0.15);
    color: #c4a6ff;
    border: 1px solid var(--border-purple);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.offer-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.offer-price {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}
.offer-price strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.offer-card > p {
    font-size: 0.88rem;
    color: var(--text-gray);
    margin-bottom: 18px;
    line-height: 1.6;
}

.offer-niches {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.offer-niches span {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 4px 11px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* =============================================
   TICKER
   ============================================= */
.ticker-wrap {
    overflow: hidden;
    background: rgba(124,77,255,0.06);
    border-top: 1px solid var(--border-purple);
    border-bottom: 1px solid var(--border-purple);
    padding: 13px 0;
    position: relative;
    z-index: 1;
}

.ticker {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
    white-space: nowrap;
}

.ticker span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ticker-dot {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
    

   /* =============================================
   PROBLEMA — MEJORADO
   ============================================= */

.problem {
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(124, 77, 255, 0.055),
            transparent 35%
        ),
        rgba(0, 0, 0, 0.2);
}

.problem-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.problem-text {
    flex: 1;
}

.problem-text .section-title {
    margin-bottom: 18px;
}

.problem-text > p {
    color: var(--text-gray);
    font-size: 0.96rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 590px;
}


/* =============================================
   LISTA
   ============================================= */

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 10px 0;
}

.problem-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(124, 77, 255, 0.08);
    border: 1px solid var(--border-purple);

    font-size: 1rem;

    transition:
        background var(--transition),
        transform var(--transition);
}

.problem-item:hover .problem-icon {
    background: rgba(124, 77, 255, 0.16);
    transform: translateY(-2px);
}

.problem-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.problem-item strong {
    color: var(--text-light);
    font-size: 0.93rem;
    font-weight: 700;
}

.problem-item span {
    color: var(--text-gray);
    font-size: 0.84rem;
    line-height: 1.55;
}


/* =============================================
   CONCLUSIÓN
   ============================================= */

.problem-conclusion {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 16px 18px;

    border-left: 2px solid var(--primary);

    background: linear-gradient(
        90deg,
        rgba(124, 77, 255, 0.08),
        transparent
    );

    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.problem-conclusion-icon {
    font-size: 1rem;
    line-height: 1.5;
}

.problem-conclusion p {
    color: var(--text-gray);
    font-size: 0.86rem;
    line-height: 1.65;
}

.problem-conclusion strong {
    color: var(--text-light);
}


/* =============================================
   VISUAL
   ============================================= */

.problem-visual {
    flex: 0.85;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 12px;

    position: relative;
}


/* =============================================
   TARJETAS DE RESULTADO
   ============================================= */

.problem-result {
    width: 100%;

    border-radius: 16px;
    overflow: hidden;

    background: var(--bg-card);

    border: 1px solid var(--border);

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.problem-result:hover {
    transform: translateY(-3px);
}


/* =============================================
   HEADER RESULTADO
   ============================================= */

.result-header {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding: 15px 18px;

    border-bottom: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.02);
}

.result-status {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 0.68rem;
    font-weight: 600;

    color: var(--text-muted);

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--text-muted);
}

.result-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
}


/* =============================================
   CONTENIDO
   ============================================= */

.result-content {
    padding: 16px 18px;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.result-row {
    display: flex;
    align-items: center;

    gap: 10px;

    min-height: 38px;

    color: var(--text-gray);
    font-size: 0.84rem;
}

.result-row > span:nth-child(2) {
    flex: 1;
}

.result-icon {
    width: 25px;

    text-align: center;

    flex-shrink: 0;

    font-size: 0.95rem;
}


/* =============================================
   ESTADO NEGATIVO
   ============================================= */

.problem-result--bad {
    opacity: 0.78;
}

.problem-result--bad .status-dot {
    background: #ff6b81;
    box-shadow: 0 0 8px rgba(255, 107, 129, 0.45);
}

.result-x {
    color: #ff6b81 !important;
    font-size: 1rem !important;
    font-weight: 700;
}


/* =============================================
   ESTADO POSITIVO
   ============================================= */

.problem-result--good {
    border-color: var(--border-purple);

    background:
        linear-gradient(
            145deg,
            var(--bg-card),
            rgba(124, 77, 255, 0.1)
        );

    box-shadow:
        0 18px 50px rgba(124, 77, 255, 0.13);
}

.problem-result--good .status-dot {
    background: var(--green);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.55);
}

.problem-result--good .result-status {
    color: var(--green);
}

.problem-result--good .result-label {
    color: var(--text-light);
}

.problem-result--good .result-row {
    color: var(--text-light);
}

.result-check {
    color: var(--green) !important;
    font-size: 0.95rem !important;
    font-weight: 800;
}


/* =============================================
   FLECHA
   ============================================= */

.problem-arrow {
    width: 38px;
    height: 38px;

    align-self: center;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(124, 77, 255, 0.09);
    border: 1px solid var(--border-purple);

    color: var(--primary);

    font-size: 1rem;
    font-weight: 800;

    box-shadow: 0 0 20px rgba(124, 77, 255, 0.08);
}


/* =============================================
   TEXTO INFERIOR
   ============================================= */

.problem-visual-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 3px;

    color: var(--text-muted);

    font-size: 0.72rem;
    font-weight: 500;

    letter-spacing: 0.02em;
}

.problem-visual-caption span {
    color: var(--primary);
}
/* =============================================
   SERVICIOS
   ============================================= */
.services {
    background: linear-gradient(
        180deg,
        transparent,
        rgba(124, 77, 255, 0.04) 50%,
        transparent
    );
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.service-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-purple);
    box-shadow: 0 16px 40px rgba(124, 77, 255, 0.14);
}

.service-card:hover::before {
    opacity: 1;
}


/* ================================================
   TARJETA DESTACADA
================================================ */

.service-card--featured {
    border-color: var(--border-purple);

    background: linear-gradient(
        150deg,
        var(--bg-card),
        rgba(124, 77, 255, 0.08)
    );
}

.service-card--featured::before {
    opacity: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-features li {
    color: var(--text-light);
    font-size: 0.86rem;
    margin-bottom: 11px;
    line-height: 1.45;
}

/* ================================================
   ETIQUETA DESTACADA
================================================ */

.featured-tag {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    background: rgba(124, 77, 255, 0.15);
    color: #c4a6ff;

    border: 1px solid var(--border-purple);

    padding: 4px 11px;
    border-radius: 50px;

    font-size: 0.72rem;
    font-weight: 600;

    margin-bottom: 16px;
}


/* ================================================
   ICONO
================================================ */

.service-icon {
    width: 52px;
    height: 52px;

    background: rgba(124, 77, 255, 0.1);
    border: 1px solid var(--border-purple);
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    margin-bottom: 16px;
}


/* ================================================
   TITULO
================================================ */

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;

    margin-bottom: 10px;
}


/* ================================================
   DESCRIPCION
================================================ */

.service-card > p {
    color: var(--text-gray);

    font-size: 0.9rem;
    line-height: 1.65;

    margin-bottom: 20px;
}


/* ================================================
   LISTA DE CARACTERISTICAS
================================================ */

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-features li {
    color: var(--text-light);
    font-size: 0.86rem;
    margin-bottom: 11px;
    line-height: 1.45;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    margin-right: 10px;
}


/* ================================================
   BOTON
================================================ */

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 11px 20px;

    border-radius: var(--radius-sm);

    font-size: 0.85rem;
    font-weight: 600;

    text-decoration: none;

    transition: var(--transition);

    border: 1.5px solid var(--border-purple);

    color: var(--text-light);

    margin-top: auto;
}

.service-btn:hover {
    background: rgba(124, 77, 255, 0.1);
    border-color: var(--primary);
}

.service-btn--featured {
    background: var(--primary);
    border-color: var(--primary);

    color: #fff;

    box-shadow: 0 4px 16px var(--primary-glow);
}

.service-btn--featured:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}
/* =============================================
   TRABAJOS
   ============================================= */
.works {
    background: rgba(0,0,0,0.2);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.work-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.work-card:hover { transform: translateY(-5px); border-color: var(--border-purple); }

.work-card--featured {
    border-color: var(--border-purple);
    background: linear-gradient(150deg, var(--bg-card), rgba(124,77,255,0.07));
}


.work-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.work-icon { font-size: 2.2rem; line-height: 1; }

.work-card h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-light);
}

.work-card p {
    font-size: 0.87rem;
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.work-tags span {
    background: rgba(124,77,255,0.08);
    color: #c4a6ff;
    border: 1px solid var(--border-purple);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
}

.work-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: opacity var(--transition);
}
.work-link:hover { opacity: 0.75; }

/* =============================================
   PROCESO
   ============================================= */
.process {
    background: linear-gradient(180deg, transparent, rgba(124,77,255,0.04) 50%, transparent);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.step-number {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: rgba(124,77,255,0.1);
    border: 2px solid var(--border-purple);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background var(--transition), border-color var(--transition);
}
.process-step:hover .step-number {
    background: rgba(124,77,255,0.2);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}


.step-content h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.step-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 170px;
    margin: 0 auto;
}

.process-connector {
    flex: 0 0 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-purple), rgba(124,77,255,0.1));
    margin-top: 28px;
    align-self: flex-start;
}

/* =============================================
   PLANES / PRICING
   ============================================= */
.plans {
    background: rgba(0,0,0,0.2);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.plan-card:hover { transform: translateY(-5px); }

.plan-card--featured {
    border-color: var(--primary);
    background: linear-gradient(160deg, var(--bg-card), rgba(124,77,255,0.1));
    box-shadow: 0 20px 60px rgba(124,77,255,0.18);
    transform: scale(1.03);
}
.plan-card--featured:hover { transform: scale(1.03) translateY(-5px); }

.plan-popular {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #9c6eff);
    color: #fff;
    font-size: 0.73rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-light);
}

.plan-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: -10px;
}

.plan-price {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1;
}
.plan-price strong {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.plan-desc {
    font-size: 0.87rem;
    color: var(--text-gray);
    line-height: 1.6;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.87rem;
    color: var(--text-gray);
}
.check {
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.plan-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1.5px solid var(--border-purple);
    /* <button> hereda un fondo claro del navegador (buttonface);
       con el texto casi blanco queda ilegible ("en blanco"). */
    background: transparent;
    color: var(--text-light);
    margin-top: 6px;
    cursor: pointer;
}
.plan-btn:hover { background: rgba(124,77,255,0.1); border-color: var(--primary); }

.plan-btn--featured {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}
.plan-btn--featured:hover { background: var(--primary-hover); }

.plan-card.selected {
    border-color: var(--secondary);
    box-shadow: 0 16px 42px rgba(0,229,255,0.14);
}
.plan-card.selected .plan-btn {
    background: rgba(0,229,255,0.12);
    border-color: var(--secondary);
    color: var(--secondary);
}
.plan-card.selected .plan-btn::after {
    content: ' ✓';
}

.plan-selection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 760px;
    margin: 28px auto 0;
    padding: 14px 16px 14px 20px;
    background: rgba(124,77,255,0.08);
    border: 1px solid var(--border-purple);
    border-radius: var(--radius-sm);
    color: var(--text-gray);
    font-size: 0.86rem;
}
.plan-selection.selected {
    border-color: rgba(0,229,255,0.45);
    background: rgba(0,229,255,0.07);
}
.plan-selection-cta {
    flex-shrink: 0;
    padding: 10px 14px;
    border-radius: 7px;
    background: var(--whatsapp);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
.plan-selection-cta:hover { background: #1da851; }

.plans-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 32px;
    line-height: 1.7;
}

/* =============================================
   FUNDADOR
   ============================================= */
.founder {
    background: linear-gradient(180deg, transparent, rgba(124,77,255,0.04) 50%, transparent);
}

.founder-inner {
    display: flex;
    align-items: center;
    gap: 64px;
}

.founder-photo {
    flex: 0 0 260px;
    position: relative;
}
.founder-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 65%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%,100% { opacity:.6; transform:scale(1); }
    50%      { opacity:1;  transform:scale(1.08); }
}

.founder-photo img {
    width: 260px; height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-purple);
    position: relative;
    z-index: 1;
    display: block;
}

.founder-text { flex: 1; }

.founder-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.founder-text p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.founder-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.founder-stack span {
    background: rgba(124,77,255,0.1);
    color: #c4a6ff;
    border: 1px solid var(--border-purple);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
}

.founder-contact,
.founder-links-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.founder-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    background: rgba(0,0,0,0.2);
}

.faq-inner {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.faq-left { flex: 1.2; }

.faq-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-purple); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-icon {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding 0.38s ease;
}
.faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 420px; }

/* FAQ CTA */
.faq-cta { flex: 0.8; position: sticky; top: 100px; }

.faq-cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 18px;
    padding: 36px 30px;
    box-shadow: 0 20px 60px rgba(124,77,255,0.12);
    position: relative;
    overflow: hidden;
}
.faq-cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.faq-cta-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.faq-cta-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 14px;
}

.faq-cta-card > p {
    font-size: 0.87rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 14px;
}

.faq-phone {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px !important;
}
.faq-phone strong { color: var(--text-light); }

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo img {
    height: 30px;
    border-radius: 50%;
}
.footer-logo strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}
.footer-logo small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }

/* =============================================
   ANIMACIONES
   ============================================= */
/* Si el JS no carga, el contenido debe seguir visible */
html.no-js .animate-on-scroll {
    opacity: 1;
    transform: none;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
    .hero-container    { flex-direction: column; text-align: center; padding: 40px 0 60px; gap: 44px; }
    .hero-text > p     { margin: 0 auto 28px; }
    .hero-buttons      { justify-content: center; }
    .hero-trust        { justify-content: center; }
    .hero-offer        { width: 100%; max-width: 420px; }
    .problem-inner     { flex-direction: column; gap: 40px; }
    .problem-visual    { flex-direction: row; width: 100%; }
    .services-grid,
    .works-grid,
    .plans-grid        { grid-template-columns: 1fr; }
    .plan-card--featured { transform: none; }
    .plan-card--featured:hover { transform: translateY(-5px); }
    .process-steps     { flex-wrap: wrap; justify-content: center; gap: 32px; }
    .process-connector { display: none; }
    .founder-inner     { flex-direction: column; gap: 36px; align-items: flex-start; }
    .faq-inner         { flex-direction: column; }
    .faq-cta           { position: static; width: 100%; }
}

@media (max-width: 768px) {
    .container       { padding: 64px 0; }
    .section-title   { font-size: 1.8rem; }
    .hero-text h1    { font-size: 2.1rem; }
    .footer-inner    { flex-direction: column; align-items: center; text-align: center; }
    header .container.nav-container { padding-top: 8px; padding-bottom: 8px; }
}

@media (max-width: 480px) {
    .hero-text h1    { font-size: 1.8rem; }
    .problem-visual  { flex-direction: column; }
    .founder-photo   { align-self: center; }
    .founder-photo img { width: 200px; height: 200px; }
    .plan-selection {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .plan-selection-cta { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}
