/* ═══════════════════════════════════════════════════════════════
   INVITAME DIGITAL — Marketing CSS
   Aesthetic: Luxury editorial — Cream / Gold / Charcoal
   Fonts: Cormorant Garamond (display) + Jost (body) + Great Vibes (script)
═══════════════════════════════════════════════════════════════ */

/* ─── CSS VARS ─────────────────────────────────────────────────── */
:root {
    --cream:       #FAF8F4;
    --cream-dark:  #F2EDE5;
    --charcoal:    #1C1C1E;
    --charcoal-80: rgba(28,28,30,.8);
    --gold:        #C4A97D;
    --gold-dark:   #9E7D52;
    --gold-light:  #EDD9B8;
    --rose:        #D4A0A8;
    --sage:        #7DA09E;
    --muted:       #888;
    --border:      #E8E2D8;
    --white:       #FFFFFF;
    --dark-bg:     #111115;
    --dark-card:   #1C1C24;

    --font-display: 'Cormorant Garamond', serif;
    --font-body:    'Jost', sans-serif;
    --font-script:  'Great Vibes', cursive;

    --nav-h:        72px;
    --radius:       12px;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
    --shadow-md:    0 8px 24px rgba(0,0,0,.10);
    --shadow-lg:    0 20px 60px rgba(0,0,0,.14);
    --transition:   0.35s cubic-bezier(.25,.8,.25,1);
}

/* ─── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body.ind-home {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ─── UTILITIES ─────────────────────────────────────────────────── */
.hidden { display: none !important; }
.bg-cream { background: var(--cream-dark); }
.bg-dark  { background: var(--dark-bg); }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   CART LATERAL
═══════════════════════════════════════════════════════════════ */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.ind-cart {
    position: fixed;
    top: 0; right: 0;
    width: min(420px, 100vw);
    height: 100vh;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.25,.8,.25,1);
    overflow: hidden;
}
.ind-cart.open { transform: translateX(0); }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 24px 20px;
    border-bottom: 1px solid var(--border);
}
.cart-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--charcoal); }
.cart-subtitle { font-size: .8rem; color: var(--muted); margin-top: 3px; }
.cart-close {
    background: none; border: none;
    font-size: 1.2rem; color: var(--muted);
    padding: 4px; transition: color .2s;
    line-height: 1;
}
.cart-close:hover { color: var(--charcoal); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-empty { text-align: center; padding: 40px 20px; color: var(--muted); font-size: .9rem; }
.cart-empty span { font-size: .8rem; display: block; margin-top: 6px; }

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 500; font-size: .9rem; color: var(--charcoal); }
.cart-item-tipo { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.cart-item-price { font-size: .85rem; color: var(--gold-dark); font-weight: 600; }
.cart-item-remove {
    background: none; border: none;
    color: #ccc; font-size: .8rem;
    transition: color .2s;
}
.cart-item-remove:hover { color: #e53935; }

.cart-footer {
    border-top: 1px solid var(--border);
    padding: 20px 24px 24px;
    background: #fafafa;
    overflow-y: auto;
    max-height: 60vh;
}
.form-section-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--charcoal);
}
.form-group { margin-bottom: 10px; }
.form-group label { display: block; font-size: .75rem; font-weight: 500; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: none; height: 60px; }

