/* ==========================================================
   Alma Nutrición · Lic. Alejandra Rivera
   Estilo: cálido y natural
   ========================================================== */

:root {
  /* Verdes del logo, de claro a profundo */
  --cream: #F4FAF9;      /* fondo de página */
  --paper: #FFFFFF;
  --sand: #E3F1EF;       /* menta suave (secciones alternas) */
  --sand-deep: #C5E0DC;  /* bordes y líneas */
  --sage: #7FB5B1;       /* aqua medio */
  --sage-soft: #DCEEEB;
  --aqua: #A9D5D4;       /* aqua claro del logo */
  --green: #3D8378;      /* verde medio del logo */
  --sage-dark: #1F7278;  /* teal del logo */
  --teal-deep: #28655D;
  --forest: #17484C;     /* verde profundo */
  --abyss: #10353A;
  --ink: #1E2F30;
  --muted: #4F6566;
  --line: #D2E6E3;

  /* Dorado champagne (detalles) */
  --gold: #C9A961;
  --gold-light: #E8D7A3;
  --gold-soft: #F7F0D9;
  --gold-grad: linear-gradient(135deg, #EBDBAA 0%, #C9A961 48%, #E6D298 72%, #BE9F58 100%);

  --danger-bg: #FDECEC;
  --danger: #8F2D2D;

  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 10px 30px -12px rgba(23, 72, 76, .22);
  --shadow-soft: 0 4px 14px -6px rgba(23, 72, 76, .18);

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --maxw: 1140px;
  --gutter: clamp(18px, 4vw, 32px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--sage-dark); text-underline-offset: 3px; }
a:hover { color: var(--forest); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--forest); color: #fff; padding: 10px 16px; border-radius: 10px; z-index: 200;
}
.skip-link:focus { left: 12px; }

