/* =========================================================
   ÁNGELES · Componentes
   ========================================================= */

/* ───── Botones ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold-shimmer);
  background-size: 220% 100%;
  color: var(--noir-900);
  box-shadow: var(--shadow-gold);
  animation: shimmer 6s linear infinite;
}
.btn-primary:hover {
  box-shadow: 0 22px 60px -16px rgba(212, 175, 55, .8);
  color: var(--noir-950);
}

.btn-burdeos {
  background: linear-gradient(135deg, var(--burdeos-700), var(--burdeos-500));
  color: var(--crema-200);
  box-shadow: 0 14px 36px -16px rgba(92,26,27,.6);
}
.btn-burdeos:hover { color: #fff; box-shadow: 0 22px 60px -16px rgba(92,26,27,.85); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold-50); color: var(--burdeos); }

.btn-ghost-light {
  background: transparent;
  color: var(--crema-200);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: var(--gold); }

.btn-link {
  padding: 0;
  background: transparent;
  color: var(--burdeos);
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
}
.btn-link:hover { color: var(--gold-deep); }

.btn-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.btn-icon:hover { background: var(--gold-50); }

/* Brillo metálico al hover */
.btn-primary::before, .btn-burdeos::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  transition: left .8s var(--ease-out);
}
.btn-primary:hover::before, .btn-burdeos:hover::before { left: 130%; }

/* ───── Navbar ───── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(250, 246, 238, 0);
  backdrop-filter: blur(0px);
  transition: background var(--t-base) var(--ease-out),
              backdrop-filter var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.navbar.scrolled {
  background: rgba(250, 246, 238, .92);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-soft);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
  display: flex; align-items: center; gap: var(--space-3);
  color: var(--text-on-dark);
  transition: color var(--t-base);
}
.navbar.scrolled .navbar-brand,
.navbar.theme-light .navbar-brand { color: var(--text); }
.navbar-brand .logo-mark { width: 38px; height: 38px; }
.navbar-brand .brand-text {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.navbar-brand .brand-tagline {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .8;
}
.nav-menu {
  display: flex; align-items: center; gap: var(--space-6);
}
.nav-menu a {
  color: var(--text-on-dark);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast);
}
.navbar.scrolled .nav-menu a { color: var(--text); }
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-base), left var(--t-base);
}
.nav-menu a:hover::after { width: 100%; left: 0; }
.nav-menu a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--burdeos-900);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-5);
    transform: translateX(100%);
    transition: transform var(--t-base) var(--ease-out);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { color: var(--crema-200); font-size: var(--fs-lg); }
  .nav-toggle { display: inline-flex; color: var(--text-on-dark); }
  .navbar.scrolled .nav-toggle { color: var(--text); }
}

/* ───── Hero cinematográfico ───── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--noir-900);
  color: var(--crema-200);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
}
.hero-scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(212,175,55,.15), transparent 55%),
    linear-gradient(180deg, rgba(15,11,8,.55) 0%, rgba(15,11,8,.35) 40%, rgba(58,14,15,.85) 100%);
}
.hero-content {
  text-align: center;
  padding: var(--space-9) var(--container-pad);
  max-width: 920px;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-5);
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  line-height: .85;
  margin: 0 0 var(--space-3);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) .35s forwards;
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 var(--space-5);
  color: var(--crema-200);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) .5s forwards;
}
.hero-desc {
  max-width: 580px;
  margin: 0 auto var(--space-6);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: rgba(250, 246, 238, .85);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) .65s forwards;
}
.hero-actions {
  display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) .8s forwards;
}
.hero-decor {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--gold));
  opacity: .7;
  animation: scrollHint 2.4s ease-in-out infinite;
}

/* Bordes art-deco esquinas hero */
.hero-corners::before, .hero-corners::after {
  content: "";
  position: absolute;
  width: 80px; height: 80px;
  border: 1px solid var(--gold);
  z-index: 1;
}
.hero-corners::before { top: 32px; left: 32px; border-right: 0; border-bottom: 0; }
.hero-corners::after  { bottom: 32px; right: 32px; border-left: 0; border-top: 0; }
@media (max-width: 700px) { .hero-corners::before, .hero-corners::after { width: 40px; height: 40px; } }