.btn-send-cart {
    width: 100%;
    padding: 13px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .5px;
    margin-top: 8px;
    transition: background .25s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-send-cart:hover { background: #333; }

.btn-wa-cart {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%;
    padding: 11px;
    background: #25D366;
    color: var(--white);
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    margin-top: 10px;
    transition: background .25s;
}
.btn-wa-cart:hover { background: #1da851; }

.cart-success {
    text-align: center;
    padding: 20px;
    background: #f0fff4;
    border-radius: 8px;
    margin-top: 12px;
    color: #2e7d32;
}
.cart-success i { font-size: 2rem; display: block; margin-bottom: 8px; }
.cart-success p { font-size: .9rem; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.ind-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 100;
    transition: background .3s, box-shadow .3s;
}
.ind-nav.scrolled {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -.5px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}
.nav-links a {
    font-size: .8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
    transition: color .2s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links .nav-portal {
    margin-left: auto;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: .75rem;
    transition: border-color .2s, background .2s;
}
.nav-links .nav-portal:hover { border-color: var(--charcoal); background: var(--cream); }
.nav-cart-btn {
    position: relative;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: .9rem;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nav-cart-btn:hover { background: var(--gold-dark); }
.cart-count {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--rose);
    color: var(--white);
    font-size: .6rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: .3s;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.ind-hero {
    min-height: 100vh;
    padding: calc(var(--nav-h) + 60px) 24px 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}
.hero-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--cream);
    pointer-events: none;
}
.hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: .4;
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; }
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: .12;
}
.shape-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--gold-light), transparent 70%);
    top: -200px; right: -100px;
    animation: shapeFloat 8s ease-in-out infinite;
}
.shape-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--rose), transparent 70%);
    bottom: -100px; left: 10%;
    animation: shapeFloat 10s ease-in-out infinite reverse;
    opacity: .08;
}
.shape-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--sage), transparent 70%);
    top: 40%; left: 30%;
    animation: shapeFloat 12s ease-in-out infinite;
    opacity: .06;
}
@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-30px) rotate(5deg); }
}

.hero-content { grid-column: 1; max-width: 680px; }
.hero-eyebrow {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 20px;
}
.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
    margin-bottom: 28px;
}
.hl-serif {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: -.02em;
    line-height: .95;
}
.hl-script {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--gold-dark);
    line-height: 1.2;
}
.hl-accent { color: var(--gold); }

.hero-sub {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Botones globales */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .5px;
    border: 2px solid var(--charcoal);
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary:hover { background: #333; border-color: #333; }
.btn-primary.large { padding: 16px 34px; font-size: .95rem; }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .5px;
    border: 1.5px solid var(--charcoal);
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }
.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    font-size: .85rem; font-weight: 500; letter-spacing: .5px;
    border: 2px solid #25D366;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; }
.btn-whatsapp.large { padding: 16px 34px; font-size: .95rem; }

.hero-scroll-hint {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-top: -20px;
}
.scroll-line {
    width: 40px; height: 1px;
    background: var(--muted);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { width: 40px; } 50% { width: 70px; } }

/* ─── HERO MOCKUP ──────────────────────────────────── */
.hero-mockup {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    align-self: center;
}
.mockup-phone {
    width: 220px;
    height: 440px;
    background: var(--charcoal);
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.08);
    position: relative;
}
.phone-screen {
    width: 100%; height: 100%;
    background: #1a1a2e;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.phone-hero-img {
    height: 140px;
    background: linear-gradient(135deg, #2c1654 0%, #3d2470 50%, #1a1a2e 100%);
    position: relative;
    flex-shrink: 0;
}
.phone-hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, #1a1a2e);
}
.phone-content {
    padding: 12px 14px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.phone-script { font-family: var(--font-script); font-size: 1.3rem; color: var(--gold-light); line-height: 1.2; }
.phone-date { font-size: .6rem; letter-spacing: 3px; color: rgba(255,255,255,.5); text-transform: uppercase; }
.phone-timer-mini {
    display: flex; gap: 8px;
    background: rgba(255,255,255,.07);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 4px 0;
}
.phone-timer-mini span { display: flex; align-items: baseline; gap: 2px; }
.phone-timer-mini strong { font-size: .9rem; color: var(--white); font-weight: 300; font-family: var(--font-display); }
.phone-timer-mini small { font-size: .45rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; }
.phone-btn {
    margin-top: auto;
    background: var(--gold);
    color: var(--charcoal);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    width: 100%;
    text-align: center;
}
.mockup-badge {
    position: absolute;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    color: var(--charcoal);
}
.badge-rsvp { top: 40px; right: -30px; }
.badge-music { bottom: 80px; left: -40px; }

/* ═══════════════════════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════════════════════ */
.ind-stats-band {
    background: var(--charcoal);
    padding: 48px 24px;
}
.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 16px 48px; }
.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
}
.stat-label { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,.12); }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS — SHARED
═══════════════════════════════════════════════════════════════ */
.ind-section { padding: 100px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.15;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: 1rem; color: var(--muted); margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   CÓMO FUNCIONA
═══════════════════════════════════════════════════════════════ */
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}
.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 16px;
}
.step-icon {
    width: 56px; height: 56px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--gold-dark);
}
.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.step-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.step-connector {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--border), var(--gold-light), var(--border));
    margin-top: 80px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CATÁLOGO
