/* ============================================
   VARIABLES GLOBALES
   ============================================ */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-card: #121212;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --accent: #ffc107;
    --accent-rgb: 255, 193, 7;
    --accent-hover: #ffb300;
    --border: #2a2a2a;
    --success: #25D366;
    --danger: #cc0000;
    --transition: all 0.3s ease;
}

/* Modo claro (opcional) */
body.light-mode {
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --accent: #c9a03d;
    --accent-hover: #b88a2a;
    --border: #e0e0e0;
}

/* ============================================
   RESET Y BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
}

section[id] {
    scroll-margin-top: 80px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 16px 0;
}

body.light-mode .header {
    background: rgba(245, 245, 245, 0.95);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-wa {
    background: var(--success);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-wa:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ============================================
   FLUID MENU (MÓVIL)
   ============================================ */
.fluid-menu {
    display: none;
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 200;
}

.fluid-trigger {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--accent);
    color: #0a0a0a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.fluid-trigger:active {
    transform: scale(0.92);
}

.fluid-trigger i {
    position: absolute;
    font-size: 1.3rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fluid-trigger .fa-bars {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.fluid-trigger .fa-times {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

.fluid-menu.expanded .fluid-trigger .fa-bars {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.fluid-menu.expanded .fluid-trigger .fa-times {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.fluid-items {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58px;
    height: 58px;
}

.fluid-item {
    position: absolute;
    bottom: 80%;
    right: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(0) scale(0.6);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) calc(var(--i) * 0.04s),
                opacity 0.25s ease calc(var(--i) * 0.04s);
    pointer-events: none;
    cursor: pointer;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.fluid-item:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.fluid-shader-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
}

.fluid-shader-item.active {
    background: rgba(255, 193, 7, 0.15);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 16px rgba(255, 193, 7, 0.25);
}

.fluid-menu.expanded .fluid-item {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(calc(var(--i) * -60px - 16px)) scale(1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) calc(var(--i) * 0.05s),
                opacity 0.3s ease calc(var(--i) * 0.05s);
}

.fluid-menu.expanded .fluid-item:nth-last-child(2) {
    clip-path: circle(50% at 50% 50%);
}

@media (min-width: 769px) {
    .fluid-menu {
        display: none !important;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: #0a0a0a;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent);
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1rem;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 80px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--text-primary);
}

.toggle-badge {
    background: var(--accent);
    color: #0a0a0a;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 4px;
}

.domain-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.12);
    background: transparent;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit;
}
.domain-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.domain-toggle.on {
    background: rgba(var(--accent-rgb),.12);
    border-color: var(--accent);
    color: var(--accent);
}
.domain-toggle.on .domain-toggle-indicator {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}
.domain-toggle-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    transition: all .3s;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 26px;
    transition: background 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--text-primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-card.popular .pricing-btn {
    background: var(--accent);
    color: #0a0a0a;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: #0a0a0a;
    padding: 4px 14px;
    border-radius: 0 28px 0 16px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-badge i {
    font-size: 0.7rem;
}

.pricing-card-icon {
    margin-bottom: 8px;
}
.plan-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.pricing-card-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.pricing-card-amount {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.pricing-card-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-card-billed {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.pricing-features li i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    font-size: 0.8rem;
}

.pricing-features-full {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, opacity .3s ease;
    opacity: 0;
}
.pricing-features-full.open {
    max-height: 800px;
    opacity: 1;
}
.pricing-features-full li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: .82rem;
    color: rgba(255,255,255,.75);
}
.pricing-features-full li i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    font-size: .75rem;
}

.pricing-features-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--accent);
    font-size: .78rem;
    cursor: pointer;
    padding: 8px 0 4px;
    font-family: inherit;
    opacity: .7;
    transition: opacity .2s;
    width: 100%;
    justify-content: center;
}
.pricing-features-toggle:hover {
    opacity: 1;
}
.pricing-features-toggle i {
    font-size: .7rem;
    transition: transform .3s;
}

.pricing-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

.pricing-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    text-align: center;
    padding: 12px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--accent);
    color: #0a0a0a;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.pricing-card-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: scale(1.03);
    }
    .pricing-card.popular:hover {
        transform: scale(1.03) translateY(-4px);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
    .pricing-card-amount {
        font-size: 2.2rem;
    }
}