/* ───── Bullets de promesa ───── */
.promise-strip {
  background: var(--noir-900);
  color: var(--crema-200);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 var(--space-4);
  border-left: 1px solid rgba(212,175,55,.18);
  min-height: 0;
}
.promise-item .icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300);
}
.promise-item .promise-text { min-width: 0; }
.promise-item h4 {
  color: var(--gold-200);
  font-family: var(--font-serif);
  font-size: 1rem;
  margin: 0 0 2px;
  font-weight: 500;
  letter-spacing: .005em;
}
.promise-item p {
  font-size: 13px;
  color: rgba(250,246,238,.65);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .promise-strip { padding: 2rem 0; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }
  .promise-item { padding: 0 0 0 var(--space-3); border-left-width: 1px; }
  .promise-item .icon { width: 26px; height: 26px; }
  .promise-item h4 { font-size: .92rem; }
  .promise-item p  { font-size: 12px; line-height: 1.4; }
}
@media (max-width: 480px) {
  .promise-strip { padding: 1.5rem 0; }
  .promise-grid  { gap: 1rem .75rem; }
  .promise-item p { display: none; }   /* En móvil sólo título + ícono para no inflar el alto */
  .promise-item h4 { font-size: .85rem; }
}

/* ───── Service Card ───── */
.service-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  display: flex; flex-direction: column;
  border: 1px solid var(--line-soft);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--burdeos-700), var(--burdeos-900));
}
.service-card-media img,
.service-card-media video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-media video {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.service-card:hover .service-card-media video[data-loaded] { opacity: 1; }
.service-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold-shimmer); background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
  color: var(--noir-900);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.service-card-body { padding: var(--space-5) var(--space-5) var(--space-6); }
.service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 var(--space-2);
  color: var(--burdeos);
}
.service-card-body p { font-size: var(--fs-sm); color: var(--text-soft); margin: 0 0 var(--space-4); line-height: 1.65; }
.service-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-soft);
}
.service-card-meta .price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--burdeos-700);
  font-weight: 600;
}
.service-card-meta .price small { font-size: 11px; color: var(--text-mute); margin-right: 4px; text-transform: uppercase; letter-spacing: .15em; font-weight: 600; }
.service-card-meta .duration {
  display: flex; align-items: center; gap: 6px;
  font-size: var(--fs-xs); color: var(--text-mute);
  font-weight: 500;
}

/* ───── Testimonial reel ───── */
.testimonials-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}
.testimonial-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--burdeos-900);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base) var(--ease-out);
}
.testimonial-card:hover { transform: scale(1.02); }
.testimonial-card video, .testimonial-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.testimonial-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.85));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-4);
  color: var(--crema-200);
}
.testimonial-card .play-pulse {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, .9);
  display: flex; align-items: center; justify-content: center;
  color: var(--noir-900);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, .6);
  animation: pulseGold 2s infinite;
  transition: opacity var(--t-base);
}
.testimonial-card.playing .play-pulse { opacity: 0; pointer-events: none; }
.testimonial-card .name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.testimonial-card .meta { font-size: 11px; opacity: .8; letter-spacing: .12em; text-transform: uppercase; }
.testimonial-card .stars { color: var(--gold-300); margin-top: 6px; font-size: 13px; letter-spacing: 2px; }

/* Testimonio en texto (sin video) */
.testimonial-card.text-only {
  aspect-ratio: 9/12;
  background: linear-gradient(160deg, var(--burdeos-700), var(--burdeos-900));
  padding: var(--space-5);
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--crema-200);
}
.testimonial-card.text-only .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
}
.testimonial-card.text-only::before {
  content: "“";
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold-300);
  line-height: .7;
  opacity: .4;
}

/* ───── Equipo ───── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.team-card {
  text-align: center;
  background: var(--surface);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base);
}
.team-card:hover { transform: translateY(-4px); }
.team-card .photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-4);
  border: 2px solid var(--gold);
  padding: 4px;
  background: var(--surface);
}
.team-card .photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.team-card h4 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--burdeos); margin-bottom: 4px; }
.team-card .role { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }

/* ───── WhatsApp FAB ───── */
.fab-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: var(--z-fab);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 36px -12px rgba(37, 211, 102, .55);
  transition: transform var(--t-base);
  animation: pulseGreen 2.4s infinite;
}
.fab-whatsapp:hover { transform: scale(1.08); color: white; }
.fab-whatsapp svg { width: 30px; height: 30px; }

/* ───── Footer ───── */
.footer {
  background: var(--noir-900);
  color: var(--crema-300);
  padding: var(--space-9) 0 var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--gold-300);
  margin: 0 0 var(--space-3);
}
.footer ul li { padding: 4px 0; font-size: var(--fs-sm); color: rgba(250,246,238,.7); }
.footer ul li a:hover { color: var(--gold-300); }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,.15);
  padding-top: var(--space-4);
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--fs-xs);
  color: rgba(250,246,238,.5);
  flex-wrap: wrap; gap: var(--space-3);
}

