/* ============================================================
   VACACERDO — /navidad-empresarial/ — Estilos exclusivos
   ============================================================ */

:root {
    --brand-red: #c43822;
    --brand-gold: #d4a24c;
    --bg-dark: #000000;
    --bg-surface: #0a0a0a;
    --bg-card: #141414;
    --border-thin: 1px solid rgba(255, 255, 255, 0.1);
    --text-muted: #888888;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ─── HERO + COUNTDOWN ─── */
.ne-hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.ne-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.35); }
.ne-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 75%, #000 100%); }
.ne-hero__content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 24px; text-align: center; }
.ne-hero__eyebrow { display: inline-block; color: var(--brand-gold); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 20px; }
.ne-hero__title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.15; margin: 0 0 18px; }
.ne-hero__sub { color: #ccc; font-size: 1.1rem; max-width: 580px; margin: 0 auto 40px; }

.ne-countdown { display: flex; gap: 16px; justify-content: center; margin-bottom: 8px; flex-wrap: wrap; }
.ne-countdown__item {
    background: rgba(255,255,255,0.06);
    border: var(--border-thin);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 76px;
}
.ne-countdown__num { display: block; font-size: 2rem; font-weight: 900; color: var(--brand-gold); font-variant-numeric: tabular-nums; }
.ne-countdown__label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 4px; }
.ne-countdown__caption { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 36px; }

.ne-hero__cta {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 16px 34px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.ne-hero__cta:hover { background: #d64030; }

/* ─── PAQUETES ─── */
.ne-paquetes { padding: 100px 24px; background: var(--bg-surface); }
.ne-paquetes__inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.ne-paquetes h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; margin: 0 0 14px; }
.ne-paquetes__intro { color: var(--text-muted); max-width: 560px; margin: 0 auto 56px; }
.ne-paquetes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
@media (max-width: 860px) { .ne-paquetes__grid { grid-template-columns: 1fr; } }

.ne-paquete {
    position: relative;
    background: var(--bg-card);
    border: var(--border-thin);
    border-radius: 16px;
    padding: 32px 28px;
}
.ne-paquete--destacado { border-color: var(--brand-gold); }
.ne-paquete__badge {
    position: absolute;
    top: -13px;
    left: 28px;
    background: var(--brand-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
}
.ne-paquete h3 { font-size: 1.25rem; margin: 8px 0 12px; }
.ne-paquete__desc { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 20px; }
.ne-paquete__link { color: var(--brand-gold); text-decoration: none; font-weight: 700; font-size: 0.92rem; }
.ne-paquete__link:hover { text-decoration: underline; }

/* ─── CTA FINAL ─── */
.ne-cta { padding: 90px 24px; text-align: center; }
.ne-cta__inner { max-width: 540px; margin: 0 auto; }
.ne-cta__inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; margin: 0 0 14px; }
.ne-cta__inner p { color: var(--text-muted); margin: 0 0 30px; }
.ne-cta__btn {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.ne-cta__btn:hover { background: #d64030; }
