/* =====================================================================
   Dra. Erika González Obele — Ginecología y Obstetricia
   Hoja de estilos principal
   Paleta de marca: vino / magenta · plúmbago · crema · dorado
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --cream:      #faf5ef;
  --cream-2:    #f4e8ef;   /* fondo rosado suave */
  --rose:       #f5e4ed;
  --rose-line:  #ecd2e0;
  --wine:       #7e2e54;   /* primario */
  --wine-deep:  #5d2240;
  --plum:       #2b1a30;   /* secciones oscuras / footer */
  --plum-soft:  #3a2440;
  --mauve:      #a9588a;
  --gold:       #c2a14e;
  --ink:        #2f2730;
  --muted:      #6d6470;
  --line:       #e7dcdf;
  --white:      #ffffff;

  --maxw: 1180px;
  --gap: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(67, 24, 48, .06);
  --shadow:    0 14px 40px rgba(67, 24, 48, .12);
  --shadow-lg: 0 30px 70px rgba(43, 16, 32, .22);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--wine); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--wine-deep); }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--mauve); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--wine-deep); letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { color: var(--ink); }
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mauve);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.is-light { color: #e7bcd2; }
.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); }
.script { font-family: var(--serif); font-style: italic; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--cream-2); }
.section--rose { background: linear-gradient(180deg, var(--rose) 0%, var(--cream-2) 100%); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; }