═══════════════════════════════════════════════════════════════ */
.catalog-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: transparent;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: .25s;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.catalog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
    color: var(--muted);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
}
.catalog-empty i { font-size: 3rem; margin-bottom: 16px; display: block; color: var(--gold-light); }
.catalog-empty h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; color: var(--charcoal); }

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card.hidden-filter { display: none; }

.product-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .5px;
    z-index: 2;
    text-transform: uppercase;
}
.badge-popular { background: var(--charcoal); color: var(--gold-light); }
.badge-nuevo   { background: var(--sage); color: var(--white); }
.badge-premium { background: var(--gold-dark); color: var(--white); }

.product-thumb {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--cream-dark);
}
.product-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--gold-light);
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.product-thumb-overlay {
    position: absolute; inset: 0;
    background: rgba(28,28,30,.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.product-card:hover .product-thumb-overlay { opacity: 1; }
.thumb-btn-demo {
    padding: 10px 20px;
    background: var(--white);
    color: var(--charcoal);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.thumb-btn-demo:hover { background: var(--gold); color: var(--white); }

.product-body { padding: 20px 20px 12px; flex: 1; }
.product-tipo { font-size: .7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-dark); font-weight: 600; margin-bottom: 6px; }
.product-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; line-height: 1.2; }
.product-tagline { font-size: .85rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }

.product-features {
    display: flex; flex-direction: column; gap: 5px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}
.product-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; color: #555;
}
.product-features li i { color: var(--gold-dark); width: 14px; text-align: center; font-size: .75rem; }
.features-more { font-style: italic; color: var(--muted); font-size: .75rem; padding-left: 22px; }

.product-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-price { display: flex; flex-direction: column; gap: 2px; }
.price-before { font-size: .75rem; color: var(--muted); text-decoration: line-through; }
.price-current { font-size: 1.1rem; font-weight: 600; color: var(--charcoal); }
.btn-add-cart {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 16px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}
.btn-add-cart:hover { background: var(--gold-dark); }
.btn-add-cart.added { background: #2e7d32; }

/* ═══════════════════════════════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.feature-body h4 { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; }
.feature-body p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   DEMO PREVIEW
═══════════════════════════════════════════════════════════════ */
.ind-demo-preview .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.demo-desc { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 20px 0 28px; }
.demo-btns { display: flex; flex-direction: column; gap: 10px; }
.demo-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    color: var(--white);
    font-size: .9rem;
    font-weight: 500;
    transition: .25s;
}
.demo-btn:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); }
.demo-btn i { color: var(--gold-light); }

/* Demo phone (decorativo) */
.demo-devices { display: flex; justify-content: center; }
.demo-phone {
    width: 240px;
    background: #111;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06);
}
.demo-phone-inner {
    background: #0d0d1a;
    border-radius: 30px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}