/* ============================================
   CATEGORÍAS (INTRO PAGE)
   ============================================ */
.categorias {
    padding: 80px 0;
}
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.categoria-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.categoria-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-accent, var(--accent));
}
.categoria-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
}
.categoria-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.categoria-card p {
    color: var(--text-secondary);
    font-size: .88rem;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}
.categoria-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}
.btn-categoria {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: .85rem;
    transition: var(--transition);
}
.btn-categoria:hover {
    background: var(--card-accent, var(--accent)) !important;
    color: #0a0a0a !important;
}
.btn-categoria-wa {
    background: #25D366;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}
.btn-categoria-wa:hover {
    transform: scale(1.1);
    background: #1da851;
}

/* ============================================
   SERVICIOS SECUNDARIOS
   ============================================ */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.servicio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    transition: var(--transition);
    text-align: center;
}

.servicio-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.servicio-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.servicio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.servicio-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.servicio-precio {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 16px 0 8px;
}

.servicio-precio small {
    font-size: 0.8rem;
    font-weight: 400;
}

.extra-note {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

.btn-servicio {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 12px;
    transition: var(--transition);
}

.btn-servicio:hover {
    background: var(--accent);
    color: #0a0a0a;
}

/* Anti-Fraude Extra */
.antifraude-extra {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
    border: 1px solid var(--accent);
    border-radius: 28px;
    padding: 28px;
    margin: 40px 0;
    text-align: center;
}

.antifraude-extra h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.antifraude-extra p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.antifraude-badge {
    display: inline-block;
    background: var(--accent);
    color: #0a0a0a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ============================================
   DOMINIOS
   ============================================ */
.dominio-section {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 32px;
    margin: 40px 0;
    border: 1px solid var(--border);
}

.dominio-section p {
    text-align: center;
    margin-bottom: 16px;
}

.dominio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.dominio-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.dominio-card h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.dominio-card .precio {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin: 12px 0;
}

/* ============================================
   TABLA COMPARATIVA
   ============================================ */
.comparativa {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 32px;
    margin: 60px 0;
}

.comparativa-title {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.table-responsive {
    overflow-x: auto;
}

.comparativa table {
    width: 100%;
    border-collapse: collapse;
}

.comparativa th,
.comparativa td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparativa th:first-child,
.comparativa td:first-child {
    text-align: left;
}

.comparativa th {
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   SCANNER CARD STREAM
   ============================================ */
.scanner-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.scanner-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.scanner-wrap:active {
    cursor: grabbing;
}

.scanner-bg-particles {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 260px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.scanner-particles {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 280px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.scanner-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 280px;
    transform: translate(-50%, -50%);
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    z-index: 20;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.scanner-line.active {
    opacity: 1;
    box-shadow: 0 0 8px var(--accent), 0 0 20px var(--accent), 0 0 40px rgba(255,193,7,0.5);
}

.scanner-line-inner {
    position: absolute;
    top: 0;
    left: -2px;
    width: 6px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,193,7,0.3), transparent);
    animation: scanPulse 1.2s ease-in-out infinite alternate;
}

@keyframes scanPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.card-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 220px;
    transform: translateY(-50%);
    z-index: 5;
    overflow: hidden;
}

.card-stream {
    display: flex;
    align-items: center;
    gap: 50px;
    height: 100%;
    will-change: transform;
}

.card-wrapper {
    position: relative;
    width: 360px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-wrapper:hover {
    transform: scale(1.03);
}

.card-normal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    clip-path: inset(0 0 0 var(--clip-r, 0%));
    transition: clip-path 0.15s linear;
}

.card-normal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-ascii {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
    clip-path: inset(0 calc(100% - var(--clip-l, 0%)) 0 0);
    transition: clip-path 0.15s linear;
}

.ascii-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(16, 185, 129, 0.7);
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 13px;
    overflow: hidden;
    white-space: pre;
    margin: 0;
    padding: 0;
    text-align: left;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.1) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.1) 100%);
    animation: asciiGlitch 0.08s infinite linear alternate-reverse;
}

body.shader-on .ascii-text {
    color: rgba(0, 0, 0, 0.7);
}