.container { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.section { padding: clamp(56px, 9vw, 104px) 0; }
.section--sand { background: linear-gradient(180deg, #E9F4F2 0%, #DAECE9 100%); }
.section--sage { background: linear-gradient(180deg, #D5EAE7 0%, #C3E1DD 100%); }
.section--forest { background: radial-gradient(120% 140% at 85% 0%, #2B7A74 0%, rgba(43,122,116,0) 55%), linear-gradient(135deg, #10353A 0%, #17484C 55%, #1D5E5C 100%); color: #E4F1EF; position: relative; }
.section--forest::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--gold-grad); }
.section--forest h2, .section--forest h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; border-radius: 2px; background: var(--gold-grad); vertical-align: middle; margin-right: 12px; }
.section--forest .eyebrow { color: var(--gold-light); }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 60ch; }
.section-head { max-width: 680px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 700; font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { background: linear-gradient(135deg, #2A8A8B 0%, #1F7278 45%, #17595E 100%); color: #fff; box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: linear-gradient(135deg, #1F7278 0%, #17595E 55%, #10474B 100%); color: #fff; box-shadow: var(--shadow); }
.btn--gold { background: var(--gold-grad); color: var(--forest); box-shadow: 0 6px 18px -8px rgba(201,169,97,.8); }
.btn--gold:hover { color: var(--forest); filter: brightness(1.06); box-shadow: 0 10px 24px -10px rgba(201,169,97,.9); }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: #fff; }
.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { background: var(--sand); color: var(--forest); }
.btn--wa { background: #1F7A4D; color: #fff; }
.btn--wa:hover { background: #17633E; color: #fff; }
.btn--sm { padding: 10px 20px; font-size: .95rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 250, 249, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(201,169,97,.35);
}
.site-header .container { width: min(100% - 2 * var(--gutter), 1240px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 22px; text-decoration: none; color: var(--forest); }
.brand-logo { height: 58px; width: auto; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; transform: translateY(4px); }
.brand-name { font-family: var(--font-head); font-size: 1.45rem; font-weight: 600; }
.brand-sub { font-size: .78rem; letter-spacing: .347em; color: var(--muted); white-space: nowrap; }

.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list a.nav-link {
  display: block; padding: 9px 12px; border-radius: 999px;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-cta .btn { white-space: nowrap; }
.brand-name { white-space: nowrap; }
.nav-list a.nav-link:hover { background: var(--sand); color: var(--forest); }
.nav-list a.nav-link[aria-current="page"] { background: var(--sage-soft); color: var(--forest); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; border-radius: 14px;
  border: 1.5px solid var(--line); background: var(--paper);
  cursor: pointer; color: var(--forest);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 6000px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 24px;
    display: none;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a.nav-link { padding: 14px 16px; font-size: 1.05rem; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #E1F1EE 0%, #F1F9F8 60%, var(--cream) 100%); padding: clamp(44px, 8vw, 96px) 0 clamp(56px, 9vw, 104px); }
.hero::before {
  content: ""; position: absolute; inset: auto -12% -30% auto;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(169,213,212,.55) 0%, rgba(169,213,212,0) 68%);
  z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--sage-dark); background: linear-gradient(90deg, #137078, #3D8378); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { margin-bottom: 30px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: .92rem; font-weight: 600; color: var(--forest);
}
.chip svg { width: 16px; height: 16px; color: var(--sage-dark); }

.hero-art { position: relative; justify-self: center; width: min(100%, 420px); }
.arch {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  background: linear-gradient(170deg, #EAF6F4 0%, #C4E2DF 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid; place-items: center;
}
.arch .leaves { position: absolute; inset: 0; width: 100%; height: 100%; }
.photo-slot {
  position: relative; z-index: 2;
  text-align: center; padding: 18px 22px;
  background: rgba(255, 255, 255, .88);
  border: 1.5px dashed var(--sage);
  border-radius: 16px;
  color: var(--sage-dark);
  font-size: .92rem; font-weight: 600;
  max-width: 78%;
}
.hero-badge {
  position: absolute; left: -18px; bottom: 34px; z-index: 3;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; line-height: 1.3;
}
.hero-badge strong { display: block; color: var(--forest); font-family: var(--font-head); font-size: 1.05rem; }
.hero-badge .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--gold-light); display: grid; place-items: center; color: var(--forest); }
.hero-badge .dot svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { width: min(100%, 340px); order: -1; }
  .hero-badge { left: 8px; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.card p:last-child { margin-bottom: 0; }
.icon-bubble {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, #E6F3F1 0%, #BFE0DD 100%); color: #17595E;
  display: grid; place-items: center; margin-bottom: 18px;
}
.icon-bubble svg { width: 28px; height: 28px; }
.icon-bubble--terra { background: linear-gradient(135deg, #FBF6E4, #F0E3B8); color: var(--forest); box-shadow: inset 0 0 0 1px var(--gold-light); }

/* Pasos */
.step-num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 500; line-height: 1;
  color: var(--gold); background: linear-gradient(135deg, #DEC57F 0%, #B8974F 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 10px;
}

/* ---------- Sobre mí (teaser) ---------- */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.split--reverse { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 860px) { .split, .split--reverse { grid-template-columns: 1fr; } }
.portrait {
  position: relative; aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #E4F2F0, #B7DAD6);
  border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait .leaves { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .8; }
.tick-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; }
.tick-list svg { width: 22px; height: 22px; flex: none; margin-top: 3px; color: var(--sage-dark); }

/* ---------- Testimonios ---------- */
.quote { position: relative; }
.quote::before {
  content: "“"; position: absolute; top: 4px; left: 22px;
  font-family: var(--font-head); font-size: 5rem; line-height: 1; color: var(--gold-light);
}
.quote p { position: relative; padding-top: 34px; font-size: 1.05rem; }
.quote footer { font-weight: 700; color: var(--forest); font-size: .95rem; }
.quote footer span { display: block; font-weight: 400; color: var(--muted); font-size: .88rem; }
.placeholder-note {
  display: inline-block; margin-top: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--forest); background: var(--gold-soft); border: 1px solid var(--gold-light);
  padding: 3px 10px; border-radius: 999px;
}

/* ---------- Banda CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 52ch; margin-inline: auto; color: #D3E8E5; }
.cta-band .btn-row { justify-content: center; margin-top: 28px; }

/* ---------- Encabezado de páginas internas ---------- */
.page-hero {
  padding: clamp(44px, 7vw, 84px) 0 clamp(36px, 5vw, 56px);
  background: linear-gradient(180deg, var(--sage-soft) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: 14px; }
.page-hero .lead { margin: 0; }
.page-hero .leaf-deco { position: absolute; right: -40px; top: -20px; width: 300px; opacity: .55; z-index: 0; }
@media (max-width: 700px) { .page-hero .leaf-deco { width: 200px; right: -60px; } }

/* ---------- Planes ---------- */
.plan { display: flex; flex-direction: column; position: relative; }
.plan--featured { border: 2px solid var(--gold); background: linear-gradient(180deg, #FFFFFF 0%, #FBFDFC 100%); box-shadow: 0 16px 36px -16px rgba(201,169,97,.65); }
.plan-tag {
  position: absolute; top: -14px; left: 28px;
  background: var(--gold-grad); color: var(--forest);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.plan h3 { margin-bottom: 6px; }
.plan .plan-for { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.plan .price { font-family: var(--font-head); font-size: 1.5rem; color: var(--forest); margin: 4px 0 18px; }
.plan .price small { font-family: var(--font-body); font-size: .85rem; color: var(--muted); }
.plan .tick-list { margin: 0 0 26px; flex: 1; }
.plan .btn { width: 100%; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; padding: 0 22px;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-soft); border-color: var(--sage); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 18px 0; font-weight: 700; color: var(--forest);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--sage-dark); flex: none; line-height: 1;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 18px; color: var(--muted); margin: 0; }

/* ---------- Dónde estamos ---------- */
.info-list { display: grid; gap: 16px; margin: 18px 0 26px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .icon-mini {
  width: 40px; height: 40px; flex: none; border-radius: 12px;
  background: var(--sage-soft); color: var(--sage-dark); display: grid; place-items: center;
}
.info-list .icon-mini svg { width: 20px; height: 20px; }
.info-list strong { display: block; color: var(--forest); }
.map-slot {
  aspect-ratio: 16 / 10; width: 100%;
  border-radius: var(--radius); border: 1.5px dashed var(--sage);
  background: repeating-linear-gradient(135deg, var(--sage-soft) 0 14px, #EEF6F4 14px 28px);
  display: grid; place-items: center; text-align: center; padding: 20px;
  color: var(--sage-dark); font-weight: 600;
}
.map-slot iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius); }
.online-steps { counter-reset: s; display: grid; gap: 16px; margin: 20px 0 0; }
.online-steps li { counter-increment: s; display: flex; gap: 16px; align-items: flex-start; }
.online-steps li::before {
  content: counter(s);
  width: 36px; height: 36px; flex: none; border-radius: 50%;
  background: linear-gradient(135deg, #2A8A8B, #17595E); color: #fff; font-weight: 700;
  display: grid; place-items: center; font-family: var(--font-head);
}

/* ---------- Contacto / formulario ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact-grid > * { min-width: 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: minmax(0, 1fr); } }
.field { min-width: 0; }
.field label { display: block; font-weight: 700; font-size: .95rem; color: var(--forest); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 13px 16px; border-radius: 14px;
  border: 1.5px solid var(--sand-deep); background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-dark); box-shadow: 0 0 0 4px rgba(127, 181, 177, .35);
}
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--sage-dark); flex: none; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.notice { padding: 16px 20px; border-radius: 14px; font-weight: 600; margin-bottom: 22px; }
.notice--ok { background: var(--sage-soft); color: var(--forest); border: 1px solid var(--sage); }
.notice--err { background: var(--danger-bg); color: var(--danger); border: 1px solid #E9B4B4; }
.contact-card { position: sticky; top: 104px; }
@media (max-width: 860px) { .contact-card { position: static; } }

/* ---------- Blog ---------- */
.post-thumb {
  aspect-ratio: 16 / 10; border-radius: 14px; margin-bottom: 18px;
  background: linear-gradient(140deg, var(--sage-soft), var(--sand));
  display: grid; place-items: center; color: var(--sage-dark); overflow: hidden;
}
.post-thumb svg { width: 64px; height: 64px; opacity: .8; }
.post-meta { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 8px; }
.soon { display: inline-block; font-size: .8rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; background: var(--sand); color: var(--forest); }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, #D9ECE9 0%, #C9E3DF 100%); color: var(--ink); padding: 64px 0 28px; border-top: 3px solid var(--gold); }
.site-footer a { color: var(--forest); text-decoration: none; }
.site-footer a:hover { color: var(--sage-dark); text-decoration: underline; }
.site-footer h4 { color: var(--forest); font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .04em; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr 1.6fr; gap: 32px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand-logo { height: 72px; }
.footer-brand p { font-size: .95rem; max-width: 34ch; color: var(--muted); }
.footer-links li { margin-bottom: 9px; font-size: .97rem; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(23,72,76,.18);
  font-size: .85rem; color: var(--muted);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px;
}
.disclaimer { font-size: .82rem; color: var(--muted); margin-top: 14px; max-width: 78ch; }

/* WhatsApp flotante */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1F7A4D; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 22px -6px rgba(0,0,0,.4);
  transition: transform .18s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Animaciones suaves ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .wa-float { transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* Textos largos (mails, links) no rompen el ancho en celulares */
.info-list a, .footer-links a { overflow-wrap: anywhere; }

/* Foto del consultorio */
.photo-frame {
  margin: 0; position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  aspect-ratio: 3 / 4; background: var(--sand);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
@media (max-width: 860px) { .photo-frame { max-width: 440px; margin-inline: auto; } }

/* Valores por profesional */
.rates { margin: 0 0 22px; }
.rates li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 11px 0; border-top: 1px dashed var(--sand-deep);
}
.rates li:last-child { border-bottom: 1px dashed var(--sand-deep); }
.rates span { font-weight: 600; color: var(--forest); line-height: 1.3; }
.rates small { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; }
.rates b { font-family: var(--font-head); font-size: 1.25rem; color: var(--forest); white-space: nowrap; }
.plan .rates { margin-top: auto; }
.plan .tick-list { flex: 0 0 auto; margin-bottom: 20px; }
.plan > p:not(.plan-for) { color: var(--muted); }
.plan .btn { margin-top: 0; }
.plan-wide { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 56px); padding: clamp(28px, 4vw, 44px); }
.plan-wide .rates { margin-top: 20px; }
.plan-wide .btn { width: auto; }
@media (max-width: 860px) { .plan-wide { grid-template-columns: 1fr; } }
.prep { margin: 0 0 20px; border: 1px solid var(--line); border-radius: 14px; padding: 0 16px; background: var(--cream); }
.prep summary { cursor: pointer; padding: 12px 0; font-weight: 700; color: var(--forest); list-style: none; display: flex; justify-content: space-between; }
.prep summary::-webkit-details-marker { display: none; }
.prep summary::after { content: "+"; color: var(--sage-dark); font-size: 1.4rem; line-height: 1; }
.prep[open] summary::after { content: "–"; }
.prep .tick-list { margin: 0 0 14px; gap: 8px; font-size: .95rem; }
.rating { font-size: 1.05rem; margin: 6px 0 16px; color: var(--muted); }
.rating .stars { color: var(--gold); letter-spacing: 2px; }
.rating strong { color: var(--forest); }

/* Equipo */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.team-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-soft); text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.team-card--lead { border: 2px solid var(--gold); box-shadow: 0 16px 36px -18px rgba(201,169,97,.6); }
.team-card h3 { margin-bottom: 6px; }
.avatar {
  width: 104px; height: 104px; border-radius: 50%; margin-bottom: 18px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: 2rem; font-weight: 600; letter-spacing: .04em; color: #fff;
  background: linear-gradient(135deg, #3D8378 0%, #1F7278 55%, #17484C 100%);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 6px var(--gold-light);
}
.team-card .team-role { font-weight: 700; color: var(--sage-dark); margin-bottom: 4px; }
.team-aka { font-size: .92rem; color: var(--muted); margin-bottom: 12px; }
.team-card p { color: var(--muted); }
.team-data { display: grid; gap: 6px; margin: 4px 0 22px; font-size: .95rem; color: var(--muted); }
.team-card .btn { margin-top: auto; }

/* Foto de Alejandra */
.arch-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.arch::after { content: ""; position: absolute; inset: 10px; border-radius: 0; border: 1px solid rgba(232, 215, 163, .9); pointer-events: none; z-index: 2; }
.avatar { overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card--lead .avatar { width: 136px; height: 136px; }

.info-list .nqn-fecha { display:inline; margin:0; color:var(--teal-deep); }
.info-list small { display:block; margin-top:4px; color:var(--muted); font-size:.85rem; line-height:1.45; }

.hero h1.h1-long { font-size: clamp(1.6rem, 2.7vw, 2.2rem); line-height: 1.24; letter-spacing: -0.01em; }
.lead--metodo { font-family:'Fraunces',Georgia,serif; font-size:1.35rem; font-weight:600; letter-spacing:.04em; text-transform:uppercase; }
.lead--metodo a { color:var(--teal-deep); text-decoration:none; border-bottom:2px solid var(--gold); padding-bottom:3px; }
.lead--metodo a:hover { color:var(--forest); }
.photo-frame--square { aspect-ratio: 1 / 1; }
.photo-frame--square img { object-position: 50% 30%; }
