/* ============================================================
   micatalogo.uno · estilos generales
   ============================================================ */

:root {
    --c-bg: #FAFAFC;
    --c-surface: #FFFFFF;
    --c-surface-2: #F4F4F8;
    --c-text: #0F172A;
    --c-text-2: #334155;
    --c-muted: #64748B;
    --c-line: #E5E7EB;
    --c-line-2: #EEF2F7;

    --c-primary: #6366F1;
    --c-primary-dark: #4F46E5;
    --c-violet: #8B5CF6;
    --c-accent: #F97316;
    --c-accent-2: #FB923C;
    --c-pink: #EC4899;
    --c-emerald: #10B981;
    --c-wa: #25D366;
    --c-wa-dark: #1ebe5b;

    --grad-brand: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    --grad-soft: linear-gradient(180deg, #FFFFFF 0%, #F1F0FE 100%);
    --grad-warm: linear-gradient(135deg, #F97316 0%, #FB923C 100%);

    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.09);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
    --shadow-glow: 0 20px 60px -10px rgba(99, 102, 241, 0.45);

    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    --f-display: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    --f-body: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --f-hand: 'Caveat', cursive;

    --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--f-body);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--c-primary-dark); }

[hidden] { display: none !important; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--c-text);
    color: white;
    padding: 8px 14px;
    border-radius: 0 0 8px 0;
    z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Topbar
   ============================================================ */
