/* =========================================================
   Audífonos Jaime de Castro — sistema visual
   ========================================================= */

:root {
  /* Marca */
  --wine: #873553;
  --wine-deep: #6d2942;
  --wine-tint: #f4e7eb;
  --rose: #d4a0b0;
  --rose-soft: #f4e7eb;
  --mint-line: #e6d8de;
  --gold: #C0872F;
  --green: #22c970;

  /* Neutros cálidos */
  --ink: #211c1e;
  --ink-soft: #6d6467;
  --white: #ffffff;
  --paper: #fffdfa;
  --bg: #fffdfa;
  --cream: #f7f3ef;
  --cream-2: #efe6df;
  --line: #eadfdf;

  --maxw: 1180px;
  --maxw-narrow: 780px;
  --radius: 16px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --shadow-xs: 0 2px 10px -4px rgba(36, 26, 30, .18);
  --shadow-sm: 0 10px 30px -18px rgba(36, 26, 30, .30);
  --shadow: 0 30px 70px -34px rgba(36, 26, 30, .40);

  --ff-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ff-head: "Ovo", Georgia, "Times New Roman", serif;

  --header-h: 82px;
  --pad-x: clamp(20px, 5vw, 44px);
  --w: min(1240px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.018em;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.95rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { margin: 0 0 1.1rem; }
a { color: var(--wine); text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
  a:hover { text-decoration: underline; }
}
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }
::selection { background: var(--rose-soft); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(60px, 9vw, 120px); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--wine { background: var(--wine-deep); color: #fff; }
.section--wine h1, .section--wine h2, .section--wine h3 { color: #fff; }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }

.section__head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1rem;
}
.section--wine .eyebrow { color: var(--rose); }
.lede { font-size: 1.2rem; color: var(--ink-soft); }
.section--wine .lede { color: rgba(255,255,255,.8); }
.u-center { text-align: center; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 1rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
  text-decoration: none;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { text-decoration: none; transform: translateY(-2px); }
}
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--wine); color: #fff; box-shadow: var(--shadow-sm); }
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover { background: var(--wine-deep); color: #fff; }
}
.btn--white { background: #fff; color: var(--wine); box-shadow: var(--shadow-sm); }
@media (hover: hover) and (pointer: fine) {
  .btn--white:hover { background: #fff; color: var(--wine-deep); }
}
.btn--rose { background: linear-gradient(135deg, #dcaebc, var(--rose)); color: var(--wine-deep); border-color: transparent; box-shadow: 0 6px 18px -8px rgba(135,53,83,.35); font-weight: 700; }
@media (hover: hover) and (pointer: fine) {
  .btn--rose:hover { background: linear-gradient(135deg, var(--rose), #cd93a5); box-shadow: 0 10px 24px -8px rgba(135,53,83,.45); color: var(--wine-deep); }
}
.btn--soft { background: var(--rose-soft); color: var(--wine-deep); border-color: transparent; }
@media (hover: hover) and (pointer: fine) {
  .btn--soft:hover { background: var(--rose); color: var(--wine-deep); }
}
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
@media (hover: hover) and (pointer: fine) {
  .btn--outline:hover { border-color: var(--wine); color: var(--wine); }
}
.section--wine .btn--outline { color: #fff; border-color: rgba(255,255,255,.4); }
@media (hover: hover) and (pointer: fine) {
  .section--wine .btn--outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
}
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn-flower {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--rose-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237D3250'%3E%3Cpath d='M12 3c.6 3 1.8 4.2 5 5-3.2.8-4.4 2-5 5-.6-3-1.8-4.2-5-5 3.2-.8 4.4-2 5-5z'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-row--center { justify-content: center; }

/* Enlace con flecha */
.arrow-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--ff-body); font-weight: 700; color: var(--wine);
}
.arrow-link::after { content: "→"; transition: transform .16s ease; }
@media (hover: hover) and (pointer: fine) {
  .arrow-link:hover { text-decoration: none; }
  .arrow-link:hover::after { transform: translateX(4px); }
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--bg);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.is-solid {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(36,26,30,.07), 0 14px 34px -26px rgba(36,26,30,.5);
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: clamp(146px, 30vw, 180px); height: auto; }
.nav-cta { display: none; }

.primary-nav > ul { display: flex; align-items: center; gap: 2.1rem; }
.primary-nav a {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .97rem;
  color: var(--ink);
  padding: .4rem 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
@media (hover: hover) and (pointer: fine) {
  .primary-nav a:hover { color: var(--wine); text-decoration: none; }
}

.has-sub { position: relative; }
.has-sub > .sub-toggle::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
  opacity: .6;
}
.has-sub .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 270px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-sub .sub-menu a { display: block; padding: .75rem .9rem; border-radius: 10px; font-weight: 500; }
@media (hover: hover) and (pointer: fine) {
  .has-sub .sub-menu a:hover { background: var(--wine-tint); color: var(--wine); }
}
.has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
@media (hover: hover) and (pointer: fine) {
  .has-sub:hover .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
  .has-sub:hover > .sub-toggle::after { transform: rotate(225deg) translateY(2px); }
}

.header-actions { display: flex; align-items: center; gap: 1.4rem; flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .97rem; color: var(--ink); white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .header-phone:hover { color: var(--wine); text-decoration: none; }
}
.header-phone .ic {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--rose-soft); color: var(--wine);
}
.header-phone .ic svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg) translateY(-2px); }

/* =========================================================
   Hero — slider en tarjeta con bordes redondeados  (APROBADO)
   ========================================================= */
.hero {
  padding: clamp(10px, 1.6vw, 18px) clamp(14px, 3vw, 32px) 0;
  background: var(--bg);
}
.hero__frame {
  position: relative;
  border-radius: clamp(20px, 2.6vw, 34px);
  overflow: hidden;
  min-height: min(78vh, 680px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.2rem, 5vw, 3rem) 0;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__frame::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(24,16,20,.42) 0%, rgba(24,16,20,.5) 55%, rgba(24,16,20,.66) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
  padding-bottom: clamp(4rem, 9vw, 7rem);
}
.hero h1 {
  color: #fff;
  margin-bottom: .35em;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero h1 .line-2 { display: block; font-size: 1.04em; margin-top: .05em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.7rem; justify-content: center; }
.hero__rating {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-top: 1.8rem; font-weight: 600;
}
.hero__rating .score { font-size: 1.7rem; font-family: var(--ff-head); }
.hero__stars { color: #F6C560; letter-spacing: 2px; }
.hero__rating small { font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .7rem; opacity: .9; }

.hero__card {
  position: relative;
  z-index: 3;
  margin: clamp(-3.5rem, -6vw, -2.5rem) auto 0;
  width: min(760px, 100% - clamp(28px, 8vw, 64px));
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.4rem clamp(1.3rem, 4vw, 2.4rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem 2.4rem;
}
.hero__card li { display: flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .95rem; }
.hero__card li::before {
  content: "";
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--wine) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.skip-link:focus { position: fixed; left: 12px; top: 12px; z-index: 200; background: #fff; padding: .6rem 1rem; border-radius: 8px; box-shadow: var(--shadow); }

/* =========================================================
   Trust bar
   ========================================================= */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem clamp(1.5rem, 5vw, 3.5rem);
  padding: clamp(1.6rem, 3vw, 2.2rem) var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.trust-bar span {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .95rem; color: var(--ink-soft);
}
.trust-bar span::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--rose);
}

/* =========================================================
   Bloque de introducción (imagen + texto)
   ========================================================= */
.media-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: center;
}
.media-row--flip { grid-template-columns: 1.08fr 0.92fr; }
.media-row--flip .media-row__media { order: 2; }
.media-row__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 5 / 6;
}
.media-row__media { position: relative; }
.media-badge {
  position: absolute;
  right: clamp(-8px, -1vw, -18px);
  bottom: clamp(18px, 4vw, 34px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1rem 1.2rem;
  text-align: center;
  max-width: 175px;
}
.media-badge strong { display: block; font-family: var(--ff-head); font-size: 1.9rem; color: var(--wine); line-height: 1; }
.media-badge span { font-size: .82rem; color: var(--ink-soft); }
.media-row__body .btn-row { margin-top: 1.6rem; }

/* =========================================================
   Rejilla de servicios
   ========================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.svc-card {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
@media (hover: hover) and (pointer: fine) {
  .svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--rose); text-decoration: none; }
}
.svc-card__ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--wine-tint);
  display: grid; place-items: center;
  margin-bottom: .5rem;
  font-size: 1.4rem;
}
.svc-card h3 { margin: 0; }
.svc-card p { color: var(--ink-soft); font-size: .98rem; margin: 0; flex: 1; }
.svc-card .arrow-link { margin-top: .4rem; font-size: .92rem; }
.svc-card--feature { background: var(--wine); color: #fff; border-color: var(--wine); }
.svc-card--feature h3 { color: #fff; }
.svc-card--feature p { color: rgba(255,255,255,.82); }
.svc-card--feature .svc-card__ic { background: rgba(255,255,255,.16); }
.svc-card--feature .arrow-link { color: #fff; }

/* =========================================================
   Proceso / pasos
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.2rem, 3vw, 2.2rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 3.4rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--wine);
  font-family: var(--ff-head);
  font-size: 1.3rem;
  display: grid; place-items: center;
}
.step h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.step p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* =========================================================
   Ventajas (feature list)
   ========================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem 2rem;
}
.features li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .3rem .9rem;
  align-items: start;
}
.features li::before {
  content: "";
  grid-row: span 2;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--rose-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237D3250' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 15px no-repeat;
}
.features li strong { font-weight: 700; }
.features li span { color: var(--ink-soft); font-size: .95rem; }

/* =========================================================
   Opiniones
   ========================================================= */
.rating-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem 1.3rem;
  padding: 1.3rem 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}
.section--wine .rating-band { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; }
.rating-band__score { font-family: var(--ff-head); font-size: 2.1rem; line-height: 1; }
.rating-band__stars { color: var(--gold); letter-spacing: 3px; font-size: 1.15rem; }
.section--wine .rating-band__stars { color: #F6C560; }
.rating-band__text { font-weight: 600; }
.rating-band .btn { margin-left: auto; }

.op-grid {
  columns: 3 300px;
  column-gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}
.op-card {
  break-inside: avoid;
  margin: 0 0 clamp(1rem, 2vw, 1.6rem);
  padding: 1.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.op-card__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .7rem; }
.op-card blockquote { margin: 0 0 1rem; font-size: 1.02rem; line-height: 1.62; }
.op-card figcaption strong { display: block; }
.op-card figcaption span { font-size: .85rem; color: var(--ink-soft); }

.op-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 2.2rem; }
.section--wine .op-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #fff; }
.section--wine .op-card figcaption span { color: rgba(255,255,255,.65); }

/* =========================================================
   Tarjetas de artículo (blog)
   ========================================================= */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.p-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
}
.p-card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.p-card__body { padding: 1.3rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.p-card__cat, .post__cat {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--wine);
}
.p-card__body h2, .p-card__body h3 { font-size: 1.28rem; margin: 0; }
.p-card__excerpt { color: var(--ink-soft); font-size: .95rem; margin: 0; flex: 1; }
.p-card__date { font-size: .82rem; color: var(--ink-soft); }

.blog-filters { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.8rem 0 2.4rem; }
.blog-filters a {
  padding: .55rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
}
.blog-filters a.is-active { background: var(--wine); color: #fff; border-color: var(--wine); text-decoration: none; }
@media (hover: hover) and (pointer: fine) {
  .blog-filters a:hover { background: var(--wine); color: #fff; border-color: var(--wine); text-decoration: none; }
}

/* =========================================================
   Prosa (artículos y páginas de texto)
   ========================================================= */
.prose { font-size: 1.15rem; line-height: 1.8; color: #35292e; }
.prose > h2 {
  font-family: var(--ff-head);
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 2.6rem 0 .6rem;
  color: var(--ink);
}
.prose > h3 {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0;
  margin: 2rem 0 .5rem;
  color: var(--ink);
}
.prose > h2:first-child, .prose > h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.3rem; }
.prose > ul, .prose > ol { margin: 0 0 1.4rem 1.3rem; }
.prose li { margin-bottom: .55rem; }
.prose ul { list-style: none; }
.prose ul li { position: relative; }
.prose ul li::before {
  content: ""; position: absolute; left: -1.3rem; top: .7em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--rose);
}
.prose ol { list-style: decimal; }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--rose); }
.prose blockquote {
  margin: 2rem 0;
  padding: .2rem 0 .2rem 1.5rem;
  border-left: 3px solid var(--rose);
  font-family: var(--ff-head);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--wine);
  font-style: normal;
}
.prose figure { margin: 2.2rem 0; }
.prose img { border-radius: var(--radius-md); }
.prose .fig-cap { font-size: .85rem; color: var(--ink-soft); margin-top: .55rem; text-align: center; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.8rem 0; font-size: .98rem; }
.prose th, .prose td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--line); }
.prose th { background: var(--cream); font-family: var(--ff-body); font-weight: 700; }
.cookie-table { display: block; overflow-x: auto; }