.demo-screen-content { padding: 24px 18px; flex: 1; display: flex; flex-direction: column; gap: 20px; }
.ds-hero { text-align: center; padding: 30px 0 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ds-names { font-family: var(--font-script); font-size: 1.4rem; color: var(--gold-light); margin-bottom: 6px; }
.ds-date { font-size: .6rem; letter-spacing: 3px; color: rgba(255,255,255,.4); text-transform: uppercase; }
.ds-section-title { font-size: .6rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.ds-row { font-size: .75rem; color: rgba(255,255,255,.6); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.ds-rsvp {
    margin-top: auto;
    text-align: center;
    padding: 10px;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   PRECIOS
═══════════════════════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-featured {
    border-color: var(--charcoal);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
    background: var(--charcoal);
    color: var(--white);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--charcoal);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}
.plan-header { text-align: center; margin-bottom: 28px; }
.plan-icon { font-size: 2rem; margin-bottom: 10px; }
.plan-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; }
.pricing-featured .plan-name { color: var(--gold-light); }
.plan-desc { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.pricing-featured .plan-desc { color: rgba(255,255,255,.5); }
.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pricing-featured .plan-price { border-color: rgba(255,255,255,.12); }
.price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--charcoal); }
.pricing-featured .price-amount { color: var(--gold-light); }
.price-currency { font-size: .8rem; color: var(--muted); font-weight: 500; }

.plan-features { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--charcoal); }
.pricing-featured .plan-features li { color: rgba(255,255,255,.85); }
.plan-features li i { font-size: .8rem; width: 16px; }
.plan-features li i.fa-check { color: #2e7d32; }
.plan-feature-no { opacity: .4; }
.pricing-featured .plan-feature-no { opacity: .35; }
.pricing-featured .plan-features li i.fa-check { color: #66bb6a; }

.plan-btn {
    width: 100%;
    padding: 13px;
    background: transparent;
    border: 1.5px solid var(--charcoal);
    color: var(--charcoal);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.plan-btn:hover { background: var(--charcoal); color: var(--white); }
.plan-btn-featured {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
    font-weight: 600;
}
.plan-btn-featured:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.pricing-note { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 32px; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════════════════════════════ */
.testimonios-slider { position: relative; overflow: hidden; }
.testimonios-track {
    display: flex;
    transition: transform .45s cubic-bezier(.25,.8,.25,1);
}
.testimonio-card {
    flex: 0 0 calc(33.333% - 16px);
    margin-right: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
}
.test-stars { color: var(--gold); font-size: .85rem; margin-bottom: 16px; letter-spacing: 2px; }
.test-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}
.test-meta { display: flex; align-items: center; gap: 12px; }
.test-avatar {
    width: 40px; height: 40px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    color: var(--gold-dark);
    font-size: .85rem;
    flex-shrink: 0;
}
.test-name { font-weight: 600; font-size: .9rem; color: var(--charcoal); }
.test-event { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.slider-prev, .slider-next {
    width: 40px; height: 40px;
    border: 1.5px solid var(--border);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: .8rem;
    color: var(--charcoal);
    transition: .2s;
    display: flex; align-items: center; justify-content: center;
}
.slider-prev:hover, .slider-next:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: .2s;
}
.slider-dot.active { background: var(--charcoal); width: 20px; border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.ind-faq-inner { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    padding: 20px 0;
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: .95rem;
    color: var(--charcoal);
}
.faq-icon { flex-shrink: 0; color: var(--gold-dark); transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

/* ═══════════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════════ */
.ind-cta {
    padding: 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d35 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}
.ind-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4a97d' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
    position: relative;
}
.cta-script {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.cta-inner p { font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 40px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.ind-footer { background: #0f0f12; padding: 64px 24px 0; }
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: .85rem;
    transition: .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.3); margin-bottom: 16px; font-weight: 600; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; padding: 20px 24px; font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ind-hero { grid-template-columns: 1fr; }
    .hero-mockup { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-4px); }
    .ind-demo-preview .section-inner { grid-template-columns: 1fr; text-align: center; }
    .demo-devices { justify-content: center; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; }
    .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); flex-direction: column; padding: 20px 24px 28px; gap: 16px; box-shadow: var(--shadow-md); }
    .nav-links.open { display: flex; }
    .nav-links .nav-portal { margin: 0; width: fit-content; }
    .nav-hamburger { display: flex; }
    .ind-section { padding: 72px 20px; }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { width: 1px; height: 30px; background: var(--border); margin: 0; }
    .testimonio-card { flex: 0 0 calc(100% - 24px); }
    .stats-inner { flex-wrap: wrap; }
    .stat-item { flex: 0 0 40%; padding: 16px 20px; }
    .stat-divider { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .hero-headline .hl-serif { font-size: 2.5rem; }
    .hero-headline .hl-script { font-size: 2rem; }
    .catalog-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .filter-btn { font-size: .72rem; padding: 7px 14px; }
    .ind-nav { height: var(--nav-h); }
}