@keyframes asciiGlitch {
    0% { opacity: 0.85; }
    100% { opacity: 1; }
}

.scanner-speed {
    display: none;
}

@media (max-width: 768px) {
    .card-wrapper { width: 280px; height: 180px; }
    .card-stream { gap: 30px; }
    .ascii-text { font-size: 9px; line-height: 11px; }
    .scanner-wrap { height: 220px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.faq-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-card);
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
    transition: background 0.3s ease;
}

body.shader-on .footer {
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

body.light-mode.shader-on .footer {
    background: rgba(245, 245, 245, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-logo-text span {
    color: var(--accent);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 360px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a i {
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-desc {
        max-width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-col-title {
        margin-bottom: 14px;
    }
    .footer-links li {
        text-align: center;
    }
}

/* ============================================
   NAV CURSOR ANIMADO
   ============================================ */
.nav-cursor-wrap {
    display: flex;
    align-items: center;
}

.nav-cursor {
    position: relative;
    display: flex;
    width: fit-content;
    border-radius: 9999px;
    border: 2px solid var(--accent);
    background: transparent;
    padding: 4px;
    list-style: none;
    margin: 0;
}

.nav-cursor-item {
    position: relative;
    z-index: 10;
    cursor: pointer;
    padding: 6px 16px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-primary);
    mix-blend-mode: difference;
    white-space: nowrap;
    user-select: none;
    transition: color 0.2s ease;
}

.nav-cursor-bg {
    position: absolute;
    z-index: 0;
    height: calc(100% - 8px);
    top: 4px;
    border-radius: 9999px;
    background: var(--accent);
    opacity: 0;
    transition: left 0.25s ease, width 0.25s ease, opacity 0.2s ease;
    pointer-events: none;
}

.nav-cursor-bg.visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .nav-cursor-wrap {
        display: none;
    }
    .nav-cursor {
        flex-direction: column;
        width: 100%;
        border: none;
        background: transparent;
        gap: 4px;
    }
    .nav-cursor-item {
        mix-blend-mode: normal;
        text-align: center;
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 1rem;
    }
    .nav-cursor-item:hover {
        background: var(--accent);
        color: #0a0a0a;
    }
    .nav-cursor-bg {
        display: none;
    }
}

/* ============================================
   SHADER BACKGROUND
   ============================================ */
#shaderCanvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    background: #0a0a0a;
    z-index: -1;
    pointer-events: none;
}

#shaderCanvas.active {
    display: block;
}

body.shader-on {
    background: transparent;
}

body.shader-on .pricing-card,
body.shader-on .servicio-card,
body.shader-on .ejemplo-card,
body.shader-on .faq-item,
body.shader-on .comparativa,
body.shader-on .dominio-section,
body.shader-on .antifraude-extra,
body.shader-on .header,
body.shader-on .footer,
body.shader-on .pack-card {
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

body.shader-on .pricing-card.popular {
    background: rgba(18, 18, 18, 0.75);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.12), inset 0 0 60px rgba(255, 193, 7, 0.03);
}

body.light-mode.shader-on .pricing-card,
body.light-mode.shader-on .servicio-card,
body.light-mode.shader-on .ejemplo-card,
body.light-mode.shader-on .faq-item,
body.light-mode.shader-on .comparativa,
body.light-mode.shader-on .dominio-section,
body.light-mode.shader-on .antifraude-extra {
    background: rgba(255, 255, 255, 0.75);
}

.shader-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.shader-toggle:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.shader-toggle.on {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.3);
}

@media (max-width: 768px) {
    .shader-toggle {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
}

/* ============================================
   CONFETTI ANIMATION
   ============================================ */
@keyframes confettiFall {
    0% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
    100% { opacity: 0; transform: translateY(80px) rotate(720deg) scale(0.3); }
}

@keyframes cardConfetti {
    0% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
    100% { opacity: 0; transform: translate(var(--dx), var(--dy)) rotate(360deg) scale(0.2); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .header-inner {
        flex-direction: row;
    }

    .fluid-menu {
        display: block;
    }
    .shader-toggle {
        display: none;
    }

    .categorias-grid,
    .servicios-grid,
    .dominio-grid,
    .ejemplos-grid,
    .faq-grid {
        gap: 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