.topbar {
    background: var(--c-text);
    color: #F8FAFC;
    font-size: 0.82rem;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 22px;
    max-width: 1180px;
    margin: 0 auto;
}
.topbar-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #CBD5E1;
}
.topbar-pill svg { color: var(--c-emerald); }
.topbar-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #F8FAFC;
    font-weight: 500;
    transition: color 0.18s;
}
.topbar-wa:hover { color: var(--c-wa); }
.topbar-wa svg { color: var(--c-wa); }
@media (max-width: 540px) {
    .topbar-pill { display: none; }
    .topbar-inner { justify-content: center; }
}

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--c-line-2);
    transition: box-shadow 0.2s, background 0.2s;
}
.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.94);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: var(--header-h);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--c-text);
}
.brand-mark {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: white;
    box-shadow: var(--shadow-sm);
    align-items: center;
    justify-content: center;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.22rem;
    letter-spacing: -0.5px;
    color: var(--c-text);
}
.brand-name em {
    font-style: normal;
    font-weight: 700;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.brand-name--footer { color: white; font-size: 1.4rem; }
.brand-tag {
    font-size: 0.7rem;
    color: var(--c-muted);
    margin-top: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    position: relative;
    padding: 8px 14px;
    font-weight: 500;
    color: var(--c-text-2);
    font-size: 0.95rem;
    border-radius: 8px;
    transition: color 0.18s, background 0.18s;
}
.nav-link:hover { color: var(--c-text); background: var(--c-surface-2); }
.nav-link.is-active {
    color: var(--c-primary-dark);
    background: rgba(99, 102, 241, 0.10);
}
/* Language toggle */
.lang-toggle {
    display: inline-flex;
    margin-left: 6px;
    padding: 3px;
    background: var(--c-surface-2);
    border-radius: 999px;
    border: 1px solid var(--c-line);
}
.lang-opt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--c-muted);
    transition: background 0.18s, color 0.18s;
}
.lang-opt:hover { color: var(--c-text); }
.lang-opt.is-active {
    background: white;
    color: var(--c-text);
    box-shadow: var(--shadow-xs);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 8px;
    padding: 10px 16px;
    background: var(--c-text);
    color: white;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.nav-cta:hover { color: white; background: var(--c-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta svg { color: var(--c-wa); }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--c-line);
    background: white;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .site-nav {
        position: absolute;
        left: 22px; right: 22px;
        top: calc(100% + 10px);
        flex-direction: column;
        align-items: stretch;
        background: white;
        border: 1px solid var(--c-line);
        border-radius: var(--r-md);
        padding: 14px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.2s, transform 0.2s;
    }
    .site-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-link { padding: 12px 14px; font-size: 1rem; }
    .lang-toggle { margin: 8px 0 4px; align-self: center; }
    .nav-cta { margin: 6px 0 0; justify-content: center; padding: 14px; font-size: 1rem; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .brand-tag { display: none; }
}

/* ============================================================
   Botones
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
    line-height: 1;
    white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
    background: var(--c-text);
    color: white;
}
.btn-primary:hover { background: var(--c-primary-dark); color: white; box-shadow: var(--shadow-glow); transform: translateY(-1px); }

.btn-grad {
    background: var(--grad-brand);
    color: white;
    box-shadow: var(--shadow-md);
}
.btn-grad:hover { color: white; transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.btn-wa {
    background: var(--c-wa);
    color: white;
}
.btn-wa:hover { background: var(--c-wa-dark); color: white; transform: translateY(-1px); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35); }
.btn-wa svg { fill: white; }

.btn-outline {
    background: white;
    color: var(--c-text);
    border-color: var(--c-line);
}
.btn-outline:hover { border-color: var(--c-text); box-shadow: var(--shadow-sm); }

.btn-ghost {
    background: transparent;
    color: var(--c-text-2);
}
.btn-ghost:hover { color: var(--c-text); background: var(--c-surface-2); }

.btn-lg { padding: 16px 26px; font-size: 1.05rem; }
.btn-sm { padding: 10px 16px; font-size: 0.9rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: -100px -100px auto -100px;
    height: 700px;
    background:
        radial-gradient(circle at 18% 24%, rgba(99, 102, 241, 0.18) 0, transparent 36%),
        radial-gradient(circle at 82% 12%, rgba(236, 72, 153, 0.14) 0, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(249, 115, 22, 0.10) 0, transparent 38%);
    pointer-events: none;
    z-index: -1;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: white;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--c-text-2);
    font-weight: 500;
    box-shadow: var(--shadow-xs);
    margin-bottom: 24px;
}
.hero-pill-dot {
    display: inline-flex;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--grad-brand);
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.62rem;
    font-weight: 700;
}
.hero-title {
    font-family: var(--f-display);
    font-size: clamp(2.4rem, 5.4vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -1.5px;
    margin: 0 0 22px;
    font-weight: 800;
    color: var(--c-text);
}
.hero-title .grad {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-title .hand {
    font-family: var(--f-hand);
    font-weight: 700;
    color: var(--c-accent);
    transform: rotate(-2deg);
    display: inline-block;
    position: relative;
    font-size: 1.1em;
    letter-spacing: 0;
}
.hero-title .hand::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 6%;
    height: 9px;
    background: rgba(249, 115, 22, 0.25);
    border-radius: 3px;
    z-index: -1;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--c-text-2);
    max-width: 550px;
    margin: 0 0 32px;
    line-height: 1.65;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: var(--c-muted);
    font-size: 0.92rem;
}
.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.hero-meta-item svg { color: var(--c-emerald); }

/* Mockup */
.hero-mock {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4.4;
    perspective: 1500px;
}
.mock-desktop, .mock-phone {
    position: absolute;
    background: white;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.mock-desktop {
    inset: 6% 14% 14% 0;
    border: 1px solid var(--c-line);
    transform: rotateY(-7deg) rotateX(4deg);
    transform-origin: center;
}
.mock-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #F8FAFC;
    border-bottom: 1px solid var(--c-line-2);
}
.mock-bar span {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #E2E8F0;
}
.mock-bar span:nth-child(1) { background: #FCA5A5; }
.mock-bar span:nth-child(2) { background: #FDE68A; }
.mock-bar span:nth-child(3) { background: #BBF7D0; }
.mock-url {
    margin-left: 10px;
    background: white;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.72rem;
    color: var(--c-muted);
    flex: 1;
    font-family: 'SF Mono', Menlo, monospace;
}
.mock-content {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.mock-card {
    background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
    border: 1px solid var(--c-line-2);
    border-radius: 12px;
    overflow: hidden;
}
.mock-card-img {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #FCE7F3, #E0E7FF);
    position: relative;
}
.mock-card-img::after {
    content: '';
    position: absolute;
    inset: 22% 28%;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    filter: blur(8px);
}
.mock-card:nth-child(2) .mock-card-img { background: linear-gradient(135deg, #FED7AA, #FECACA); }
.mock-card:nth-child(3) .mock-card-img { background: linear-gradient(135deg, #BFDBFE, #DDD6FE); }
.mock-card:nth-child(4) .mock-card-img { background: linear-gradient(135deg, #FBCFE8, #FDE68A); }
.mock-card:nth-child(5) .mock-card-img { background: linear-gradient(135deg, #A7F3D0, #BFDBFE); }
.mock-card:nth-child(6) .mock-card-img { background: linear-gradient(135deg, #DDD6FE, #FECACA); }
.mock-card-text {
    padding: 10px;
}
.mock-card-text .l1 { height: 7px; width: 75%; background: #E2E8F0; border-radius: 3px; margin-bottom: 5px; }
.mock-card-text .l2 { height: 7px; width: 40%; background: linear-gradient(90deg, var(--c-primary), var(--c-violet)); border-radius: 3px; }

.mock-phone {
    width: 30%;
    aspect-ratio: 9 / 18;
    right: -2%;
    bottom: 0;
    border-radius: 26px;
    border: 5px solid #0F172A;
    background: white;
    transform: rotate(6deg);
    box-shadow: -10px 24px 50px rgba(15, 23, 42, 0.25);
}
.mock-phone-bar {
    height: 26px;
    background: #0F172A;
    margin: -1px -1px 0;
    border-radius: 22px 22px 0 0;
    position: relative;
}
.mock-phone-bar::after {
    content: '';
    position: absolute;
    top: 7px; left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 14px;
    background: #0F172A;
    border-radius: 8px;
}
.mock-phone-content {
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mock-phone-content .mock-card-img { border-radius: 9px; }
.phone-badge {
    position: absolute;
    bottom: 16%;
    left: -14%;
    background: white;
    border-radius: 14px;
    padding: 10px 14px 10px 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text);
    transform: rotate(-3deg);
}
.phone-badge-icon {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: var(--c-wa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.phone-badge small {
    display: block;
    font-weight: 500;
    color: var(--c-muted);
    font-size: 0.72rem;
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-mock { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 540px) {
    .hero { padding: 40px 0 60px; }
    .hero-mock { aspect-ratio: 5 / 4.8; }
    .mock-content { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 12px; }
    .mock-card:nth-child(n+5) { display: none; }
    .phone-badge { font-size: 0.72rem; padding: 8px 10px; }
}

/* ============================================================
   Sección genérica
   ============================================================ */
.section {
    padding: 90px 0;
    position: relative;
}
.section--tight { padding: 60px 0; }
.section--alt { background: var(--c-surface); }
.section--dark {
    background: var(--c-text);
    color: #F8FAFC;
}
.section--dark .section-eyebrow { color: var(--c-accent-2); }
.section--dark .section-title { color: white; }
.section--dark .section-lead { color: #CBD5E1; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.72rem;
    color: var(--c-primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--f-display);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -1px;
    font-weight: 800;
}
.section-title .grad {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-lead {
    color: var(--c-text-2);
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   Logos / social proof
   ============================================================ */
.proof {
    padding: 40px 0 30px;
    border-top: 1px solid var(--c-line-2);
    border-bottom: 1px solid var(--c-line-2);
}
.proof-label {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 2.5px;
    color: var(--c-muted);
    font-weight: 600;
    margin-bottom: 22px;
}
.proof-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    color: var(--c-muted);
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0.72;
}
.proof-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   Features grid
   ============================================================ */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature {
    background: white;
    border: 1px solid var(--c-line-2);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, 0.25);
}
.feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99,102,241,0.10), rgba(139,92,246,0.10));
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.feature--accent .feature-icon { background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(251,146,60,0.12)); color: var(--c-accent); }
.feature--emerald .feature-icon { background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(52,211,153,0.12)); color: var(--c-emerald); }
.feature--pink .feature-icon { background: linear-gradient(135deg, rgba(236,72,153,0.12), rgba(244,114,182,0.12)); color: var(--c-pink); }
.feature h3 {
    font-family: var(--f-display);
    font-size: 1.18rem;
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.feature p {
    color: var(--c-muted);
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.6;
}

@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ============================================================
   How it works (pasos)
   ============================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
}
.step {
    background: white;
    border: 1px solid var(--c-line-2);
    border-radius: var(--r-lg);
    padding: 36px 28px 30px;
    position: relative;
    overflow: hidden;
}
.step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-soft);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.step:hover::before { opacity: 1; }
.step-num {
    font-family: var(--f-display);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px;
    letter-spacing: -2px;
}
.step h3 {
    font-family: var(--f-display);
    font-size: 1.3rem;
    margin: 0 0 10px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.step p {
    color: var(--c-text-2);
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}
.step-meta {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--c-line);
    color: var(--c-muted);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.step-meta svg { color: var(--c-accent); }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   Showcase / ejemplos
   ============================================================ */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.showcase-text h2 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.1;
}
.showcase-text p { color: var(--c-text-2); font-size: 1.06rem; line-height: 1.65; margin: 0 0 24px; }
.showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    gap: 12px;
}
.showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--c-text-2);
    font-size: 0.98rem;
}
.showcase-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: white;
    background: var(--c-emerald);
    border-radius: 50%;
    padding: 3px;
    box-sizing: content-box;
    width: 12px; height: 12px;
}

.showcase-preview {
    position: relative;
    background: white;
    border-radius: var(--r-xl);
    padding: 18px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-line-2);
}
.showcase-preview-frame {
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--c-line);
    background: var(--c-surface-2);
    aspect-ratio: 16 / 11;
    position: relative;
}
.showcase-preview-frame iframe,
.showcase-preview-frame img {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.showcase-preview-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #F8FAFC;
    border-bottom: 1px solid var(--c-line);
    border-radius: var(--r-md) var(--r-md) 0 0;
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 2;
}
.showcase-preview-bar span:not(.url) {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #E2E8F0;
}
.showcase-preview-bar span:nth-child(1) { background: #FCA5A5; }
.showcase-preview-bar span:nth-child(2) { background: #FDE68A; }
.showcase-preview-bar span:nth-child(3) { background: #BBF7D0; }
.showcase-preview-bar .url {
    margin-left: 10px;
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 0.72rem;
    color: var(--c-muted);
    background: white;
    border: 1px solid var(--c-line);
    border-radius: 5px;
    padding: 3px 9px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.showcase-tag {
    position: absolute;
    top: -16px;
    right: 18px;
    background: var(--grad-warm);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 900px) { .showcase { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   Gallery (página de ejemplos)
   ============================================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 26px;
}
.gallery-card {
    background: white;
    border: 1px solid var(--c-line-2);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: inherit; }
.gallery-thumb {
    aspect-ratio: 16 / 11;
    background: linear-gradient(135deg, #E0E7FF, #FCE7F3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gallery-thumb img, .gallery-thumb iframe {
    width: 100%; height: 100%;
    object-fit: cover;
    border: 0;
}
.gallery-thumb-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: white;
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.gallery-card-body {
    padding: 20px 22px 24px;
}
.gallery-card-cat {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-primary);
    font-weight: 700;
    margin-bottom: 8px;
}
.gallery-card-title {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}
.gallery-card-desc {
    color: var(--c-muted);
    font-size: 0.92rem;
    margin: 0 0 14px;
}
.gallery-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-primary);
    font-weight: 600;
    font-size: 0.92rem;
}
.gallery-card-link svg { transition: transform 0.2s; }
.gallery-card:hover .gallery-card-link svg { transform: translateX(3px); }

.gallery-card--featured { grid-column: span 2; }
.gallery-card--featured .gallery-thumb { aspect-ratio: 16 / 9; }
@media (max-width: 760px) { .gallery-card--featured { grid-column: span 1; } }

/* ============================================================
   Precios / planes
   ============================================================ */
.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}
.plan {
    background: white;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 36px 30px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan-name {
    font-family: var(--f-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.plan-tag {
    font-size: 0.92rem;
    color: var(--c-muted);
    margin-bottom: 22px;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}
.plan-price-amount {
    font-family: var(--f-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}
.plan-price-currency {
    font-size: 1rem;
    color: var(--c-muted);
    font-weight: 600;
}
.plan-price-period {
    color: var(--c-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 10px;
    flex: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--c-text-2);
    font-size: 0.94rem;
    line-height: 1.5;
}
.plan-features svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--c-emerald);
    width: 16px; height: 16px;
}
.plan-features li.is-off {
    color: var(--c-muted);
    opacity: 0.6;
}
.plan-features li.is-off svg { color: var(--c-muted); }
.plan-cta {
    text-align: center;
}
.plan-cta .btn { width: 100%; }

.plan--featured {
    background: var(--c-text);
    color: #F8FAFC;
    border-color: var(--c-text);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.plan--featured:hover { transform: translateY(-14px); }
.plan--featured .plan-name { color: var(--c-accent-2); }
.plan--featured .plan-tag { color: #94A3B8; }
.plan--featured .plan-features li { color: #E2E8F0; }
.plan--featured .plan-features svg { color: var(--c-emerald); }
.plan--featured .btn-primary { background: white; color: var(--c-text); }
.plan--featured .btn-primary:hover { background: var(--c-accent); color: white; }
.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-warm);
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 980px) {
    .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .plan--featured { transform: none; }
    .plan--featured:hover { transform: translateY(-3px); }
}

.plans-note {
    text-align: center;
    color: var(--c-muted);
    margin-top: 36px;
    font-size: 0.93rem;
}
.plans-note a { font-weight: 600; }

/* Tabla comparativa */
.compare {
    margin-top: 50px;
    background: white;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
    text-align: left;
    padding: 16px 20px;
    border-bottom: 1px solid var(--c-line-2);
    font-size: 0.95rem;
}
.compare th {
    background: var(--c-surface-2);
    font-family: var(--f-display);
    font-weight: 700;
    color: var(--c-text);
}
.compare th:not(:first-child),
.compare td:not(:first-child) {
    text-align: center;
}
.compare tr:last-child td { border-bottom: 0; }
.compare td svg { display: inline-block; vertical-align: middle; }
.compare .yes { color: var(--c-emerald); }
.compare .no { color: var(--c-muted); opacity: 0.5; }
@media (max-width: 700px) {
    .compare th, .compare td { padding: 12px 14px; font-size: 0.86rem; }
}

/* ============================================================
   FAQs
   ============================================================ */
.faqs {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq {
    background: white;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq[open] {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: var(--shadow-sm);
}
.faq summary {
    cursor: pointer;
    padding: 20px 22px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--c-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '';
    width: 20px; height: 20px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366F1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(180deg); }
.faq-body {
    padding: 0 22px 22px;
    color: var(--c-text-2);
    line-height: 1.65;
}

/* ============================================================
   Testimonios
   ============================================================ */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial {
    background: white;
    border: 1px solid var(--c-line-2);
    border-radius: var(--r-lg);
    padding: 28px 26px;
    position: relative;
}
.testimonial::before {
    content: '“';
    position: absolute;
    top: 4px;
    left: 18px;
    font-family: var(--f-display);
    font-size: 5rem;
    line-height: 1;
    color: rgba(99, 102, 241, 0.15);
    font-weight: 800;
}
.testimonial p {
    margin: 0 0 18px;
    color: var(--c-text-2);
    font-size: 1rem;
    line-height: 1.65;
    position: relative;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--grad-brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1rem;
}
.testimonial-meta strong {
    display: block;
    font-family: var(--f-display);
    font-size: 0.95rem;
}
.testimonial-meta small {
    color: var(--c-muted);
    font-size: 0.82rem;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* ============================================================
   CTA banda
   ============================================================ */
.cta-banner {
    background: var(--grad-brand);
    color: white;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(20px);
}
.cta-banner::before {
    width: 300px; height: 300px;
    top: -120px; left: -60px;
}
.cta-banner::after {
    width: 400px; height: 400px;
    bottom: -180px; right: -100px;
}
.cta-banner-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 20px; }
.cta-banner h2 {
    font-family: var(--f-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -1px;
    font-weight: 800;
}
.cta-banner h2 .hand {
    font-family: var(--f-hand);
    color: #FDE68A;
    font-weight: 700;
    transform: rotate(-3deg);
    display: inline-block;
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.cta-banner .btn-grad {
    background: white;
    color: var(--c-text);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}
.cta-banner .btn-grad:hover { background: var(--c-text); color: white; }
.cta-banner .btn-wa { background: var(--c-wa); color: white; }
.cta-banner .btn-wa:hover { background: var(--c-wa-dark); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: var(--c-text);
    color: #94A3B8;
    padding: 70px 0 30px;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand p {
    margin: 14px 0 0;
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 360px;
}
.footer-brand strong { color: #E2E8F0; font-weight: 600; }
.footer-col h4 {
    font-family: var(--f-display);
    color: white;
    font-size: 0.92rem;
    margin: 0 0 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
}
.footer-col a {
    display: block;
    color: #94A3B8;
    padding: 5px 0;
    font-size: 0.94rem;
    transition: color 0.18s, transform 0.18s;
}
.footer-col a:hover { color: white; transform: translateX(3px); }
.footer-col--cta p { color: #94A3B8; font-size: 0.92rem; margin: 0 0 16px; }
.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--c-wa);
    color: white !important;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.18s, transform 0.18s;
    transform: none !important;
}
.footer-wa:hover { background: var(--c-wa-dark); transform: translateY(-2px) !important; }

.footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.85rem;
    color: #64748B;
}
.footer-bottom a { color: #CBD5E1; font-weight: 600; }
.footer-bottom a:hover { color: white; }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .site-footer { padding: 50px 0 24px; }
}

/* ============================================================
   WhatsApp float
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: var(--c-wa);
    color: white;
    border-radius: 999px;
    padding: 14px 22px 14px 14px;
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.4);
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.whatsapp-float:hover {
    background: var(--c-wa-dark);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.5);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.35);
    z-index: -1;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    70% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}
@media (max-width: 540px) {
    .whatsapp-float-label { display: none; }
    .whatsapp-float { padding: 14px; }
}

/* ============================================================
   Page hero (subpáginas)
   ============================================================ */
.page-hero {
    padding: 70px 0 40px;
    text-align: center;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: -100px 0 auto 0;
    height: 400px;
    background:
        radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.12) 0, transparent 38%),
        radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.10) 0, transparent 40%);
    pointer-events: none;
    z-index: -1;
}
.page-hero h1 {
    font-family: var(--f-display);
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    margin: 0 0 18px;
    letter-spacing: -1px;
    line-height: 1.08;
    font-weight: 800;
}
.page-hero h1 .grad {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.page-hero p {
    color: var(--c-text-2);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.65;
}

/* ============================================================
   Servicios split
   ============================================================ */
.service-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 30px 0;
}
.service-split--reverse .service-split-text { order: 2; }
.service-split-img {
    background: white;
    border: 1px solid var(--c-line-2);
    border-radius: var(--r-xl);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}
.service-split-text h2 {
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    margin: 0 0 14px;
    letter-spacing: -0.6px;
    font-weight: 800;
    line-height: 1.15;
}
.service-eyebrow {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--c-primary);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.service-eyebrow--warm { background: rgba(249, 115, 22, 0.12); color: var(--c-accent); }
.service-eyebrow--pink { background: rgba(236, 72, 153, 0.1); color: var(--c-pink); }
.service-eyebrow--emerald { background: rgba(16, 185, 129, 0.12); color: var(--c-emerald); }

.service-split-text p { color: var(--c-text-2); font-size: 1.04rem; line-height: 1.65; margin: 0 0 24px; }

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 10px;
}
.service-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--c-text-2);
    font-size: 0.98rem;
}
.service-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--c-primary);
}

@media (max-width: 900px) {
    .service-split { grid-template-columns: 1fr; gap: 30px; padding: 18px 0; }
    .service-split--reverse .service-split-text { order: 0; }
}

/* Phone mockup decorativo */
.phone-card {
    width: 280px;
    aspect-ratio: 9 / 19;
    margin: 0 auto;
    background: #0F172A;
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.phone-card-inner {
    width: 100%; height: 100%;
    background: white;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}
.phone-card-notch {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 16px;
    background: #0F172A;
    border-radius: 10px;
    z-index: 3;
}
.phone-card-content {
    padding: 30px 14px 14px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.phone-mock-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-line-2);
}
.phone-mock-logo {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--grad-brand);
}
.phone-mock-text {
    flex: 1;
}
.phone-mock-text .l { height: 6px; border-radius: 3px; background: #E2E8F0; margin-bottom: 4px; }
.phone-mock-text .l:nth-child(1) { width: 60%; background: #1E293B; }
.phone-mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 6px;
}
.phone-mock-prod {
    background: linear-gradient(135deg, #E0E7FF, #FCE7F3);
    border-radius: 10px;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}
.phone-mock-prod:nth-child(2) { background: linear-gradient(135deg, #FED7AA, #FECACA); }
.phone-mock-prod:nth-child(3) { background: linear-gradient(135deg, #BFDBFE, #DDD6FE); }
.phone-mock-prod:nth-child(4) { background: linear-gradient(135deg, #A7F3D0, #BAE6FD); }
.phone-mock-prod::after {
    content: '$';
    position: absolute;
    bottom: 6px; right: 8px;
    background: white;
    color: var(--c-primary);
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ============================================================
   Stats / números
   ============================================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat {
    background: white;
    border: 1px solid var(--c-line-2);
    border-radius: var(--r-lg);
    padding: 28px 18px;
}
.stat-num {
    font-family: var(--f-display);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.stat-label {
    color: var(--c-text-2);
    font-size: 0.92rem;
    font-weight: 500;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Contacto
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}
.contact-card {
    background: white;
    border: 1px solid var(--c-line-2);
    border-radius: var(--r-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
}
.contact-big {
    background: var(--c-text);
    color: white;
    border-radius: var(--r-xl);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}
.contact-big::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 60%);
    pointer-events: none;
}
.contact-big-eyebrow {
    color: var(--c-accent-2);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}
.contact-big h2 {
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    margin: 0 0 18px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.6px;
}
.contact-big p { color: #CBD5E1; line-height: 1.65; margin: 0 0 30px; font-size: 1.04rem; }
.contact-wa-big {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--c-wa);
    border-radius: var(--r-lg);
    color: white !important;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    position: relative;
    z-index: 1;
}
.contact-wa-big:hover {
    background: var(--c-wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.4);
    color: white;
}
.contact-wa-big small {
    display: block;
    font-family: var(--f-body);
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.85;
    margin-bottom: 2px;
}
.contact-info-list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #E2E8F0;
    font-size: 0.96rem;
}
.contact-info-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--c-accent-2);
}
.contact-info-list strong { color: white; display: block; font-family: var(--f-display); margin-bottom: 2px; }

.contact-card h2 {
    font-family: var(--f-display);
    font-size: 1.5rem;
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: -0.4px;
}
.contact-card p { color: var(--c-muted); margin: 0 0 24px; }

.form-grid {
    display: grid;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.field label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--c-text-2);
    margin-bottom: 6px;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--c-line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--c-text);
    background: white;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-help {
    color: var(--c-muted);
    font-size: 0.82rem;
    margin: 6px 0 0;
}
.form-cta { margin-top: 8px; }
.form-cta .btn { width: 100%; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Pills / tags
   ============================================================ */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--c-surface-2);
    color: var(--c-text-2);
}
.pill--primary { background: rgba(99, 102, 241, 0.12); color: var(--c-primary); }
.pill--accent { background: rgba(249, 115, 22, 0.13); color: var(--c-accent); }
.pill--emerald { background: rgba(16, 185, 129, 0.13); color: var(--c-emerald); }

/* ============================================================
   Animaciones reveal
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .whatsapp-float::before { animation: none; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   Splash · selector de región (banderas)
   ============================================================ */
.welcome-chooser {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: welcome-fade 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.welcome-chooser[hidden] { display: none; }
@keyframes welcome-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.welcome-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(99, 102, 241, 0.45) 0, transparent 38%),
        radial-gradient(circle at 82% 80%, rgba(236, 72, 153, 0.35) 0, transparent 42%),
        rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.welcome-modal {
    position: relative;
    width: 100%;
    max-width: 880px;
    background: white;
    border-radius: 28px;
    padding: 50px 48px 36px;
    box-shadow: 0 60px 120px rgba(15, 23, 42, 0.5);
    text-align: center;
    animation: welcome-pop 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}
@keyframes welcome-pop {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.welcome-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.welcome-brand-name {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--c-text);
    letter-spacing: -0.5px;
}
.welcome-brand-name em {
    font-style: normal;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.welcome-title {
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 3.6vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--c-text);
    margin: 0 0 12px;
    line-height: 1.15;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.welcome-lang-es, .welcome-lang-en { display: inline-block; }
.welcome-lang-en { color: var(--c-muted); font-weight: 600; }
.welcome-divider { color: var(--c-line); font-weight: 400; }

.welcome-sub {
    color: var(--c-text-2);
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 1rem;
    line-height: 1.6;
}
.welcome-sub .welcome-lang-en {
    display: block;
    margin-top: 4px;
    font-size: 0.92rem;
    color: var(--c-muted);
    font-weight: 400;
}

/* Grid de opciones */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 30px;
}
.welcome-opt {
    background: white;
    border: 2px solid var(--c-line);
    border-radius: 22px;
    padding: 22px 22px 24px;
    color: var(--c-text);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}
.welcome-opt::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(99, 102, 241, 0.04));
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}
.welcome-opt:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 24px 50px rgba(99, 102, 241, 0.22);
    color: var(--c-text);
}
.welcome-opt:hover::after { opacity: 1; }
.welcome-opt:focus-visible {
    outline: 3px solid var(--c-primary);
    outline-offset: 4px;
}

.welcome-flag {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 0 0 1px rgba(15, 23, 42, 0.08),
        0 14px 30px rgba(15, 23, 42, 0.12);
    background: #f1f5f9;
    position: relative;
}
.welcome-flag svg { width: 100%; height: 100%; display: block; }
.welcome-flag::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 25%, transparent 80%, rgba(0, 0, 0, 0.08));
    pointer-events: none;
}
.welcome-opt:hover .welcome-flag {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 0 0 1px rgba(15, 23, 42, 0.08),
        0 22px 44px rgba(15, 23, 42, 0.22);
}

.welcome-opt-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1;
}
.welcome-opt-title {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--c-text);
}
.welcome-opt-sub {
    color: var(--c-muted);
    font-size: 0.92rem;
}
.welcome-opt-cta {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 18px;
    background: rgba(99, 102, 241, 0.10);
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.welcome-opt-cta svg { transition: transform 0.2s; }
.welcome-opt:hover .welcome-opt-cta {
    background: var(--c-primary);
    color: white;
}
.welcome-opt:hover .welcome-opt-cta svg { transform: translateX(4px); }

.welcome-skip {
    background: none;
    border: 0;
    color: var(--c-muted);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 8px;
    transition: color 0.18s, background 0.18s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.welcome-skip:hover { color: var(--c-text); background: var(--c-surface-2); }

/* Responsive */
@media (max-width: 700px) {
    .welcome-modal { padding: 36px 22px 24px; border-radius: 22px; }
    .welcome-grid { grid-template-columns: 1fr; gap: 14px; }
    .welcome-opt { padding: 18px 18px 22px; }
    .welcome-opt-title { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
    .welcome-chooser, .welcome-modal { animation: none; }
    .welcome-opt, .welcome-flag, .welcome-opt-cta, .welcome-opt-cta svg { transition: none; }
}

/* Bloqueo de scroll del body cuando el welcome está abierto */
body.has-welcome { overflow: hidden; }

/* ============================================================
   Mini-preview del catálogo Hilitos (reemplazo del iframe)
   Paleta real del catálogo Hilitos
   ============================================================ */
.hilitos-mock {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 12% 18%, rgba(236, 196, 203, 0.40) 0, transparent 38%),
        radial-gradient(circle at 88% 80%, rgba(248, 228, 231, 0.55) 0, transparent 42%),
        #FBF6F6;
    padding: 38px 26px 22px;
    color: #3A2D31;
    text-decoration: none;
    overflow: hidden;
    transition: filter 0.3s ease;
}
.hilitos-mock::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(213, 135, 148, 0.06));
    pointer-events: none;
}
.hilitos-mock:hover { color: #3A2D31; filter: saturate(1.1); }

/* Hero */
.hilitos-mock-hero {
    text-align: center;
    margin-bottom: 18px;
}
.hilitos-mock-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #D58794;
    margin-bottom: 6px;
}
.hilitos-mock-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin: 0 0 4px;
    color: #3A2D31;
    line-height: 1.05;
    letter-spacing: -0.3px;
}
.hilitos-mock-title em {
    font-family: 'Caveat', cursive;
    font-style: normal;
    font-weight: 700;
    color: #B86C7B;
    font-size: 1.25em;
    margin: 0 0.05em;
    display: inline-block;
    transform: rotate(-2deg);
}
.hilitos-mock-tag {
    color: #8E7479;
    font-size: 0.78rem;
    margin: 0;
}

/* Grid de productos */
.hilitos-mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: auto;
}
.hilitos-mock-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(120, 80, 90, 0.10);
    display: flex;
    flex-direction: column;
}
.hilitos-mock-img {
    aspect-ratio: 4 / 3;
    position: relative;
}
.hilitos-mock-img--1 { background: linear-gradient(135deg, #F8E4E7 0%, #ECC4CB 100%); }
.hilitos-mock-img--2 { background: linear-gradient(135deg, #FBEEDD 0%, #F4D3C2 100%); }
.hilitos-mock-img--3 { background: linear-gradient(135deg, #EDE3F0 0%, #D9C2DE 100%); }
.hilitos-mock-img::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32%;
    aspect-ratio: 1;
    transform: translate(-50%, -55%);
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.7), transparent 60%),
        rgba(213, 135, 148, 0.18);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(2px);
}
.hilitos-mock-img--2::after { transform: translate(-50%, -55%) rotate(15deg); }
.hilitos-mock-img--3::after { transform: translate(-50%, -55%) rotate(-12deg); }
.hilitos-mock-info {
    padding: 8px 8px 10px;
    text-align: center;
    border-top: 1px solid rgba(213, 135, 148, 0.12);
}
.hilitos-mock-name {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #3A2D31;
    margin-bottom: 3px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hilitos-mock-price {
    color: #B86C7B;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}
.hilitos-mock-price::before {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    background: #ECC4CB;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    transform: translateY(-1px);
}

/* CTA en la esquina */
.hilitos-mock-cta {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: linear-gradient(135deg, #D58794, #B86C7B);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(184, 108, 123, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 2;
}
.hilitos-mock:hover .hilitos-mock-cta {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Variante "sm" para la galería */
.hilitos-mock--sm { padding: 22px 16px 16px; }
.hilitos-mock--sm .hilitos-mock-eyebrow { font-size: 0.55rem; letter-spacing: 2px; margin-bottom: 4px; }
.hilitos-mock--sm .hilitos-mock-title { font-size: 1.25rem; }
.hilitos-mock--sm .hilitos-mock-tag { font-size: 0.7rem; }
.hilitos-mock--sm .hilitos-mock-hero { margin-bottom: 12px; }
.hilitos-mock--sm .hilitos-mock-grid { gap: 6px; }
.hilitos-mock--sm .hilitos-mock-info { padding: 5px 6px 7px; }
.hilitos-mock--sm .hilitos-mock-name { font-size: 0.7rem; }
.hilitos-mock--sm .hilitos-mock-price { font-size: 0.72rem; }
.hilitos-mock--sm .hilitos-mock-cta { font-size: 0.74rem; padding: 6px 12px; bottom: 10px; }

@media (prefers-reduced-motion: reduce) {
    .hilitos-mock-cta { opacity: 1 !important; transform: translateX(-50%) translateY(0) !important; transition: none; }
}
