/* ===========================================================
   ORIVIA — Agencia Premium de Transformación
   Paleta: ink #07080c · navy #0d1526 · gold #c9a24b/#e6c878 · cream #f4efe6
   Capa premium sobre Tailwind (utilidades de layout)
   =========================================================== */

:root {
  --ink: #07080c;
  --ink-2: #0a0c12;
  --navy: #0c1424;
  --navy-2: #101c34;
  --gold: #c9a24b;
  --gold-light: #e8cd8a;
  --gold-deep: #a8842f;
  --cream: #f4efe6;
  --cream-soft: rgba(244, 239, 230, 0.66);
  --cream-mute: rgba(244, 239, 230, 0.4);
  --line: rgba(201, 162, 75, 0.16);
  --line-soft: rgba(244, 239, 230, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background — deep navy spills + faint gold */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(16, 28, 52, 0.7), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(201, 162, 75, 0.05), transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(16, 28, 52, 0.5), transparent 55%);
}

#orivia-particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.page { position: relative; z-index: 2; }

/* ─── Typography ─────────────────────────────────────────── */

.font-display { font-family: 'Marcellus', Georgia, serif; }
.font-soft { font-family: 'Cormorant Garamond', Georgia, serif; }

h1, h2, h3 { font-family: 'Marcellus', Georgia, serif; font-weight: 400; }

.gold-text {
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ─── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #1a1304;
  box-shadow: 0 8px 30px -8px rgba(201, 162, 75, 0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px -10px rgba(201, 162, 75, 0.7), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-ghost {
  background: rgba(244, 239, 230, 0.02);
  border-color: rgba(244, 239, 230, 0.22);
  color: var(--cream);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 162, 75, 0.06);
}

.btn .arrow { transition: transform 0.4s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── Glass cards ────────────────────────────────────────── */

.glass {
  position: relative;
  background: linear-gradient(165deg, rgba(244, 239, 230, 0.045) 0%, rgba(244, 239, 230, 0.015) 60%, transparent 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.glass::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 205, 138, 0.5), transparent);
  opacity: 0.5;
}
.glass:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 75, 0.42);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8), 0 0 50px -20px rgba(201, 162, 75, 0.18);
}

.card-glow {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.16), transparent 65%);
  filter: blur(50px);
  opacity: 0;
  transition: opacity 0.55s;
  pointer-events: none;
}
.glass:hover .card-glow { opacity: 1; }

/* ─── Icon chips ─────────────────────────────────────────── */

.icon-chip {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(201, 162, 75, 0.14), rgba(201, 162, 75, 0.03));
  border: 1px solid rgba(201, 162, 75, 0.25);
  color: var(--gold-light);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.glass:hover .icon-chip {
  transform: scale(1.06);
  border-color: var(--gold);
  box-shadow: 0 0 26px -6px rgba(201, 162, 75, 0.5);
}
.icon-chip svg { width: 26px; height: 26px; }

/* ─── Section helpers ────────────────────────────────────── */

.section { position: relative; padding: clamp(90px, 12vw, 170px) 0; overflow: hidden; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); position: relative; z-index: 2; }
.scroll-anchor { scroll-margin-top: 90px; }

/* ─── Isotipo watermark (marca de agua premium) ──────────── */
.section-watermark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  width: min(620px, 58vw);
  height: auto;
  opacity: 0.05;
  filter: saturate(0.85);
}
.wm-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.wm-right  { top: 50%; right: -8%; transform: translateY(-50%); }
.wm-left   { top: 50%; left: -8%;  transform: translateY(-50%); }
.wm-soft   { opacity: 0.035; }
.wm-mid    { opacity: 0.06; }
.wm-strong { opacity: 0.085; }
.wm-sm { width: min(440px, 50vw); }
.wm-lg { width: min(760px, 70vw); }
.wm-xl { width: min(1080px, 92vw); }
.hero-watermark { top: 46%; opacity: 0.05; }
.footer-watermark { top: 50%; opacity: 0.04; }

/* ─── Historia ───────────────────────────────────────────── */
.history-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.history-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--gold-light);
  margin: 0 0 18px;
}
.history-body {
  font-size: 16px;
  color: var(--cream-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ─── Antes / Después ────────────────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}
.ba-card {
  border-radius: 20px;
  padding: 44px 38px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.ba-before {
  background: linear-gradient(165deg, rgba(244,239,230,0.03), rgba(244,239,230,0.008));
}
.ba-after {
  background: linear-gradient(165deg, rgba(201,162,75,0.12), rgba(201,162,75,0.03));
  border-color: rgba(201,162,75,0.35);
  box-shadow: 0 30px 70px -34px rgba(201,162,75,0.3);
}
.ba-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 28px;
}
.ba-label-gold { color: var(--gold); }
.ba-list { list-style: none; padding: 0; margin: 0; }
.ba-list li {
  font-size: 16px;
  color: var(--cream-soft);
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.ba-list li:last-child { border-bottom: none; }
.ba-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 2px;
  background: var(--cream-mute);
  border-radius: 2px;
}
.ba-list-gold li { color: var(--cream); }
.ba-list-gold li::before {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201,162,75,0.7);
}
.ba-arrow {
  display: grid;
  place-items: center;
  color: var(--gold);
  width: 52px;
}
.ba-arrow svg { width: 40px; height: 40px; }
.ba-quote {
  text-align: center;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.3;
  margin: 56px auto 0;
  max-width: 20ch;
}