/* ───── Forms ───── */
.form-field { margin-bottom: var(--space-4); }
.form-field label {
  display: block;
  font-size: 11px; text-transform: uppercase; letter-spacing: .22em;
  color: var(--burdeos); font-weight: 600;
  margin-bottom: var(--space-2);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  transition: border var(--t-fast), box-shadow var(--t-fast);
  font-size: var(--fs-base);
  color: var(--text);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .15);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* =========================================================
   HERO V2 — Marketing-first
   ========================================================= */

.hero-v2 {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--noir-950);
  color: var(--crema-200);
  padding: calc(var(--header-h) + var(--space-7)) 0 var(--space-7);
}

/* Layer 1 — gradient base */
.hero-bg {
  position: absolute; inset: 0; z-index: -4;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%,   rgba(212,175,55,.20), transparent 60%),
    radial-gradient(ellipse 100% 90% at 50% 100%, rgba(58,14,15,.95),  transparent 70%),
    linear-gradient(180deg, var(--noir-900) 0%, var(--burdeos-900) 100%);
}

/* Layer 2 — mesh dorado animado */
.hero-mesh {
  position: absolute; inset: -10%; z-index: -3;
  background-image:
    radial-gradient(circle 220px at 20% 30%, rgba(212,175,55,.16), transparent 60%),
    radial-gradient(circle 320px at 78% 70%, rgba(184,134,11,.14), transparent 60%),
    radial-gradient(circle 180px at 70% 18%, rgba(255,233,176,.10), transparent 60%),
    radial-gradient(circle 200px at 30% 80%, rgba(212,175,55,.10), transparent 60%);
  filter: blur(24px);
  animation: meshFloat 14s ease-in-out infinite;
}

/* Layer 3 — halo central pulsante detrás del lettering */
.hero-glow {
  position: absolute;
  top: 48%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 100%);
  height: min(680px, 80vh);
  z-index: -2;
  background: radial-gradient(ellipse, rgba(212,175,55,.22), transparent 65%);
  animation: heroGlowPulse 7s ease-in-out infinite;
  pointer-events: none;
  filter: blur(8px);
}

/* Layer 4 — partículas doradas */
.hero-particles {
  position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-300);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px rgba(212,175,55,.7);
  animation: particleRise linear infinite;
}

/* Container central */
.hero-v2 .container {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-5);
  text-align: center;
  z-index: 1;
}

/* Trust pill arriba */
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.32);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--gold-200);
  font-weight: 500;
  backdrop-filter: blur(10px);
  letter-spacing: .04em;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .15s forwards;
}
.hero-pill .stars { color: var(--gold-300); letter-spacing: 2.5px; font-size: 13px; }
.hero-pill .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .5; }

/* Eyebrow */
.hero-pre {
  font-size: 10.5px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-300);
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .3s forwards;
  font-weight: 600;
}

/* ── Headline pro ── */
.hero-headline {
  margin: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(.4rem, 1.2vw, .9rem);
  line-height: 1;
  font-weight: 400;
}

/* Serif row enmarcado por reglas doradas finas (estilo editorial) */
.h-serif-row {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .45s forwards;
}
.serif-rule {
  width: clamp(28px, 7vw, 96px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400) 50%, transparent);
  flex-shrink: 0;
}
.h-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 3.5vw, 2.4rem);
  color: rgba(250, 246, 238, .94);
  letter-spacing: .015em;
  white-space: nowrap;
}

/* Script wrapper con underline flourish */
.h-script-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(.5rem, 3vw, 2rem);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) .65s forwards;
}

/* Script gigante con tratamiento dorado pro */
.h-script {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 13rem);
  line-height: .92;
  letter-spacing: 0;

  /* Capa 1: shine sweep animado (transparente excepto el highlight)
     Capa 2: gradient vertical con 5 stops para crear dimensión real */
  background-image:
    linear-gradient(
      105deg,
      transparent 35%,
      rgba(255, 255, 255, .58) 48%,
      rgba(255, 255, 255, .8)  50%,
      rgba(255, 255, 255, .58) 52%,
      transparent 65%
    ),
    linear-gradient(
      178deg,
      #FFEFC2 0%,
      #FFD96B 22%,
      #D4AF37 48%,
      #B8860B 76%,
      #7a5808 100%
    );
  background-size: 220% 100%, 100% 100%;
  background-position: -150% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  /* Profundidad: highlight superior + sombra dorada concentrada + halo atmosférico */
  filter:
    drop-shadow(0 1px 0   rgba(255, 250, 220, .35))
    drop-shadow(0 6px 18px rgba(184, 134, 11, .50))
    drop-shadow(0 0 60px  rgba(212, 175, 55, .18));

  animation: shineSweep 7s ease-in-out infinite;
}