/* =========================================================
   Artículo (blog)
   ========================================================= */
.article { --w-text: 780px; --w-wide: 1040px; padding-top: clamp(1.5rem, 4vw, 3rem); }
.article__head { text-align: center; }
.article__head-inner,
.article__body {
  max-width: var(--w-text);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.article__cat {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .article__cat:hover { text-decoration: none; color: var(--wine-deep); }
}
.article__head h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
  margin: 0 auto .9rem;
  max-width: 16ch;
  max-width: 20ch;
}
.article__meta { color: var(--ink-soft); font-size: .95rem; display: flex; gap: .5rem; justify-content: center; }
.article__cover {
  max-width: var(--w-wide);
  margin: clamp(1.8rem, 4vw, 3rem) auto clamp(2rem, 5vw, 3.5rem);
  padding-inline: var(--pad-x);
}
.article__cover img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
/* elementos del cuerpo que se ensanchan un poco */
.article__body > figure {
  width: min(var(--w-wide), calc(100vw - 2 * var(--pad-x)));
  margin-left: 50%;
  transform: translateX(-50%);
}

/* =========================================================
   CTA de cita (bloque distintivo)
   ========================================================= */
.citacta-wrap { padding-block: clamp(2.5rem, 6vw, 5rem); }
.citacta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2.2rem, 5vw, 3.8rem) clamp(1.6rem, 5vw, 4rem);
  box-shadow: var(--shadow);
}
.citacta__wave {
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  width: 100%; height: 140px;
  color: rgba(255,255,255,.10);
  pointer-events: none;
}
.citacta__seal {
  position: absolute;
  top: clamp(-14px, -1.5vw, -6px);
  right: clamp(16px, 5vw, 56px);
  width: clamp(92px, 12vw, 118px);
  height: clamp(92px, 12vw, 118px);
  border-radius: 50%;
  background: var(--rose);
  color: var(--wine-deep);
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-sm);
  line-height: 1.1;
}
.citacta__seal span { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.citacta__seal strong { font-family: var(--ff-head); font-weight: 400; font-size: 1.5rem; }
.citacta__body { position: relative; z-index: 2; max-width: 620px; }
.citacta__body h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .5rem; }
.citacta__body p { color: rgba(255,255,255,.82); margin-bottom: 1.6rem; }
.citacta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.citacta__phone {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
  font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
  .citacta__phone:hover { text-decoration: none; color: #fff; }
}
.citacta__phone span { display: flex; flex-direction: column; font-size: .78rem; opacity: .8; line-height: 1.2; }
.citacta__phone strong { font-family: var(--ff-head); font-weight: 400; font-size: 1.4rem; opacity: 1; letter-spacing: .01em; }
.citacta__pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: #7CE0A3;
  box-shadow: 0 0 0 0 rgba(124,224,163,.7);
  animation: citacta-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes citacta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(124,224,163,.6); }
  70% { box-shadow: 0 0 0 12px rgba(124,224,163,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,224,163,0); }
}