/* ─── Método ORIVIA® ─────────────────────────────────────── */
.reg { font-size: 0.32em; vertical-align: super; color: var(--gold); }
.metodo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.metodo-step {
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
}
.metodo-letter {
  font-family: 'Marcellus', serif;
  font-size: 64px;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 18px;
  opacity: 0.92;
}
.metodo-step h3 {
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 12px;
}
.metodo-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--gold-light);
  margin-bottom: 8px;
  line-height: 1.4;
}
.metodo-step p:not(.metodo-tagline) {
  font-size: 14.5px;
  color: var(--cream-soft);
  line-height: 1.6;
}

/* ─── ¿Por qué diferente? ────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card { padding: 44px 36px; position: relative; overflow: hidden; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 40px;
  color: rgba(201,162,75,0.5);
  display: block;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 23px;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 14px;
}
.why-card p {
  font-size: 15px;
  color: var(--cream-soft);
  line-height: 1.7;
}

/* ─── Imagina 12 meses ───────────────────────────────────── */
.imagina-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.imagina-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
}
.imagina-item p {
  font-size: 16px;
  color: var(--cream);
  margin: 0;
  line-height: 1.4;
}
.imagina-check {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,0.5);
  background: rgba(201,162,75,0.08);
  position: relative;
}
.imagina-check::after {
  content: "";
  position: absolute;
  left: 12px; top: 9px;
  width: 7px; height: 13px;
  border: solid var(--gold-light);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ─── Footer extra ───────────────────────────────────────── */
.footer { position: relative; overflow: hidden; }
.footer-top, .footer-base { position: relative; z-index: 2; }
.footer-microquote {
  font-style: italic;
  font-size: 17px;
  color: var(--gold-light);
  margin-top: 16px;
  opacity: 0.9;
}

/* ─── Artículos / Blog ───────────────────────────────────── */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
}
.blog-cat {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream-soft);
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.3s;
}
.blog-cat:hover {
  border-color: rgba(201,162,75,0.5);
  color: var(--gold-light);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-cat {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.blog-card h3 {
  font-size: 22px;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 14px;
}
.blog-card p {
  font-size: 15px;
  color: var(--cream-soft);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.blog-card-link {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-card-link .arrow { transition: transform 0.3s; }
.blog-card:hover .blog-card-link .arrow { transform: translateX(4px); }

.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-title {
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.section-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.section-title-xl {
  font-size: clamp(38px, 6vw, 78px);
  letter-spacing: 0.01em;
  line-height: 1.04;
}

.lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2vw, 24px);
  font-style: italic;
  color: var(--cream-soft);
  line-height: 1.5;
}

/* ─── Nav ────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.scrolled {
  padding: 14px clamp(20px, 5vw, 48px);
  background: rgba(7, 8, 12, 0.72);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}
.brand-mark {
  width: 34px; height: 34px;
  position: relative;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(201, 162, 75, 0.25));
}
.footer .brand-logo { width: 56px; height: 56px; }
.brand-name {
  font-family: 'Marcellus', serif;
  font-size: 22px;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 38px);
  flex: 1 1 auto;
  margin: 0 clamp(24px, 4vw, 56px);
}
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream-soft);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 75, 0.06);
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 10px;
  cursor: pointer;
}
.nav-burger span { display: block; width: 18px; height: 1.5px; background: var(--gold-light); transition: all 0.3s; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7, 8, 12, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'Marcellus', serif;
  font-size: 26px;
  color: var(--cream);
  text-decoration: none;
  padding: 12px;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ─── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: clamp(116px, 15vh, 196px) clamp(20px, 5vw, 48px) 96px;
  overflow: hidden;
}

.hero-rays {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 48%;
  height: 120%;
  background: linear-gradient(180deg, rgba(201, 162, 75, 0.12), rgba(16, 28, 52, 0.04) 45%, transparent 80%);
  filter: blur(60px);
  clip-path: polygon(40% 0, 60% 0, 92% 100%, 8% 100%);
  pointer-events: none;
  animation: rayBreathe 12s ease-in-out infinite;
}
@keyframes rayBreathe {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.08); }
}

.hero-title {
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 28px 0 0;
  color: var(--cream);
}
.hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

/* Hero brand lockup (isotipo + ORIVIA) */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-isotipo {
  width: clamp(78px, 10vw, 120px);
  height: auto;
  filter: drop-shadow(0 6px 30px rgba(201, 162, 75, 0.32));
  animation: isoFloat 7s ease-in-out infinite;
}
@keyframes isoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-wordmark {
  font-family: 'Marcellus', serif;
  font-size: clamp(40px, 7.4vw, 88px);
  letter-spacing: 0.36em;
  padding-left: 0.36em;
  line-height: 1;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(201, 162, 75, 0.18);
}
.hero-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.hero-divider {
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 8px;
}
.hero-message {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin: 26px 0 0;
}
.hero-message em {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--cream-soft);
  max-width: 640px;
  margin: 30px auto 0;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 38px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 38px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ─── Audience / Services grids ──────────────────────────── */

.grid-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card { padding: 38px 32px; height: 100%; }
.feature-card h3 {
  font-size: 22px;
  margin: 22px 0 12px;
  color: var(--cream);
  line-height: 1.25;
}
.feature-card p {
  font-size: 15px;
  color: var(--cream-soft);
  line-height: 1.65;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-list li {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--cream-soft);
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(201, 162, 75, 0.04);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  opacity: 0.7;
}

/* Pill tags (Quiénes somos) */
.pill {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cream-soft);
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(201, 162, 75, 0.05);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pill:hover {
  border-color: rgba(201, 162, 75, 0.45);
  color: var(--gold-light);
  background: rgba(201, 162, 75, 0.1);
}

/* Quote band */
.quote-band {
  text-align: center;
  padding: clamp(60px, 8vw, 110px) 0;
}
.quote-band p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.25;
  color: var(--cream);
  max-width: 18ch;
  margin: 0 auto;
}

/* ─── Process ────────────────────────────────────────────── */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}
.process-step:first-child { border-left: none; padding-left: 0; }
.process-num {
  font-family: 'Marcellus', serif;
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.process-num::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.process-step h3 { font-size: 26px; margin-bottom: 14px; color: var(--cream); }
.process-step p { font-size: 15px; color: var(--cream-soft); line-height: 1.65; }

/* ─── Transformación interior ────────────────────────────── */

.transform-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.transform-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.85), 0 0 60px -30px rgba(201,162,75,0.18);
  background:
    radial-gradient(ellipse at 50% 25%, rgba(201, 162, 75, 0.16), transparent 55%),
    linear-gradient(160deg, var(--navy-2), var(--ink) 75%);
}
.transform-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.transform-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 162, 75, 0.2);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}
.transform-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(7,8,12,0.35));
  pointer-events: none;
  z-index: 1;
}