/* Underline flourish que se dibuja */
.h-underline {
  display: block;
  width: clamp(140px, 36%, 320px);
  height: 8px;
  margin-top: .1em;
  opacity: 0;
  animation: fadeIn .8s var(--ease-out) 1.4s forwards;
  pointer-events: none;
}
.h-underline path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: ulDraw 1.6s var(--ease-out) 1.5s forwards;
  filter: drop-shadow(0 1px 4px rgba(212, 175, 55, .35));
}

/* Mobile — sombra más liviana para perf y mejor contraste */
@media (max-width: 700px) {
  .h-script {
    filter: drop-shadow(0 4px 14px rgba(184, 134, 11, .42));
  }
  .h-underline { width: 60%; }
}

/* Sub */
.hero-sub {
  max-width: 580px;
  margin: 0 auto;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: rgba(250,246,238,.78);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .75s forwards;
}
.hero-sub strong { color: var(--gold-200); font-weight: 500; }

/* CTA group */
.hero-cta {
  display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .9s forwards;
}

/* Trust strip dorado */
.hero-strip {
  display: flex;
  align-items: center; justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(212,175,55,.18);
  font-size: 12px;
  color: var(--gold-200);
  letter-spacing: .04em;
  max-width: 580px;
  width: 100%;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.05s forwards;
}
.hero-strip .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-strip svg { width: 16px; height: 16px; color: var(--gold-300); }
.hero-strip .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-400); opacity: .45; }

/* Live availability widget */
.hero-avail {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(212,175,55,.28);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  font-size: 12.5px;
  color: var(--crema-200);
  letter-spacing: .03em;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
  box-shadow: 0 12px 30px -14px rgba(212,175,55,.25);
}
.hero-avail .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .65);
  animation: pulseGreenSm 1.8s infinite;
}
.hero-avail strong {
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: .08em;
}
.hero-avail a {
  color: var(--gold-200);
  border-bottom: 1px solid var(--gold-400);
  padding-bottom: 1px;
  margin-left: 4px;
  font-weight: 600;
  transition: color var(--t-fast);
}
.hero-avail a:hover { color: #fff; }

/* Floaters social proof — sólo desktop */
.hero-floater {
  position: absolute;
  z-index: 3;
  background: rgba(255, 250, 240, .07);
  border: 1px solid rgba(212,175,55,.25);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--crema-200);
  font-size: 12px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 50px -18px rgba(0,0,0,.7);
  max-width: 250px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.hero-floater.show { opacity: 1; transform: translateY(0); }
.hero-floater .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--burdeos-700));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--noir-900);
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(212,175,55,.4);
}
.hero-floater .body { line-height: 1.4; }
.hero-floater .body .t1 { font-weight: 600; color: var(--crema-100); }
.hero-floater .body .t2 { opacity: .7; font-size: 11px; margin-top: 2px; }
.hero-floater.left  { left: clamp(16px, 4vw, 48px);  bottom: 110px; animation: floatGentle 6s ease-in-out infinite; }
.hero-floater.right { right: clamp(16px, 4vw, 48px); top: 130px;    animation: floatGentle 6s ease-in-out infinite 1.2s; }
@media (max-width: 1024px) { .hero-floater { display: none; } }

/* Marquee strip post-hero */
.marquee-strip {
  background: var(--noir-900);
  border-top: 1px solid rgba(212,175,55,.2);
  border-bottom: 1px solid rgba(212,175,55,.2);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0;  background: linear-gradient(90deg, var(--noir-900), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(-90deg, var(--noir-900), transparent); }
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--gold-300);
  display: inline-flex; align-items: center; gap: 24px;
  font-weight: 500;
}
.marquee-item .star { color: var(--gold-500); font-size: .8em; opacity: .7; }

/* Mobile tweaks */
@media (max-width: 700px) {
  .hero-v2 { padding-top: calc(var(--header-h) + var(--space-5)); }
  .hero-v2 .container { gap: var(--space-4); padding: 0 var(--container-pad); }
  .hero-headline .h-serif { font-size: clamp(1.65rem, 7vw, 2.5rem); }
  .hero-headline .h-script { font-size: clamp(4.8rem, 22vw, 8rem); }
  .hero-strip { gap: 12px; font-size: 11px; }
  .hero-strip .sep { display: none; }
}