/* =========================================================
   Hero de página de servicio
   ========================================================= */
.svc-hero { padding: clamp(10px, 1.6vw, 18px) clamp(14px, 3vw, 32px) 0; }
.svc-hero .container { padding-inline: 0; }
.svc-hero__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: clamp(340px, 46vw, 460px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: clamp(2.8rem, 6vw, 4.5rem) clamp(1.4rem, 5vw, 3rem);
}
.svc-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.svc-hero__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(50,20,34,.55), rgba(50,20,34,.78));
}
.svc-hero__inner { position: relative; z-index: 2; max-width: 720px; }
.svc-hero__inner .eyebrow { color: var(--rose); }
.svc-hero__inner h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: .5rem; }
.svc-hero__intro { color: rgba(255,255,255,.88); font-size: 1.15rem; margin-bottom: 1.6rem; }
.svc-hero__chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem .7rem; margin-top: 1.8rem;
}
.svc-hero__chips li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
}
.svc-hero__chips li::before { content: "✓"; font-weight: 700; color: #7CE0A3; }

/* =========================================================
   Check-cards (ventajas de servicio)
   ========================================================= */
.check-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.check-cards li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: .9rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  font-weight: 600;
  line-height: 1.45;
}
.check-cards li::before {
  content: "";
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rose-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237D3250' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.08rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--ff-head); font-size: 1.6rem; color: var(--wine); line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: .8rem 0 0; color: var(--ink-soft); }
.section--wine .faq details, .section--wine .faq details:first-child { border-color: rgba(255,255,255,.18); }
.section--wine .faq summary::after { color: var(--rose); }
.section--wine .faq details p { color: rgba(255,255,255,.78); }

/* =========================================================
   Contacto
   ========================================================= */
.contacto__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.8rem, 5vw, 4rem);
  margin-top: 2.2rem;
}
.contacto__grid h2 { font-size: 1.6rem; margin-bottom: .8rem; }
.contacto-list { margin: 0 0 2rem; }
.contacto-list li { display: flex; gap: 1rem; margin-bottom: 1.2rem; }
.contacto-list__ic {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
  background: var(--wine-tint); display: grid; place-items: center; font-size: 1.1rem;
}
.hours-list > div { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.hours-list dt { color: var(--ink-soft); }
.hours-list dd { margin: 0; font-weight: 600; }

.lead-form { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.2rem); box-shadow: var(--shadow-xs); }
.lead-form label { font-weight: 700; font-size: .9rem; margin: .95rem 0 .35rem; }
.lead-form label:first-of-type { margin-top: 0; }
.lead-form label .opt { font-weight: 400; color: var(--ink-soft); }
.lead-form input,
.lead-form textarea {
  font: inherit; font-size: 1rem;
  padding: .85rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}
