/* =========================================================
   Raíz Studio Wellness — Demo Digital Bee
   Boutique wellness · verde salvia + crema · Fraunces / Hanken Grotesk
   ========================================================= */

:root {
  --bg:      #F4F1EA;
  --surface: #FBFAF6;
  --fg:      #23302A;
  --muted:   #5E6B62;
  --accent:  #3E6B4F;
  --line:    #DAD5C8;

  /* Variaciones derivadas para contraste y profundidad */
  --accent-deep: #2F5340;   /* verde más oscuro, seguro como texto sobre crema */
  --accent-soft: #E6EDE3;   /* relleno verde muy claro */
  --ink-soft:    #3A463F;   /* texto secundario fuerte sobre crema */
  --cream-2:     #EFEBE0;   /* fondo alterno */
  --wa:          #25D366;
  --wa-deep:     #0C6E3A;   /* verde WhatsApp oscuro, AA como texto sobre crema */

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-soft: 0 22px 60px -32px rgba(47, 83, 64, 0.42);
  --shadow-card: 0 16px 44px -30px rgba(47, 83, 64, 0.5);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1180px;
  --pad: clamp(1.15rem, 5vw, 4rem);
  --demobar-h: 34px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.075rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Tipografía utilitaria ---------- */
.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.kicker--light { color: #cfe0d0; }
.kicker--light::before { background: #9bc0a4; }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 1.1rem;
  max-width: 18ch;
}
.section-title--light { color: #FBFAF6; }

.section-lead {
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.18rem);
  color: var(--muted);
  margin: 0;
  max-width: 56ch;
}
.section-lead--light { color: #cdded0; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.45s var(--ease-out), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid {
  background: var(--accent-deep);
  color: #FBFAF6;
  box-shadow: 0 14px 30px -16px rgba(47, 83, 64, 0.7);
}
.btn--solid:hover { background: #264433; box-shadow: 0 20px 40px -16px rgba(47, 83, 64, 0.78); }

.btn--ghost {
  background: transparent;
  color: var(--accent-deep);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent); background: var(--accent-soft); }

.btn--outline {
  background: transparent;
  color: var(--accent-deep);
  border-color: rgba(62, 107, 79, 0.4);
}
.btn--outline:hover { border-color: var(--accent-deep); background: var(--accent-soft); }

.btn--block { width: 100%; }

.btn--wa {
  background: var(--wa);
  color: #06351c;
  box-shadow: 0 16px 34px -16px rgba(18, 140, 75, 0.65);
}
.btn--wa:hover { background: #1fbe5c; }
.btn__wa-ic { width: 22px; height: 22px; display: inline-flex; }
.btn__wa-ic svg { width: 100%; height: 100%; }

/* =========================================================
   Barra DEMO
   ========================================================= */
.demobar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--demobar-h);
  z-index: 120;
  background: var(--accent-deep);
  color: #eef4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}
.demobar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #9bd6ad;
  box-shadow: 0 0 0 4px rgba(155, 214, 173, 0.22);
  flex: none;
}
.demobar__txt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.demobar__cta {
  flex: none;
  font-weight: 600;
  padding: 0.22rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.25s var(--ease);
}
.demobar__cta:hover { background: rgba(255, 255, 255, 0.26); }

/* =========================================================
   Navegación
   ========================================================= */
.nav {
  position: sticky;
  top: var(--demobar-h);
  z-index: 100;
  background: rgba(244, 241, 234, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(218, 213, 200, 0.7);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.nav__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 12px;
}
.nav__mark svg { width: 24px; height: 24px; }
.nav__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.nav__name-soft { color: var(--muted); font-weight: 400; }

.nav__menu { display: flex; align-items: center; gap: 0.4rem; }
.nav__link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav__link:hover { color: var(--accent-deep); background: var(--accent-soft); }
.nav__link--cta {
  color: #FBFAF6;
  background: var(--accent-deep);
  margin-left: 0.4rem;
}
.nav__link--cta:hover { color: #FBFAF6; background: #264433; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100svh - var(--demobar-h));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) var(--pad) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(46% 50% at 78% 28%, rgba(62, 107, 79, 0.14), transparent 70%),
    radial-gradient(40% 46% at 12% 84%, rgba(62, 107, 79, 0.1), transparent 72%),
    linear-gradient(180deg, var(--bg) 0%, #F0ECE2 100%);
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.5;
}
.hero__blob--a {
  width: 260px; height: 260px;
  top: 8%; right: 6%;
  background: radial-gradient(circle at 35% 35%, rgba(80, 129, 100, 0.32), transparent 68%);
}
.hero__blob--b {
  width: 320px; height: 320px;
  bottom: -6%; left: -4%;
  background: radial-gradient(circle at 60% 40%, rgba(62, 107, 79, 0.2), transparent 70%);
}
.hero__art {
  position: absolute;
  top: 50%;
  right: clamp(-90px, -2vw, 0px);
  transform: translateY(-50%);
  width: clamp(360px, 42vw, 580px);
  height: auto;
  opacity: 0.92;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
  background: rgba(251, 250, 246, 0.7);
  border: 1px solid var(--line);
  padding: 0.45rem 0.95rem 0.45rem 0.65rem;
  border-radius: 999px;
  margin: 0 0 1.6rem;
}
.hero__pin { width: 18px; height: 18px; display: inline-flex; color: var(--accent); }
.hero__pin svg { width: 100%; height: 100%; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: clamp(2.5rem, 1.3rem + 5.4vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 0 0 1.4rem;
  max-width: 16ch;
}
.hero__title-em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-deep);
}
.hero__lead {
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 2.2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.hero__stats {
  list-style: none;
  margin: 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 640px;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stat-n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.5rem);
  color: var(--accent-deep);
  line-height: 1;
}
.hero__stat-l {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.4rem;
  max-width: 16ch;
}

/* =========================================================
   El estudio
   ========================================================= */
.estudio {
  padding: clamp(4rem, 9vw, 7.5rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.estudio__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.estudio__media { position: relative; }
.estudio__card {
  position: relative;
  background:
    radial-gradient(120% 100% at 30% 0%, #f3efe5 0%, var(--surface) 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}
.estudio__illus { width: 100%; height: auto; }
.estudio__chip {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: var(--accent-deep);
  color: #FBFAF6;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.estudio__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--fg);
  margin: 0 0 1.3rem;
  max-width: 16ch;
}
.estudio__text {
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
  max-width: 54ch;
}
.estudio__list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}
.estudio__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-weight: 500;
  color: var(--fg);
}
.estudio__ic {
  flex: none;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  margin-top: 1px;
}
.estudio__ic svg { width: 17px; height: 17px; }

/* =========================================================
   Clases / Servicios
   ========================================================= */
.clases {
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad) clamp(4rem, 9vw, 7rem);
  background:
    linear-gradient(180deg, var(--cream-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clases__head {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
}
.cards {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(62, 107, 79, 0.45);
}
.card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  margin-bottom: 1.3rem;
}
.card__icon svg { width: 30px; height: 30px; }
.card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 0.6rem;
}
.card__text {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0 0 1.4rem;
  flex: 1;
}
.card__price {
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 1.02rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.card__price span { color: var(--muted); font-weight: 400; font-size: 0.86rem; }

/* =========================================================
   Planes (bloque oscuro verde)
   ========================================================= */
.planes {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background:
    radial-gradient(70% 80% at 80% 0%, #34594492 0%, transparent 60%),
    radial-gradient(60% 70% at 10% 100%, #2a4a3880 0%, transparent 62%),
    linear-gradient(160deg, #2b4b39 0%, #233e2f 100%);
  color: #FBFAF6;
  overflow: hidden;
}
.planes__head {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
}
.plan-cards {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: stretch;
}
.plan {
  position: relative;
  background: rgba(251, 250, 246, 0.06);
  border: 1px solid rgba(251, 250, 246, 0.16);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(2px);
  transition: transform 0.5s var(--ease-out), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.plan:hover { transform: translateY(-6px); border-color: rgba(251, 250, 246, 0.3); }
.plan--featured {
  background: var(--surface);
  color: var(--fg);
  border-color: var(--surface);
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.5);
}
.plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: #d8b25f;
  color: #3a2c08;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__top { margin-bottom: 1.2rem; }
.plan__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}
.plan__desc { font-size: 0.92rem; margin: 0; opacity: 0.82; }
.plan--featured .plan__desc { color: var(--muted); opacity: 1; }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0 0 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(251, 250, 246, 0.18);
}
.plan--featured .plan__price { border-color: var(--line); }
.plan__amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.3rem;
  line-height: 1;
}
.plan--featured .plan__amount { color: var(--accent-deep); }
.plan__per { font-size: 0.92rem; opacity: 0.8; }
.plan--featured .plan__per { color: var(--muted); opacity: 1; }
.plan__list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  flex: 1;
}
.plan__list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.96rem;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #9bd6ad;
}
.plan--featured .plan__list li::before { background: var(--accent); }
.planes__foot {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 0.96rem;
  color: #cfe0d0;
}

/* =========================================================
   Confianza
   ========================================================= */
.confianza {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
}
.confianza__inner { max-width: var(--maxw); margin: 0 auto; }
.confianza__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.quote {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.45;
  margin-bottom: 0.4rem;
}
.quote__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--fg);
  margin: 0 0 1.5rem;
  flex: 1;
}
.quote__by {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.quote__by strong { color: var(--fg); font-weight: 600; }
.quote__avatar {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 0.85rem;
}
.confianza__badges {
  list-style: none;
  margin: 2.6rem 0 0;
  padding: 1.8rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3rem);
}
.confianza__badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.confianza__ic {
  width: 26px; height: 26px;
  display: inline-flex;
  color: var(--accent-deep);
}
.confianza__ic svg { width: 100%; height: 100%; }

/* =========================================================
   Ubicación
   ========================================================= */
.ubicacion {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: linear-gradient(180deg, var(--bg) 0%, var(--cream-2) 100%);
  border-top: 1px solid var(--line);
}
.ubicacion__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.ubicacion__details {
  margin: 2.2rem 0 0;
  display: grid;
  gap: 1.4rem;
}
.ubicacion__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.ubicacion__row dt {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}
.ubicacion__ic {
  width: 22px; height: 22px;
  display: inline-flex;
  color: var(--accent-deep);
}
.ubicacion__ic svg { width: 100%; height: 100%; }
.ubicacion__row dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.mapcard {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 10 / 9;
}
.mapcard__svg { width: 100%; height: 100%; object-fit: cover; }
.mapcard__tag {
  position: absolute;
  left: 18px; bottom: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-card);
  max-width: 80%;
}
.mapcard__tag strong { display: block; color: var(--fg); font-weight: 600; font-size: 0.96rem; }
.mapcard__tag span { color: var(--muted); font-size: 0.84rem; }