.skip-link {
  position: absolute; left: 1rem; top: -120px;
  background: var(--wine); color: #fff; padding: .7rem 1.1rem; border-radius: 10px; z-index: 2000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color:#fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .92rem 1.7rem; border-radius: 999px; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--wine); color: #fff; box-shadow: 0 10px 24px rgba(126, 46, 84, .28); }
.btn--primary:hover { background: var(--wine-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(126, 46, 84, .34); }
.btn--wa { background: #1faf54; color: #fff; box-shadow: 0 10px 24px rgba(31,175,84,.28); }
.btn--wa:hover { background: #178a43; color:#fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--wine-deep); border: 1.5px solid var(--rose-line); }
.btn--ghost:hover { border-color: var(--wine); color: var(--wine-deep); transform: translateY(-2px); background: #fff; }
.btn--light { background: #fff; color: var(--wine-deep); }
.btn--light:hover { color: var(--wine-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--block { width: 100%; }

/* =====================================================================
   Header
   ===================================================================== */
.utility-bar {
  background: var(--plum); color: #f0dbe6;
  font-size: .82rem; letter-spacing: .02em;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; flex-wrap: wrap; }
.utility-bar a { color: #f0dbe6; }
.utility-bar a:hover { color: #fff; }
.utility-bar .u-item { display: inline-flex; align-items: center; gap: .45rem; }
.utility-bar svg { width: 15px; height: 15px; opacity: .85; }
@media (max-width: 620px) { .utility-bar .u-hide { display: none; } .utility-bar .container { justify-content: center; } }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250, 245, 239, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(67,24,48,.08); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .65rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { width: 52px; height: 52px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; color: var(--wine-deep); }
.brand-text span { font-family: var(--sans); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mauve); }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav-links a { font-weight: 500; color: var(--ink); font-size: .96rem; position: relative; padding: .25rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .25s var(--ease); }
.nav-links a:hover { color: var(--wine-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav-actions { display: flex; align-items: center; gap: .8rem; }
.nav-actions .btn { flex: none; }
/* Etiqueta compacta del CTA en el encabezado de escritorio */
.nav-cta-full { display: none; }
.nav-cta-short { display: inline; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--wine-deep); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  /* En el menú móvil usamos la etiqueta completa */
  .nav-cta-full { display: inline; }
  .nav-cta-short { display: none; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: var(--cream); box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0; padding: 5.5rem 2rem 2rem;
    transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 1rem 0; font-size: 1.1rem; }
  .nav-links a::after { display: none; }
  .nav-menu .nav-actions { flex-direction: column; align-items: stretch; width: 100%; margin-top: 1.6rem; gap: .8rem; }
  .nav-menu .nav-actions .btn { width: 100%; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(43,16,32,.45); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease); z-index: 999; }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}
.nav-cta-desktop { }
@media (max-width: 460px){ .brand-text span { display:none; } }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -18%; right: -12%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at center, rgba(169,88,138,.16), transparent 65%); z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-content .eyebrow { margin-bottom: 1.4rem; }
.hero-content h1 { margin-bottom: 1.3rem; }
.hero-content h1 .accent { color: var(--wine); font-style: italic; font-weight: 500; display: block; }
.hero-content .lead { max-width: 33ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; align-items: center; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-family: var(--serif); font-size: 1.5rem; color: var(--wine); line-height: 1; }
.hero-trust .t span { font-size: .78rem; color: var(--muted); letter-spacing: .03em; }
.hero-trust .t + .t { padding-left: 1.6rem; border-left: 1px solid var(--line); }

.hero-figure { position: relative; }
.hero-figure .photo {
  position: relative; border-radius: 220px 220px 26px 26px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; background: var(--rose);
}
.hero-figure .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-figure::after {
  content: ""; position: absolute; inset: 0; border-radius: 220px 220px 26px 26px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); pointer-events: none;
}
.hero-badge {
  position: absolute; left: -8px; bottom: 26px; z-index: 2;
  background: #fff; border-radius: 16px; padding: .85rem 1.1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .7rem; max-width: 230px;
}
.hero-badge .icon { width: 40px; height: 40px; border-radius: 11px; background: var(--rose); display: grid; place-items: center; color: var(--wine); flex: none; }
.hero-badge .icon svg { width: 22px; height: 22px; }
.hero-badge b { font-family: var(--serif); color: var(--wine-deep); font-size: .98rem; display: block; line-height: 1.15; }
.hero-badge span { font-size: .76rem; color: var(--muted); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 440px; margin-inline: auto; order: -1; }
  .hero-content .lead { max-width: 48ch; }
}

/* =====================================================================
   Trust / affiliations strip
   ===================================================================== */
.affil { background: var(--plum); color: #efdce6; }
.affil .container { padding: 1.5rem 0; }
.affil-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .8rem clamp(1.2rem, 4vw, 2.6rem); }
.affil .label { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: #c79bb4; }
.affil ul { display: flex; flex-wrap: wrap; gap: .7rem 1.6rem; align-items: center; }
.affil li { font-weight: 500; font-size: .94rem; color: #f3e2ec; position: relative; }
.affil li + li::before { content: "·"; position: absolute; left: -.9rem; color: var(--gold); }

/* =====================================================================
   About
   ===================================================================== */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-figure { position: relative; }
.about-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
.about-figure .frame { position: absolute; inset: 14px -14px -14px 14px; border: 1.5px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; }
.about-body h2 { margin-bottom: 1.2rem; }
.about-body p + p { margin-top: 1rem; }
.about-quote { margin-top: 1.8rem; padding: 1.2rem 1.5rem; background: var(--rose); border-left: 3px solid var(--gold); border-radius: 0 14px 14px 0; }
.about-quote p { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--wine-deep); }
.about-signature { margin-top: 1.4rem; font-family: var(--serif); font-style: italic; color: var(--mauve); font-size: 1.05rem; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .about-figure { max-width: 400px; margin-inline: auto; } .about-figure .frame { inset: 12px -12px -12px 12px; } }

/* =====================================================================
   Differentiators / value cards
   ===================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.3rem; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--wine), var(--mauve)); display: grid; place-items: center; color: #fff; margin-bottom: 1.1rem; }
.value-card .icon svg { width: 27px; height: 27px; }
.value-card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.value-card p { color: var(--muted); font-size: .96rem; }

/* =====================================================================
   Services
   ===================================================================== */
.svc-featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; margin-bottom: 2.5rem; }
.svc-feature { position: relative; border-radius: var(--radius-lg); padding: 2rem 1.8rem; overflow: hidden; color: #fff; min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow); }
.svc-feature::before { content: ""; position: absolute; inset: 0; z-index: 0; }
.svc-feature.f1::before { background: linear-gradient(150deg, #8d3b64, #5d2240); }
.svc-feature.f2::before { background: linear-gradient(150deg, #3a2440, #2b1a30); }
.svc-feature.f3::before { background: linear-gradient(150deg, #a9588a, #7e2e54); }
.svc-feature > * { position: relative; z-index: 1; }
.svc-feature .tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #e7bcd2; margin-bottom: .6rem; }
.svc-feature h3 { color: #fff; font-size: 1.5rem; margin-bottom: .55rem; }
.svc-feature p { color: rgba(255,255,255,.86); font-size: .95rem; }

.svc-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.4rem; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); height: 100%; }
.svc-card .head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.svc-card .head .icon { width: 46px; height: 46px; border-radius: 12px; background: var(--rose); color: var(--wine); display: grid; place-items: center; flex: none; }
.svc-card .head .icon svg { width: 23px; height: 23px; }
.svc-card h3 { font-size: 1.22rem; }
.svc-card ul li { position: relative; padding: .42rem 0 .42rem 1.5rem; border-bottom: 1px dashed var(--line); color: var(--ink); font-size: .96rem; }
.svc-card ul li:last-child { border-bottom: none; }
.svc-card ul li::before { content: ""; position: absolute; left: 0; top: .95rem; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.svc-note { margin-top: 1.8rem; text-align: center; color: var(--muted); font-size: .92rem; }

/* =====================================================================
   Life stages band
   ===================================================================== */
.stages { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; }
.stage { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.4rem; border: 1px solid var(--line); text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.stage:hover { transform: translateY(-4px); }
.stage .num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1rem; }
.stage h3 { font-size: 1.18rem; margin: .35rem 0 .5rem; }
.stage p { color: var(--muted); font-size: .92rem; }

/* =====================================================================
   Experience / surgery band
   ===================================================================== */
.exp { background: var(--plum); color: #f4e7ee; position: relative; overflow: hidden; }
.exp .container { position: relative; z-index: 1; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.exp-body .eyebrow { color: #e7bcd2; margin-bottom: 1.1rem; }
.exp-body h2 { color: #fff; margin-bottom: 1.1rem; }
.exp-body p { color: rgba(244,231,238,.82); }
.exp-body .big-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem,3vw,1.9rem); color: #fff; margin: 1.6rem 0 .4rem; line-height: 1.35; }
.exp-body .big-quote::before { content: "\201C"; color: var(--gold); }
.exp-body .big-quote::after { content: "\201D"; color: var(--gold); }
.exp-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: .8rem; }
.exp-gallery img { border-radius: 14px; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; box-shadow: var(--shadow-lg); }
.exp-gallery figure:nth-child(1) { grid-row: span 2; }
.exp-gallery figure:nth-child(1) img { aspect-ratio: 3/5; }
@media (max-width: 820px) { .exp-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .exp-gallery { grid-template-columns: 1fr 1fr; } .exp-gallery figure:nth-child(1){ grid-row: span 1;} .exp-gallery figure:nth-child(1) img{aspect-ratio:3/4;} }

/* =====================================================================
   Credentials
   ===================================================================== */
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); }
.cred-block h3 { font-size: 1.15rem; color: var(--wine); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .6rem; }
.cred-block h3 svg { width: 22px; height: 22px; color: var(--gold); }
.cred-list li { display: flex; gap: .85rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.cred-list li:last-child { border-bottom: none; }
.cred-list .mk { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--rose); color: var(--wine); display: grid; place-items: center; margin-top: .15rem; }
.cred-list .mk svg { width: 13px; height: 13px; }
.cred-list b { font-weight: 600; color: var(--ink); display: block; font-size: 1rem; }
.cred-list span { color: var(--muted); font-size: .9rem; }
.cedulas { margin-top: 2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; display: flex; flex-wrap: wrap; gap: 1.2rem 2.4rem; box-shadow: var(--shadow-sm); }
.cedulas .c { } .cedulas .c span { display:block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cedulas .c b { font-family: var(--serif); font-size: 1.3rem; color: var(--wine-deep); }
@media (max-width: 760px){ .cred-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-of-type { border-bottom: none; }
.info-row .icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--rose); color: var(--wine); display: grid; place-items: center; }
.info-row .icon svg { width: 22px; height: 22px; }
.info-row .t span { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.info-row .t a, .info-row .t p { font-weight: 500; color: var(--ink); font-size: 1.02rem; }
.info-row .t a:hover { color: var(--wine); }
.hours-list { margin-top: 1.4rem; }
.hours-list li { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-list .closed { color: var(--muted); }
.info-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: 1.4rem; }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

.contact-form .field { margin-bottom: 1.1rem; }
.contact-form label { display: block; font-weight: 500; font-size: .9rem; margin-bottom: .4rem; color: var(--wine-deep); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--mauve); box-shadow: 0 0 0 3px rgba(169,88,138,.15);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: .84rem; color: var(--muted); margin-top: .9rem; text-align: center; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   CTA banner
   ===================================================================== */
.cta-band { background: linear-gradient(135deg, var(--wine), var(--wine-deep)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 3.4rem); text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; right:-40px; top:-40px; width:220px; height:220px; border-radius:50%; background: rgba(255,255,255,.07); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 52ch; margin: .9rem auto 1.8rem; position: relative; }
.cta-band .btns { display: flex; justify-content: center; flex-wrap: wrap; gap: .9rem; position: relative; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--plum); color: #cdb6c4; padding-top: clamp(3rem, 6vw, 4.5rem); font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); padding-bottom: 2.5rem; }
.footer-brand img { width: 84px; height: 84px; margin-bottom: 1rem; }
.footer-brand b { font-family: var(--serif); color: #fff; font-size: 1.3rem; display: block; }
.footer-brand span { color: #c79bb4; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-brand p { color: #b79cab; margin-top: 1rem; max-width: 34ch; font-size: .92rem; }
.social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #ecccdb; transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.social a:hover { background: var(--gold); color: var(--plum); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col a { color: #cdb6c4; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .8rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: .2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .82rem; color: #9c8595; }
.footer-bottom a { color: #b79cab; }
.footer-bottom a:hover { color:#fff; }
.footer-disclaimer { font-size: .8rem; color: #8e7a89; padding-bottom: 1.5rem; max-width: 90ch; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* =====================================================================
   Floating WhatsApp
   ===================================================================== */
.fab-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%; background: #1faf54; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(31,175,84,.45);
  transition: transform .25s var(--ease);
  animation: fabIn .4s var(--ease) both;
}
.fab-wa:hover { transform: scale(1.08); color: #fff; }
.fab-wa svg { width: 32px; height: 32px; }
.fab-wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(31,175,84,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31,175,84,.5);} 70%{ box-shadow: 0 0 0 16px rgba(31,175,84,0);} 100%{ box-shadow:0 0 0 0 rgba(31,175,84,0);} }
@keyframes fabIn { from { opacity: 0; transform: translateY(20px) scale(.8);} to { opacity:1; transform:none;} }
@media (prefers-reduced-motion: reduce){ .fab-wa::after { animation: none; } }

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; } }

/* ---------- Legal page ---------- */
.legal { padding: clamp(2.5rem,6vw,4.5rem) 0; }
.legal .container { max-width: 820px; }
.legal h1 { margin-bottom: .4rem; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.5rem; margin: 2.2rem 0 .8rem; }
.legal h3 { font-size: 1.15rem; margin: 1.4rem 0 .5rem; color: var(--wine-deep); }
.legal p, .legal li { color: var(--ink); }
.legal ul { list-style: disc; padding-left: 1.4rem; margin: .6rem 0; }
.legal ul li { margin-bottom: .4rem; }
.legal a { text-decoration: underline; }
.back-home { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; font-weight: 500; }