.check-list { list-style: none; padding: 0; margin: 28px 0 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--cream-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 162, 75, 0.6);
}

/* ─── Testimonials ───────────────────────────────────────── */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card { padding: 36px 30px; height: 100%; display: flex; flex-direction: column; }
.testi-mark { font-family: 'Marcellus', serif; font-size: 52px; line-height: 0.5; color: var(--gold); opacity: 0.5; }
.testi-card p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.45;
  color: var(--cream);
  margin: 22px 0 28px;
  flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(201,162,75,0.3), rgba(201,162,75,0.08));
  border: 1px solid rgba(201, 162, 75, 0.4);
  display: grid;
  place-items: center;
  font-family: 'Marcellus', serif;
  color: var(--gold-light);
  font-size: 18px;
}
.testi-name { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 14px; color: var(--cream); }
.testi-role { font-size: 12px; color: var(--cream-mute); letter-spacing: 0.04em; }

/* ─── CTA final ──────────────────────────────────────────── */

.cta-final {
  position: relative;
  text-align: center;
  padding: clamp(100px, 14vw, 200px) 0;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201, 162, 75, 0.1), transparent 60%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(38px, 6.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  position: relative;
  z-index: 2;
}
.cta-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* ─── Footer ─────────────────────────────────────────────── */

.footer {
  position: relative;
  padding: 80px clamp(20px, 5vw, 48px) 48px;
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
}
.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--cream-soft);
  margin-top: 18px;
  max-width: 34ch;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--cream-soft);
  text-decoration: none;
  margin-bottom: 11px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-base {
  max-width: 1240px;
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legacy {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
}
.footer-copy { font-size: 12px; color: var(--cream-mute); letter-spacing: 0.06em; }

/* ─── Floating WhatsApp ──────────────────────────────────── */

.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 9000;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float .pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.45; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ─── Reveal animations ──────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-rays, .scrollPulse, .wa-float .pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta-btn { display: none; }
  .grid-audience, .grid-services, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .process-step:nth-child(3) { border-left: none; padding-left: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .metodo-grid, .why-grid, .imagina-grid { grid-template-columns: repeat(2, 1fr); }
  .history-grid { grid-template-columns: 1fr; gap: 36px; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .grid-audience, .grid-services, .testi-grid { grid-template-columns: 1fr; }
  .transform-grid { grid-template-columns: 1fr; }
  .transform-text { order: 1; }
  .transform-visual { order: 2; max-width: 440px; margin: 0 auto; width: 100%; }
  .process-grid { grid-template-columns: 1fr; gap: 32px 0; }
  .process-step { border-left: none; padding-left: 0; padding: 0 0 0 22px; border-left: 1px solid var(--line); }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-ctas .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-base { flex-direction: column; text-align: center; }
  .nav-cta-btn { display: none; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-name { font-size: 19px; letter-spacing: 0.26em; }
  .metodo-grid, .why-grid, .imagina-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; gap: 16px; }
  .ba-arrow { transform: rotate(90deg); margin: 0 auto; }
}