.lead-form input:focus,
.lead-form textarea:focus { outline: none; border-color: var(--wine); background: #fff; }
.lead-form .check {
  display: flex; flex-direction: row; align-items: flex-start; gap: .55rem;
  font-weight: 400; font-size: .9rem; margin: 1.1rem 0; color: var(--ink-soft);
}
.lead-form .check input { width: auto; padding: 0; margin-top: .25rem; }
.lead-form button { margin-top: .3rem; align-self: flex-start; }
.lead-form .hp { position: absolute; left: -9999px; }
.lead-form__status { margin: .9rem 0 0; font-weight: 600; font-size: .93rem; }
.lead-form__status.is-ok { color: #1a7a44; }
.lead-form__status.is-err { color: #b5322f; }

.map-wrap { margin-top: 0; line-height: 0; }
.map-wrap iframe { display: block; filter: grayscale(.2) contrast(1.05); }

/* =========================================================
   CTA final
   ========================================================= */
.cta-final { text-align: center; }
.cta-final .lede { margin: 0 auto 1.8rem; max-width: 44ch; }
.cta-final .btn-row { justify-content: center; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  margin-top: clamp(40px, 6vw, 68px);
  font-size: .92rem;
  color: var(--ink-soft);
}
.site-footer > .container { border-top: 1px solid var(--line); padding-block: clamp(40px, 5vw, 56px) 40px; }
.site-footer a { color: var(--ink-soft); }
@media (hover: hover) and (pointer: fine) {
  .site-footer a:hover { color: var(--wine); }
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.4fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}
.site-footer__inner > * { min-width: 0; }
.site-footer__brand img { width: 172px; height: auto; }
.site-footer__brand p { margin: 1.1rem 0 0; font-size: .88rem; line-height: 1.6; max-width: 42ch; }
.site-footer__addr { color: var(--ink-soft); }
.site-footer h4 {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.1rem;
}
.site-footer__nav ul li { margin-bottom: .55rem; }

.site-footer__sched dl { margin: 0; }
.site-footer__sched dl > div {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .86rem;
}
.site-footer__sched dl > div:first-child { padding-top: 0; }
.site-footer__sched dl > div:last-child { border-bottom: 0; }
.site-footer__sched dt { font-weight: 700; color: var(--ink); }
.site-footer__sched dd { margin: 0; white-space: nowrap; }
.site-footer__bottom {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  justify-content: space-between;
  font-size: .82rem;
}
.site-footer__bottom a { text-decoration: underline; }
@media (max-width: 860px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2.4rem 3rem; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   Widget WhatsApp
   ========================================================= */
.wa-widget { position: fixed; right: 20px; bottom: 20px; z-index: 90; font-family: var(--ff-body); }
.wa-btn {
  display: inline-flex; align-items: center; gap: .7rem;
  background: #25D366; color: #093d20;
  border: none; border-radius: var(--radius-pill);
  padding: .8rem 1.2rem .8rem .82rem;
  font-weight: 700; font-size: .92rem; cursor: pointer;
  box-shadow: 0 16px 34px -12px rgba(37,211,102,.65);
}
.wa-btn .ic { width: 32px; height: 32px; display: grid; place-items: center; background: #fff; border-radius: 50%; }
.wa-btn small { display: block; font-weight: 600; font-size: .72rem; opacity: .8; text-transform: uppercase; letter-spacing: .05em; }
.wa-panel {
  position: absolute; right: 0; bottom: calc(100% + 12px);
  width: min(340px, calc(100vw - 40px));
  background: var(--cream);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.3rem;
  display: none;
}
.wa-panel.is-open { display: block; }
.wa-panel h3 { font-family: var(--ff-head); font-weight: 400; font-size: 1.3rem; margin-bottom: .2rem; }
.wa-panel p.sub { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1rem; }
.wa-panel label { display: block; font-size: .78rem; font-weight: 700; margin-bottom: .28rem; }
.wa-panel input,
.wa-panel select {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: .7rem .85rem;
  font: inherit; font-size: .92rem;
  margin-bottom: .75rem;
}
.wa-panel input:focus, .wa-panel select:focus { outline: none; border-color: var(--wine); }
.wa-panel .btn { width: 100%; background: var(--wine); color: #fff; }
.wa-panel .hp { position: absolute; left: -9999px; }
.wa-close {
  position: absolute; top: .6rem; right: .6rem;
  width: 30px; height: 30px; border: none; background: transparent;
  font-size: 1.2rem; cursor: pointer; color: var(--ink-soft);
}

/* =========================================================
   Banner de cookies
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 100;
  width: min(400px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.3rem 1.4rem;
  font-size: .88rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin-bottom: 1rem; color: var(--ink-soft); }
.cookie-banner .row { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-banner .btn { flex: 1; padding: .75rem 1rem; font-size: .88rem; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    padding: 1.8rem var(--pad-x) 3rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  body.nav-open .primary-nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav > ul > li { border-bottom: 1px solid var(--line); }
  .primary-nav a { padding: 1rem 0; font-size: 1.1rem; }
  .has-sub .sub-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; padding: 0 0 .7rem .9rem; min-width: 0;
  }
  .has-sub > .sub-toggle::after { display: none; }
  .header-actions { display: none; }
  .nav-cta { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.8rem; }
  .nav-cta .btn { width: 100%; }

  .servicio__grid { grid-template-columns: 1fr; }
  .servicio__aside { position: static; order: -1; }
  .contacto__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .media-row, .media-row--flip { grid-template-columns: 1fr; }
  .media-row__media, .media-row--flip .media-row__media { order: -1; }
  .media-badge { position: static; margin: 1rem auto 0; max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .op-grid { columns: 1; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero__card { gap: .8rem 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* pagina de texto (legal) */
.pagina__meta { color: var(--ink-soft); font-size: .92rem; margin-bottom: 2rem; }
.container--narrow h1 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: .8rem; }

/* svc-hero — legibilidad sobre imagen */
.svc-hero__frame::after { background: linear-gradient(180deg, rgba(45,18,30,.62), rgba(45,18,30,.84)); }
.svc-hero__inner .eyebrow { color: #F2D3DE; }
.svc-hero__inner h1 { text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.svc-hero__inner .btn--outline { color: #fff; border-color: rgba(255,255,255,.55); }
@media (hover: hover) and (pointer: fine) {
  .svc-hero__inner .btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
}

/* =========================================================
   DISEÑO DE SERVICIOS (según referencia del cliente)
   ========================================================= */
.btn--whatsapp { background: var(--green); color: #062c18; box-shadow: 0 14px 34px rgba(34,201,112,.22); }
@media (hover: hover) and (pointer: fine) {
  .btn--whatsapp:hover { background: #19ba65; color: #062c18; box-shadow: 0 17px 38px rgba(34,201,112,.28); }
}
.ico { flex: 0 0 auto; }

.svc2 { --w: min(1240px, calc(100% - 48px)); }
.svc2 h1, .svc2 h2 { font-family: var(--ff-head); font-weight: 400; line-height: 1.06; letter-spacing: -.022em; text-wrap: balance; }
.svc2 .eyebrow { font-size: .72rem; letter-spacing: .16em; margin-bottom: 1.1rem; }
.svc2 .light-eyebrow { color: #f3cbd8; }

/* ---- Hero ---- */
.svc2-hero {
  width: var(--w);
  margin: clamp(8px, 1.5vw, 16px) auto 0;
  padding: clamp(40px, 6vw, 74px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f8f1f2 0%, #fdfaf8 58%, #f2e8e2 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .82fr);
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
  overflow: hidden;
}
.svc2-hero h1 { margin: 0; font-size: clamp(2.9rem, 5.6vw, 4.9rem); }
.svc2-hero__lead { max-width: 610px; margin: 1.6rem 0 0; font-family: var(--ff-head); font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.25; color: var(--wine); }
.svc2-hero__text { max-width: 620px; margin: 1.1rem 0 0; color: var(--ink-soft); font-size: 1.06rem; }
.svc2-note {
  max-width: 625px; margin: 1.3rem 0 0;
  padding: .85rem 1.05rem;
  border: 1px solid #ead7dd; border-radius: 16px;
  background: rgba(255,255,255,.72);
  display: flex; align-items: center; gap: .6rem;
  color: var(--wine-deep); font-size: .83rem; line-height: 1.45;
}
.svc2-note__ic { width: 27px; height: 27px; flex: 0 0 27px; border-radius: 50%; background: var(--rose-soft); color: var(--wine); display: grid; place-items: center; }
.svc2-note strong { display: block; font-weight: 800; }
.svc2-hero__actions { margin-top: 1.9rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.svc2-hero__actions .microcopy { color: var(--ink-soft); font-size: .82rem; }
.svc2-hero__media { position: relative; }
.svc2-hero__media > img {
  width: 100%; height: clamp(430px, 46vw, 520px);
  object-fit: cover; object-position: 50% 35%;
  border-radius: 190px 190px 28px 28px;
  box-shadow: 0 24px 60px rgba(62,37,46,.16);
}
.svc2-badge {
  position: absolute; left: clamp(-34px, -3vw, 12px); bottom: 26px;
  max-width: 280px;
  padding: 1rem 1.25rem 1rem .9rem;
  border: 1px solid rgba(255,255,255,.7); border-radius: 22px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  display: flex; align-items: center; gap: .7rem;
  font-size: .82rem; line-height: 1.35;
  box-shadow: 0 16px 36px rgba(62,37,46,.14);
}
.svc2-badge__ic { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; background: var(--rose-soft); color: var(--wine); display: grid; place-items: center; }
.svc2-badge strong { font-weight: 800; }

/* ---- Trust strip ---- */
.svc2-trust {
  width: min(1040px, calc(100% - 72px));
  margin: -27px auto 0;
  padding: 1.4rem 1.9rem;
  border-radius: 24px;
  background: #fff;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
  box-shadow: 0 18px 46px rgba(75,48,58,.12);
  position: relative; z-index: 2;
}
.svc2-trust > div { display: flex; align-items: center; gap: .55rem; font-size: .82rem; font-weight: 700; }
.svc2-trust .ico { color: var(--wine); }

/* ---- Bloque genérico de sección ---- */
.svc2-sec { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: clamp(60px, 8vw, 100px) 0; }
.svc2-sec--tight { padding-block: clamp(56px, 8vw, 90px); }
.svc2-heading { margin-bottom: 3rem; }
.svc2-heading--center { max-width: 840px; margin-inline: auto; text-align: center; }
.svc2-heading h2 { margin: 0; font-size: clamp(2rem, 3.6vw, 2.9rem); text-wrap: balance; }
.svc2-lead { font-family: var(--ff-head); font-size: clamp(1.4rem, 2.2vw, 1.85rem); line-height: 1.25; color: var(--wine); margin: 1rem 0 0; }
.svc2-sec p.svc2-body { color: var(--ink-soft); margin: 1rem 0 0; }

/* ---- Split (imagen + texto) ---- */
.svc2-split { display: grid; grid-template-columns: minmax(340px, .92fr) minmax(0, 1fr); align-items: center; gap: clamp(48px, 8vw, 100px); }
.svc2-split__media { position: relative; }
.svc2-split__media img { width: 100%; aspect-ratio: 1.05; object-fit: cover; border-radius: 28px 150px 28px 28px; }
.svc2-split__cap {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  padding: .8rem 1.05rem; border-radius: 16px;
  background: rgba(255,255,255,.91); backdrop-filter: blur(10px);
  font-size: .78rem; font-weight: 700; line-height: 1.4;
}
.svc2-quiet { margin-top: 1.8rem; display: grid; gap: .7rem; }
.svc2-quiet span { display: flex; align-items: center; gap: .55rem; font-size: .88rem; font-weight: 700; }
.svc2-quiet .ico { color: var(--wine); }

/* ---- Check grid (4) ---- */
.svc2-checkgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.svc2-checkgrid article {
  min-height: 300px; padding: 1.75rem;
  border: 1px solid var(--line); border-radius: 24px;
  background: #fff; display: flex; flex-direction: column;
}
.svc2-checkgrid article:nth-child(2), .svc2-checkgrid article:nth-child(4) { background: var(--cream); }
.svc2-checkgrid .top { display: flex; align-items: center; justify-content: space-between; }
.svc2-checkgrid .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--rose-soft); color: var(--wine); display: grid; place-items: center; }
.svc2-checkgrid .num { color: #b9aeb1; font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.svc2-checkgrid h3 { margin: 2.2rem 0 0; font-family: var(--ff-head); font-weight: 400; font-size: 1.5rem; line-height: 1.12; }
.svc2-checkgrid p { margin: .9rem 0 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.6; }

/* ---- Feature (tarjeta vino grande) ---- */
.svc2-feature {
  width: var(--w); margin: 0 auto;
  padding: clamp(46px, 7vw, 84px);
  border-radius: var(--radius-xl);
  background: var(--wine); color: #fff;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  align-items: center; gap: clamp(46px, 7vw, 88px); overflow: hidden;
}
.svc2-feature h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; }
.svc2-feature__lead { margin: 1.5rem 0 0; color: rgba(255,255,255,.78); }
.svc2-feature__list { margin: 1.7rem 0 0; padding: 0; list-style: none; display: grid; gap: .9rem; }
.svc2-feature__list li { display: flex; align-items: flex-start; gap: .7rem; font-weight: 650; }
.svc2-feature__list li > span { width: 26px; height: 26px; border-radius: 50%; flex: 0 0 26px; display: grid; place-items: center; background: rgba(255,255,255,.13); }
.svc2-feature__note { margin: 1.7rem 0 0; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.8); font-size: .82rem; }
.svc2-feature__media { position: relative; }
.svc2-feature__media img { width: 100%; min-height: 480px; object-fit: cover; object-position: 55% center; border-radius: 180px 180px 24px 24px; }
.svc2-feature__media > span { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: .85rem 1.1rem; border-radius: 16px; background: rgba(255,255,255,.9); color: var(--wine-deep); text-align: center; font-size: .76rem; font-weight: 800; }

/* ---- Proceso ---- */
.svc2-process__head { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 4rem; margin-bottom: 0; }
.svc2-process__head > p { margin: 0 0 .4rem; color: var(--ink-soft); }
.svc2-process ol { margin: 2.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.svc2-process li { padding: 2rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 1.5rem; align-items: start; }
.svc2-process .n { color: var(--wine); font-family: var(--ff-head); font-size: 3rem; line-height: 1; }
.svc2-process h3 { margin: 0; font-family: var(--ff-head); font-weight: 400; font-size: 1.7rem; }
.svc2-process p { margin: .5rem 0 0; color: var(--ink-soft); }

/* ---- Routes (opciones) ---- */
.svc2-routes { width: var(--w); margin: 0 auto; padding-top: clamp(70px, 10vw, 104px); border-radius: var(--radius-xl); background: var(--cream); }
.svc2-routes .svc2-heading { padding-inline: 48px; }
.svc2-routes__grid { padding: 0 48px 84px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.svc2-routes__grid article { padding: 2rem; border-radius: 24px; background: #fff; }
.svc2-routes__grid > article > .ico { color: var(--wine); }
.svc2-routes .label { margin: 1.5rem 0 0; color: var(--wine); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.svc2-routes h3 { margin: .5rem 0 0; font-family: var(--ff-head); font-weight: 400; font-size: 1.75rem; }
.svc2-routes article > p:last-child { margin: .9rem 0 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.6; }

/* ---- Independiente ---- */
.svc2-independent { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: clamp(78px, 11vw, 128px) 0; display: grid; grid-template-columns: .85fr 1fr; gap: clamp(60px, 10vw, 140px); }
.svc2-independent h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 4rem); }
.svc2-independent__copy > p { margin: 0; color: var(--ink-soft); font-size: 1.1rem; }
.svc2-benefits { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
.svc2-benefits span { min-height: 78px; padding: 1.1rem; border-radius: 18px; background: var(--rose-soft); display: flex; align-items: center; gap: .7rem; font-size: .82rem; font-weight: 800; line-height: 1.35; }
.svc2-benefits .ico { color: var(--wine); }

/* ---- CTA ---- */
.svc2-cta { width: var(--w); margin: 0 auto; padding: clamp(46px, 7vw, 86px); border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--wine-deep), var(--wine)); color: #fff; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 5rem; align-items: center; }
.svc2-cta h2 { max-width: 780px; margin: 0; font-size: clamp(2.6rem, 5vw, 4rem); color: #fff; }
.svc2-cta > .svc2-cta__copy > p:not(.eyebrow) { max-width: 650px; margin: 1.5rem 0 0; color: rgba(255,255,255,.76); }
.svc2-cta .btn { margin-top: 1.9rem; }
.svc2-cta__details { display: grid; gap: .85rem; }
.svc2-cta__details > div { padding: 1.25rem; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.08); display: flex; align-items: flex-start; gap: .9rem; font-size: .82rem; color: rgba(255,255,255,.72); }
.svc2-cta__details .ico { color: #f4ceda; }
.svc2-cta__details strong { color: #fff; font-size: .88rem; }

/* ---- FAQ 2 columnas ---- */
.svc2-faq { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: clamp(78px, 11vw, 128px) 0; display: grid; grid-template-columns: .7fr 1fr; gap: 6rem; }
.svc2-faq__head { position: sticky; top: 40px; align-self: start; }
.svc2-faq__list { border-top: 1px solid var(--line); }
.svc2-faq__list details { border-bottom: 1px solid var(--line); }
.svc2-faq__list summary { cursor: pointer; padding: 1.5rem 2.2rem 1.5rem 0; list-style: none; position: relative; font-family: var(--ff-head); font-size: 1.4rem; line-height: 1.25; }
.svc2-faq__list summary::-webkit-details-marker { display: none; }
.svc2-faq__list summary::after { content: "+"; position: absolute; right: 5px; top: 1.15rem; color: var(--wine); font-family: var(--ff-body); font-size: 1.7rem; }
.svc2-faq__list details[open] summary::after { content: "\2013"; }
.svc2-faq__list details p { margin: -.2rem 2.4rem 1.5rem 0; color: var(--ink-soft); font-size: .9rem; }

@media (max-width: 980px) {
  .svc2-hero { grid-template-columns: 1fr; padding: 44px; }
  .svc2-hero__media > img { border-radius: 30px; }
  .svc2-trust { grid-template-columns: repeat(2, 1fr); }
  .svc2-split, .svc2-feature, .svc2-independent, .svc2-cta, .svc2-faq { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc2-checkgrid { grid-template-columns: repeat(2, 1fr); }
  .svc2-process__head { grid-template-columns: 1fr; gap: 1rem; }
  .svc2-routes__grid { grid-template-columns: 1fr; }
  .svc2-faq__head { position: static; }
}
@media (max-width: 620px) {
  .svc2-hero { padding: 36px 22px 22px; border-radius: 24px; }
  .svc2-hero h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); line-height: 1.02; }
  .svc2-hero__actions { flex-direction: column; align-items: stretch; }
  .svc2-hero__actions .btn { width: 100%; }
  .svc2-hero__media > img { border-radius: 150px 150px 22px 22px; height: 380px; }
  .svc2-badge { left: 12px; right: 12px; max-width: none; }
  .svc2-trust { grid-template-columns: 1fr; }
  .svc2-checkgrid { grid-template-columns: 1fr; }
  .svc2-routes .svc2-heading { padding-inline: 24px; }
  .svc2-routes__grid { padding: 0 14px 16px; }
  .svc2-process li { grid-template-columns: 44px 1fr; gap: 1rem; }
  .svc2-process .n { font-size: 2.3rem; }
  .svc2-benefits { grid-template-columns: 1fr; }
  .svc2-cta { padding: 40px 22px; border-radius: 24px; }
}

/* =========================================================
   Armonización: home / blog / opiniones / contacto
   ========================================================= */

/* Heading de sección alineado a la izquierda */
.svc2-heading:not(.svc2-heading--center) { max-width: 560px; }
.svc2-heading .eyebrow { margin-bottom: .9rem; }
.svc2-sec { padding-block: clamp(52px, 6.5vw, 84px); }

/* ---- Home: barra de confianza ---- */
.home-trust {
  width: min(1120px, calc(100% - 48px));
  margin: clamp(30px, 5vw, 54px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.home-trust > div {
  background: #fff;
  padding: 1.3rem 1.4rem;
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; font-weight: 700;
}
.home-trust .ico { color: var(--wine); flex: 0 0 auto; }

/* ---- Home: datos rápidos en "quiénes somos" ---- */
.home-facts {
  display: flex; flex-wrap: wrap; gap: 1.8rem 2.6rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.home-facts strong { display: block; font-family: var(--ff-head); font-size: 2rem; line-height: 1; color: var(--wine); }
.home-facts span { font-size: .84rem; color: var(--ink-soft); }

/* ---- Home: tarjetas de servicio ---- */
.home-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.home-svc-card {
  display: flex; flex-direction: column;
  padding: 1.9rem 1.7rem 1.6rem;
  border: 1px solid var(--line); border-radius: 24px;
  background: #fff; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
@media (hover: hover) and (pointer: fine) {
  .home-svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--rose); text-decoration: none; }
}
.home-svc-card__ic {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--wine); color: #fff;
  display: grid; place-items: center;
  margin-bottom: 1.3rem;
}
.home-svc-card__ic .ico { width: 24px; height: 24px; }
.home-svc-card h3 { font-family: var(--ff-head); font-weight: 400; font-size: 1.4rem; line-height: 1.12; margin: 0 0 .55rem; }
.home-svc-card p { color: var(--ink-soft); font-size: .9rem; line-height: 1.6; margin: 0 0 1.3rem; flex: 1; }
.home-svc-card__more { display: inline-flex; align-items: center; gap: .35rem; color: var(--wine); font-weight: 800; font-size: .82rem; }

/* ---- Home: por qué elegirnos (bloque crema) ---- */
.home-why { padding-bottom: clamp(64px, 9vw, 104px); }
.home-why .svc2-heading { padding-inline: 48px; margin-bottom: 2.6rem; }
.home-why__grid { padding: 0 48px 0; }
.home-why__grid article { padding: 1.9rem; background: #fff; border-radius: 22px; }
.home-why__ic { width: 46px; height: 46px; border-radius: 50%; background: var(--rose-soft); color: var(--wine); display: grid; place-items: center; margin-bottom: 1rem; }
.home-why__grid h3 { font-family: var(--ff-head); font-weight: 400; font-size: 1.3rem; margin: 0 0 .4rem; line-height: 1.15; }
.home-why__grid p { margin: 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.55; }

/* Opiniones como tarjeta feature */
.svc2-feature--reviews .btn--white { color: var(--wine); }
.review-stack { display: grid; gap: 1rem; }
.review-stack figure {
  margin: 0; padding: 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
}
.review-stack .stars { color: #F6C560; letter-spacing: 2px; margin-bottom: .6rem; font-size: .95rem; }
.review-stack blockquote { margin: 0 0 .8rem; font-size: .98rem; line-height: 1.55; color: #fff; }
.review-stack figcaption { font-size: .82rem; color: rgba(255,255,255,.7); }

/* Tarjetas de artículo — armonizadas */
.p-card { border-color: var(--line); border-radius: 24px; background: #fff; }
.p-card img { aspect-ratio: 3 / 2; }
.p-card__body { padding: 1.4rem 1.5rem 1.7rem; }
.p-card__body h2, .p-card__body h3 { font-family: var(--ff-head); font-weight: 400; font-size: 1.4rem; line-height: 1.15; }
.p-card__cat { color: var(--wine); }

/* Filtros de blog */
.blog-filters a { border-color: var(--line); }

/* FAQ global alineado al estilo del cliente */
.faq details, .faq details:first-child { border-color: var(--line); }
.faq summary { font-family: var(--ff-head); font-weight: 400; font-size: 1.35rem; }
.faq summary::after { font-family: var(--ff-body); font-size: 1.7rem; }

@media (max-width: 980px) {
  .home-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .home-why__grid { grid-template-columns: repeat(2, 1fr); }
  .svc2-feature--reviews { grid-template-columns: 1fr; }
  .home-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .home-svc-grid { grid-template-columns: 1fr; }
  .home-why__grid { grid-template-columns: 1fr; padding-inline: 24px; }
  .home-why .svc2-heading { padding-inline: 24px; }
  .home-trust { grid-template-columns: 1fr; }
}

/* Opiniones — armonizadas */
.rating-band { border-radius: var(--radius-lg); border-color: var(--line); }
.op-card { border-radius: 24px; border-color: var(--line); }
.op-card blockquote { font-size: 1rem; }
.op-card figcaption strong { font-family: var(--ff-head); font-weight: 400; font-size: 1.1rem; }

/* Contacto — armonizado */
.contacto__grid { grid-template-columns: .8fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contacto-list li { align-items: flex-start; }
.contacto-list__ic { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; background: var(--rose-soft); color: var(--wine); display: grid; place-items: center; }
.contacto-list__ic .ico { color: var(--wine); }
.contacto-list li > span:last-child { line-height: 1.5; }
.lead-form { border-radius: var(--radius-lg); }
.lead-form__title { font-family: var(--ff-head); font-size: 1.5rem; margin: 0 0 1rem; color: var(--ink); }
.map-wrap { width: min(1240px, calc(100% - 48px)); margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 900px) { .contacto__grid { grid-template-columns: 1fr; } }

/* Header — botón rosa alineado al cliente */
.header-actions .btn--rose { font-weight: 800; font-size: .85rem; padding: .75rem 1.15rem; min-height: 44px; }

/* Prosa dentro de .svc2 no hereda line-height 1 de svc2 h1/h2 */
.svc2 .prose h2, .svc2 .prose h3 { line-height: 1.2; letter-spacing: -.01em; }

/* Home — ajustes finales de ritmo */
.svc2 > .home-trust { margin-top: clamp(26px, 4vw, 44px); }
.svc2 > .svc2-split:first-of-type { padding-top: clamp(52px, 7vw, 88px); }
.home-why { padding-top: clamp(52px, 7vw, 80px); padding-bottom: clamp(52px, 7vw, 80px); }
.home-why .svc2-heading { margin-bottom: 2.2rem; }
.svc2-process__head { margin-bottom: .5rem; }
.svc2-feature--reviews { margin-block: clamp(8px, 2vw, 24px); }
.home-svc-card p { font-size: .92rem; }

/* Home — micro-ajustes */
.home-svc-card h3 { font-size: 1.28rem; }
.svc2 #blog .svc2-heading { max-width: 640px; }
.svc2 #blog .svc2-heading h2 { text-wrap: nowrap; }
@media (max-width: 700px){ .svc2 #blog .svc2-heading h2 { text-wrap: balance; } }

/* Índice de servicios */
.svc-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.svc-index-grid .home-svc-card h2 { font-family: var(--ff-head); font-weight: 400; font-size: 1.35rem; line-height: 1.14; margin: 0 0 .55rem; }
.home-svc-card--feature { background: var(--wine); border-color: var(--wine); color: #fff; }
.home-svc-card--feature h2 { color: #fff; }
.home-svc-card--feature p { color: rgba(255,255,255,.82); }
.home-svc-card--feature .home-svc-card__ic { background: rgba(255,255,255,.16); }
.home-svc-card--feature .home-svc-card__more { color: #fff; }
@media (max-width: 900px) { .svc-index-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-index-grid { grid-template-columns: 1fr; } }

/* Footer — horario */
.site-footer__hours li { display: flex; flex-direction: column; margin-bottom: .55rem; }
.site-footer__hours li span:first-child { color: var(--ink); font-weight: 600; }
.site-footer__hours li span:last-child { font-size: .86rem; }

/* =========================================================
   Cabeceras de página de listado (blog, opiniones, contacto…)
   ========================================================= */
.svc2-heading h1 {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 1.1;
  margin: 0;
}
.svc2-heading--page { max-width: 720px; margin-bottom: 2.4rem; }
.svc2-heading--page .svc2-lead {
  font-family: var(--ff-body);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 56ch;
}

/* ---- Artículo destacado (blog) ---- */
.post-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  transition: box-shadow .2s ease, transform .2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .post-featured:hover { box-shadow: var(--shadow); text-decoration: none; }
}
.post-featured__media { align-self: stretch; }
.post-featured__media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.post-featured__body { padding: clamp(1.6rem, 3.5vw, 2.6rem) clamp(1.6rem, 3.5vw, 2.6rem) clamp(1.6rem, 3.5vw, 2.6rem) 0; }
.post-featured__body h2 { font-family: var(--ff-head); font-weight: 400; font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.15; margin: .6rem 0 .7rem; }
.post-featured__body p { color: var(--ink-soft); font-size: .96rem; margin: 0 0 1.1rem; }
.post-featured__body .arrow-link { font-size: .9rem; }

@media (max-width: 780px) {
  .post-featured { grid-template-columns: 1fr; }
  .post-featured__media img { min-height: 220px; max-height: 300px; }
  .post-featured__body { padding: 1.5rem 1.6rem 1.8rem; }
}

/* =========================================================
   Modal de reserva de cita
   ========================================================= */
.booking-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: clamp(12px, 3vw, 28px); }
.booking-modal[hidden] { display: none; }
.booking-modal__overlay { position: absolute; inset: 0; background: rgba(20, 12, 16, .55); backdrop-filter: blur(2px); }
.booking-modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: min(88vh, 760px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
}
.booking-modal__close {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 34px; height: 34px;
  border: none; border-radius: 50%;
  background: rgba(20,12,16,.06); color: var(--ink);
  font-size: 1.3rem; line-height: 1; cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .booking-modal__close:hover { background: rgba(20,12,16,.12); }
}
.booking-modal__frame { width: 100%; height: 100%; }
.booking-modal__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