/* =========================================================
   Contacto
   ========================================================= */
.contacto {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
}
.contacto__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contacto__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
  font-weight: 600;
  color: var(--wa-deep);
}
.contacto__wa-ic {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.16);
  color: var(--wa-deep);
}
.contacto__wa-ic svg { width: 20px; height: 20px; }
.contacto__wa:hover { color: #094f2a; }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}
.form__note {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  margin: 0 0 1.4rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: block; margin-bottom: 1.1rem; }
.field__label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--fg);
  margin-bottom: 0.45rem;
}
.field__opt { font-weight: 400; color: var(--muted); }
.field__input {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.field__input::placeholder { color: #636c64; }
.field__input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(62, 107, 79, 0.16);
}
.field__input--area { resize: vertical; min-height: 110px; }
select.field__input { appearance: none; cursor: pointer; }
.form__ok {
  margin: 1.1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 500;
  font-size: 0.94rem;
}

/* =========================================================
   CTA Digital Bee
   ========================================================= */
.db-cta {
  padding: clamp(4rem, 9vw, 6.5rem) var(--pad);
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(62, 107, 79, 0.12), transparent 65%),
    var(--cream-2);
  border-top: 1px solid var(--line);
}
.db-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.db-cta__leaf {
  width: 56px; height: 56px;
  display: inline-grid; place-items: center;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 18px;
  margin-bottom: 1.4rem;
}
.db-cta__leaf svg { width: 34px; height: 34px; }
.db-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.7rem);
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 1rem;
}
.db-cta__text {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 auto 2rem;
  max-width: 52ch;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #233e2f;
  color: #d6e2d8;
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 1.8rem;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(214, 226, 216, 0.18);
}
.footer__brand { display: flex; align-items: center; gap: 0.85rem; }
.footer__mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: #b6d6bf;
  background: rgba(182, 214, 191, 0.14);
  border-radius: 12px;
}
.footer__mark svg { width: 27px; height: 27px; }
.footer__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: #FBFAF6;
  margin: 0;
}
.footer__tag { font-size: 0.86rem; color: #b3c6b7; margin: 0.15rem 0 0; }
.footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a {
  color: #cdded0;
  font-size: 0.95rem;
  transition: color 0.25s var(--ease);
}
.footer__nav a:hover { color: #FBFAF6; }
.footer__contact {
  font-size: 0.92rem;
  color: #b3c6b7;
  line-height: 1.6;
  margin: 0;
}
.footer__base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: #a7bbab;
}
.footer__base a { color: #cdded0; transition: color 0.25s var(--ease); }
.footer__base a:hover { color: #FBFAF6; }

/* =========================================================
   Botón flotante WhatsApp
   ========================================================= */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 110;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 34px -10px rgba(18, 140, 75, 0.62);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 40px -10px rgba(18, 140, 75, 0.7);
}

/* =========================================================
   Reveals (FOUC-safe: ocultos solo con js-on)
   ========================================================= */
.js-on .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.js-on .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-on .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .card, .plan, .wa-float { transition: none !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .plan-cards { grid-template-columns: 1fr; max-width: 460px; }
  .plan--featured { order: -1; }
  .confianza__quotes { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 880px) {
  .nav__menu { gap: 0.1rem; }
  .nav__link { padding: 0.5rem 0.6rem; font-size: 0.9rem; }
  .estudio__grid,
  .ubicacion__grid,
  .contacto__grid { grid-template-columns: 1fr; }
  .estudio__media { max-width: 440px; margin: 0 auto 1.5rem; }
  .hero__art { opacity: 0.5; right: -120px; }
}

@media (max-width: 768px) {
  .nav__menu { display: none; }
  .cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .form__row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 3.5rem; }
  .hero__art { display: none; }
  .hero__stats { gap: 1.4rem 2rem; }
}

@media (max-width: 480px) {
  .demobar__txt { font-size: 0.68rem; }
  .demobar__cta { padding: 0.2rem 0.6rem; }
  .hero__actions .btn { width: 100%; }
}
