/* =========================================================
   GFR Brokers — Design System
   Paleta de marca: vino #99252B · amarillo #FDB713 · negro
   ========================================================= */

:root {
  /* Marca */
  --vino: #99252B;
  --vino-dark: #7C1D23;
  --vino-900: #5E1519;
  --vino-soft: #F6E9EA;      /* fondo tenue vino */
  --amber: #FDB713;
  --amber-dark: #E0A004;
  --amber-soft: #FEF3D6;

  /* Neutros */
  --ink: #1C1B1A;
  --ink-2: #4A4744;
  --muted: #726C66;
  --line: #EAE4DD;
  --paper: #FFFFFF;
  --cream: #FBF6F0;          /* seccion alterna cálida */
  --cream-2: #F4ECE2;

  /* Tipografía */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;   /* titulares editoriales */
  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radios */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Sombras */
  --sh-sm: 0 2px 8px rgba(28, 27, 26, .06);
  --sh-md: 0 10px 30px rgba(28, 27, 26, .08);
  --sh-lg: 0 24px 60px rgba(28, 27, 26, .12);
  --sh-vino: 0 14px 34px rgba(153, 37, 43, .28);

  /* Layout */
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(56px, 8vw, 104px);
}

/* ------------------ Reset base ------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; color: var(--ink-2); }
strong { color: var(--ink); font-weight: 600; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }

/* ------------------ Utilidades ------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--vino { background: var(--vino); color: #fff; }
.section--vino h2, .section--vino h3 { color: #fff; }
.section--vino p { color: rgba(255,255,255,.9); }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vino);
  background: var(--vino-soft);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.section--vino .eyebrow { color: #fff; background: rgba(255,255,255,.16); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-2); max-width: 60ch; }
.section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-amber { color: var(--amber-dark); }

/* ------------------ Botones ------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--r-pill);
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--vino); color: #fff; box-shadow: var(--sh-vino); }
.btn--primary:hover { background: var(--vino-dark); }
.btn--amber { background: var(--amber); color: var(--ink); box-shadow: 0 12px 28px rgba(253,183,19,.35); }
.btn--amber:hover { background: var(--amber-dark); }
.btn--ghost { background: transparent; color: var(--vino); border-color: var(--vino); }
.btn--ghost:hover { background: var(--vino); color: #fff; }
.btn--white { background:#fff; color: var(--vino); }
.btn--white:hover { background: var(--cream); }
.btn--outline-white { background: transparent; color:#fff; border-color: rgba(255,255,255,.5); }
.btn--outline-white:hover { background:#fff; color: var(--vino); border-color:#fff; }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ------------------ Header / Nav ------------------ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--sh-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.nav__logo img { height: 42px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__menu a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink-2);
  padding: 10px 14px; border-radius: var(--r-pill); transition: color .2s, background .2s;
}
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: var(--vino); background: var(--vino-soft); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: none; padding: 8px; border-radius: 10px; }
.nav__toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle span + span { margin-top: 5px; }

/* Dropdown "Seguros" */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-lg);
  padding: 12px; width: min(560px, 86vw); display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: .2s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: .92rem; color: var(--ink-2); }
.dropdown a:hover { background: var(--cream); color: var(--vino); }
.dropdown a svg { width: 20px; height: 20px; color: var(--vino); flex: none; }

@media (max-width: 960px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px var(--gutter) 28px;
    box-shadow: var(--sh-md); transform: translateY(-120%); transition: transform .3s ease; max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.is-open .nav__menu { transform: translateY(0); }
  .nav__menu a { padding: 14px 16px; font-size: 1.05rem; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; grid-template-columns: 1fr; width: auto; padding: 4px 0 4px 12px; }
  .has-dropdown > a::after { content: " ▾"; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav__cta .btn--primary { display: none; }
}

/* ------------------ Banner temporal ------------------ */
.banner {
  background: linear-gradient(100deg, var(--vino), var(--vino-dark));
  color: #fff; position: relative;
}
.banner__inner { display: flex; align-items: center; gap: 16px; padding: 12px var(--gutter); max-width: var(--maxw); margin-inline: auto; }
.banner__badge { flex: none; background: var(--amber); color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); }
.banner p { margin: 0; color: rgba(255,255,255,.95); font-size: .92rem; }
.banner strong { color: #fff; }
.banner__close { margin-left: auto; flex: none; background: rgba(255,255,255,.15); color: #fff; border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 18px; line-height: 1; display: grid; place-items: center; transition: background .2s; }
.banner__close:hover { background: rgba(255,255,255,.3); }
.banner[hidden] { display: none; }
@media (max-width: 640px) { .banner__badge { display: none; } }

/* ------------------ Hero ------------------ */
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 620px; height: 620px;
  background: radial-gradient(closest-side, var(--amber-soft), transparent 70%); z-index: 0;
}
.hero::after {
  content: ""; position: absolute; bottom: -30%; left: -12%; width: 560px; height: 560px;
  background: radial-gradient(closest-side, var(--vino-soft), transparent 70%); z-index: 0;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 7vw, 88px); }
.hero h1 { margin-bottom: .35em; }
.hero h1 .hl { color: var(--vino); }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: var(--ink-2); max-width: 54ch; margin-bottom: 28px; }
.hero__trust { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 12px; }
.hero__trust li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-2); font-size: .98rem; }
.hero__trust .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--vino-soft); color: var(--vino); display: grid; place-items: center; margin-top: 2px; }
.hero__trust .ck svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } .hero__art { order: -1; } }

/* Ilustración hero (SVG shield escena) */
.hero__art { position: relative; }
.hero__art .art-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  padding: 28px; display: grid; gap: 16px;
}
.hero__art .art-badge { display:flex; align-items:center; gap:12px; }
.hero__art .art-badge .ico { width:52px; height:52px; border-radius: 16px; background: var(--vino); color:#fff; display:grid; place-items:center; }
.hero__art .art-badge .ico svg { width: 28px; height: 28px; }
.hero__art .art-badge b { font-family: var(--font-head); font-size: 1.05rem; }
.hero__art .art-line { display:flex; align-items:center; gap:12px; padding: 12px 14px; background: var(--cream); border-radius: var(--r-md); font-size: .94rem; color: var(--ink-2); }
.hero__art .art-line .dot { width: 30px; height:30px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-dark); display:grid; place-items:center; flex:none; }
.hero__art .art-line .dot svg { width:16px; height:16px; }

/* ------------------ Frase destacada ------------------ */
.quote { background: var(--vino); color: #fff; text-align: center; }
.quote .container { max-width: 900px; }
.quote p { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.3; color: #fff; margin: 0; }
.quote .mark { color: var(--amber); font-size: 1.4em; line-height: 0; }

/* ------------------ Grid de soluciones / cards ------------------ */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.card__ico { width: 54px; height: 54px; border-radius: 16px; background: var(--vino-soft); color: var(--vino); display: grid; place-items: center; margin-bottom: 16px; transition: background .2s, color .2s; }
.card:hover .card__ico { background: var(--vino); color: #fff; }
.card__ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.16rem; margin-bottom: 6px; }
.card p { font-size: .95rem; margin: 0; color: var(--muted); }
.card__arrow { position: absolute; top: 24px; right: 22px; color: var(--line); transition: color .2s, transform .2s; }
.card:hover .card__arrow { color: var(--vino); transform: translateX(3px); }
.card__arrow svg { width: 22px; height: 22px; }

/* Card grande (seguros.html) */
.card--lg { padding: 30px; }
.card--lg h3 { font-size: 1.3rem; }
.card--lg p { font-size: 1rem; color: var(--ink-2); margin-bottom: 18px; }
.card__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--vino); font-size: .95rem; }
.card__link svg { width: 18px; height: 18px; transition: transform .2s; }
.card--lg:hover .card__link svg { transform: translateX(4px); }

/* ------------------ Stepper "Así trabajamos" ------------------ */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; text-align: center; padding: 8px; }
.step__num { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: #fff; border: 2px solid var(--vino); color: var(--vino); font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; display: grid; place-items: center; position: relative; z-index: 1; }
.step:nth-child(odd) .step__num { background: var(--vino); color: #fff; }
.step h3 { font-size: 1.02rem; margin-bottom: 4px; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }
.steps--line .step:not(:last-child)::after { content: ""; position: absolute; top: 29px; left: 60%; width: 80%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } .steps--line .step::after { display: none; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ------------------ Tabla comparativa ------------------ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.compare__col { padding: 0; }
.compare__col--gfr { background: var(--vino-soft); }
.compare__head { padding: 22px 26px; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
.compare__col--direct .compare__head { color: var(--ink-2); }
.compare__col--gfr .compare__head { color: var(--vino); display:flex; align-items:center; gap:10px; }
.compare__row { padding: 18px 26px; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .96rem; display: flex; gap: 12px; align-items: flex-start; min-height: 84px; }
.compare__row:last-child { border-bottom: none; }
.compare__col--direct .compare__row { color: var(--muted); }
.compare__col--gfr .compare__row { color: var(--ink); }
.compare__row .ic { flex: none; width: 22px; height: 22px; margin-top: 1px; }
.compare__col--direct .ic { color: #C9C2BA; }
.compare__col--gfr .ic { color: var(--vino); }
@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr; }
  .compare__col--direct { border-bottom: 2px solid var(--line); }
  .compare__row { min-height: 0; }
}

/* ------------------ Lista de beneficios / checklist ------------------ */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.checklist .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-dark); display: grid; place-items: center; margin-top: 1px; }
.checklist .ck svg { width: 15px; height: 15px; }
.checklist--vino .ck { background: rgba(255,255,255,.16); color: #fff; }
.checklist--two { grid-template-columns: 1fr 1fr; gap: 14px 28px; }
@media (max-width: 640px) { .checklist--two { grid-template-columns: 1fr; } }

/* ------------------ Split (texto + tarjeta) ------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* Panel/tarjeta genérica */
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--sh-sm); }
.panel--cream { background: var(--cream); border-color: transparent; }
.panel--soft { background: var(--vino-soft); border-color: transparent; }
.scenario { border-left: 4px solid var(--amber); background: var(--amber-soft); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 20px 24px; }
.scenario .tag { font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-dark); display: block; margin-bottom: 6px; }
.scenario p { margin: 0; color: var(--ink); }

/* ------------------ Aseguradoras ------------------ */
.insurers { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.insurer-chip {
  display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 12px 24px; font-family: var(--font-head); font-weight: 600; color: var(--ink-2);
  box-shadow: var(--sh-sm);
}
.insurer-chip .bullet { width: 10px; height: 10px; border-radius: 50%; background: var(--vino); }
.insurers-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 18px; }

/* ------------------ Acordeón FAQ ------------------ */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq__item.is-open { box-shadow: var(--sh-md); border-color: transparent; }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--vino-soft); color: var(--vino); display: grid; place-items: center; transition: transform .25s, background .2s, color .2s; font-size: 20px; line-height: 1; }
.faq__item.is-open .plus { transform: rotate(45deg); background: var(--vino); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 24px 22px; color: var(--ink-2); }
.faq__a-inner p:last-child { margin-bottom: 0; }

/* ------------------ CTA band ------------------ */
.cta-band { background: linear-gradient(120deg, var(--vino), var(--vino-900)); color: #fff; border-radius: var(--r-xl); padding: clamp(36px, 6vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; top:-40%; right:-10%; width:400px; height:400px; background: radial-gradient(closest-side, rgba(253,183,19,.25), transparent 70%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 60ch; margin-inline: auto; position: relative; }
.cta-band .btn-row { justify-content: center; position: relative; margin-top: 24px; }

/* ------------------ Formulario ------------------ */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); }
.field label .req { color: var(--vino); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-md); background: #fff; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--vino); box-shadow: 0 0 0 4px var(--vino-soft); }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--ink-2); }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--vino); flex: none; }
.form__note { font-size: .85rem; color: var(--muted); }
.form__ok { display: none; background: var(--amber-soft); border: 1px solid var(--amber); color: var(--ink); padding: 16px 20px; border-radius: var(--r-md); font-weight: 500; }
.form__ok.show { display: block; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

/* ------------------ Diagrama deducible/coaseguro ------------------ */
.flow { display: grid; gap: 14px; max-width: 560px; margin: 24px auto 0; }
.flow__box { border-radius: var(--r-md); padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; }
.flow__box .amt { font-size: 1.1rem; }
.flow__box--total { background: var(--ink); color: #fff; }
.flow__box--ded { background: var(--vino-soft); color: var(--vino); }
.flow__box--co { background: var(--amber-soft); color: var(--amber-dark); }
.flow__box--pay { background: var(--vino); color: #fff; }
.flow__box small { display:block; font-family: var(--font-body); font-weight: 400; font-size: .78rem; opacity: .8; }
.flow__arrow { justify-self: center; color: var(--muted); }
.flow__split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px){ .flow__split { grid-template-columns: 1fr; } }

/* ------------------ Page hero (interior) ------------------ */
.page-hero { background: var(--cream); position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; top:-40%; right:-8%; width:460px; height:460px; background: radial-gradient(closest-side, var(--amber-soft), transparent 70%); }
.page-hero__inner { position: relative; z-index: 1; padding-block: clamp(40px, 6vw, 76px); max-width: 760px; }
.breadcrumb { font-size: .86rem; color: var(--muted); margin-bottom: 14px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--vino); }
.product-hero__inner { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; max-width: 820px; }
.product-hero__ico { width: 64px; height: 64px; border-radius: 18px; background: var(--vino); color: #fff; display: grid; place-items: center; }
.product-hero__ico svg { width: 34px; height: 34px; }
.product-hero__tagline { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.05rem,2vw,1.35rem); color: var(--vino); margin-bottom: 10px; }
@media (max-width:560px){ .product-hero__inner { grid-template-columns: 1fr; } }

/* ------------------ Footer ------------------ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: clamp(48px, 7vw, 72px) 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.site-footer img { height: 46px; margin-bottom: 18px; }
.site-footer p { color: rgba(255,255,255,.6); font-size: .94rem; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col a { color: rgba(255,255,255,.72); font-size: .94rem; transition: color .2s; }
.footer__col a:hover { color: var(--amber); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.72); font-size: .94rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: rgba(255,255,255,.5); }
@media (max-width: 860px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer__grid { grid-template-columns: 1fr; } }

/* ------------------ Animación reveal ------------------ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ------------------ Fotos: tarjetas con foto circular ------------------ */
.card__photo { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; margin-bottom: 18px; border: 3px solid var(--cream); box-shadow: var(--sh-sm); transition: border-color .2s, transform .2s; background: var(--cream); }
.card:hover .card__photo { border-color: var(--vino-soft); transform: scale(1.03); }

/* ------------------ Foto genérica enmarcada ------------------ */
.photo-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); background: var(--cream); }
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.photo-frame--round { border-radius: 50%; }

/* ------------------ Banda "Sobre nosotros" con foto ------------------ */
.about-band__media { position: relative; }
.about-band__media .photo-frame { aspect-ratio: 4 / 3.4; }
.about-band__chip { position: absolute; right: -14px; bottom: -18px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.about-band__chip .n { font-family: var(--font-head); font-weight: 700; font-size: 1.8rem; color: var(--vino); line-height: 1; }
.about-band__chip .l { font-size: .8rem; color: var(--muted); max-width: 14ch; }
@media (max-width: 560px){ .about-band__chip { position: static; margin-top: 16px; } }

/* ------------------ Banda de estadísticas ------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; }
.stat .n { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.1rem, 4vw, 2.9rem); color: var(--vino); line-height: 1; }
.section--vino .stat .n { color: #fff; }
.stat .l { color: var(--muted); font-size: .92rem; margin-top: 8px; }
.section--vino .stat .l { color: rgba(255,255,255,.85); }
@media (max-width: 720px){ .stats { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* ------------------ Testimonios ------------------ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px){ .testimonials { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 16px; }
.tcard .stars { color: var(--amber); letter-spacing: 3px; font-size: 1.05rem; }
.tcard p { font-size: 1.02rem; color: var(--ink); margin: 0; }
.tcard__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__by img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex: none; }
.tcard__by b { font-family: var(--font-head); font-size: .96rem; display: block; color: var(--ink); }
.tcard__by span { font-size: .84rem; color: var(--muted); }

/* ------------------ Product hero con foto ------------------ */
.product-hero { background: var(--cream); position: relative; overflow: hidden; }
.product-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,56px); align-items: center; padding-block: clamp(36px,5vw,64px); position: relative; z-index: 1; }
.product-hero__ico { width: 56px; height: 56px; border-radius: 16px; background: var(--vino); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.product-hero__ico svg { width: 30px; height: 30px; }
.product-hero__tag { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.05rem,1.8vw,1.3rem); color: var(--vino); margin-bottom: 12px; }
.product-hero .photo-frame { aspect-ratio: 4 / 3.2; }
@media (max-width: 860px){ .product-hero__grid { grid-template-columns: 1fr; } .product-hero__media { order: -1; } }

/* ------------------ Split con foto ------------------ */
.split__media .photo-frame { aspect-ratio: 4 / 3.2; }

/* ------------------ CTA con foto de fondo ------------------ */
.cta-photo { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(40px,6vw,72px); color: #fff; text-align: center; }
.cta-photo::before { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(94,21,25,.92), rgba(153,37,43,.82)); z-index:1; }
.cta-photo img.bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.cta-photo > * { position: relative; z-index: 2; }
.cta-photo h2 { color:#fff; }
.cta-photo p { color: rgba(255,255,255,.9); max-width: 60ch; margin-inline:auto; }
.cta-photo .btn-row { justify-content:center; margin-top: 24px; }

/* ------------------ Blog / ABC teaser ------------------ */
.posts { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 900px){ .posts { grid-template-columns: 1fr; max-width: 560px; margin-inline:auto; } }
.post { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; display:flex; flex-direction:column; }
.post:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.post__img { aspect-ratio: 16/10; overflow:hidden; }
.post__img img { width:100%; height:100%; object-fit:cover; }
.post__body { padding: 20px 22px 24px; display:flex; flex-direction:column; gap:8px; flex:1; }
.post__tag { font-family:var(--font-head); font-weight:600; font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:var(--vino); }
.post h3 { font-size:1.1rem; margin:0; }
.post p { font-size:.92rem; color:var(--muted); margin:0; }
.post__link { margin-top:auto; font-family:var(--font-head); font-weight:600; color:var(--vino); font-size:.9rem; padding-top:6px; }

/* ------------------ Hero vino (home) ------------------ */
.has-vino-hero .site-header { background: transparent; backdrop-filter: none; }
.has-vino-hero .site-header.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: saturate(140%) blur(12px); }
@media (min-width: 961px) {
  .has-vino-hero .site-header:not(.is-scrolled) .nav__menu a { color: rgba(255,255,255,.9); }
  .has-vino-hero .site-header:not(.is-scrolled) .nav__menu a:hover,
  .has-vino-hero .site-header:not(.is-scrolled) .nav__menu a[aria-current="page"] { color:#fff; background: rgba(255,255,255,.16); }
  .has-vino-hero .site-header:not(.is-scrolled) .has-dropdown .dropdown a { color: var(--ink-2); }
}
.has-vino-hero .site-header:not(.is-scrolled) .nav__toggle span { background:#fff; }

.nav__logo--swap { position: relative; display: inline-flex; align-items: center; }
.nav__logo--swap img { height: 42px; width:auto; }
.nav__logo--swap .logo-dark { display: none; }
.has-vino-hero .site-header.is-scrolled .nav__logo--swap .logo-light { display: none; }
.has-vino-hero .site-header.is-scrolled .nav__logo--swap .logo-dark { display: block; }

.hero-vino {
  position: relative; color: #fff; overflow: hidden;
  margin-top: -74px; padding-top: 74px;
  background: radial-gradient(1200px 600px at 80% -10%, #B32A31 0%, transparent 60%),
              linear-gradient(160deg, var(--vino) 0%, var(--vino-900) 100%);
}
.hero-vino::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.6px); background-size: 26px 26px; opacity:.6; }
.hero-vino__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px,5vw,64px); align-items: center; padding-block: clamp(52px, 8vw, 96px); }
.hero-vino h1 { color: #fff; font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
.hero-vino h1 .hl { color: var(--amber); }
.hero-vino__sub { color: rgba(255,255,255,.9); font-size: clamp(1.05rem,1.6vw,1.26rem); max-width: 54ch; margin-bottom: 28px; }
.hero-vino .btn--ghost { color:#fff; border-color: rgba(255,255,255,.55); }
.hero-vino .btn--ghost:hover { background:#fff; color: var(--vino); border-color:#fff; }
.hero-vino__pills { display:flex; flex-wrap:wrap; gap:10px; margin-top: 30px; }
.hero-vino__pills span { display:inline-flex; align-items:center; gap:8px; background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); color:#fff; padding:9px 16px; border-radius: var(--r-pill); font-size:.9rem; font-family: var(--font-head); font-weight:500; }
.hero-vino__pills svg { width:16px; height:16px; color: var(--amber); }
.hero-vino__card { position: relative; background:#fff; color: var(--ink); border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: 28px; display:grid; gap:16px; }
.hero-vino__card .row { display:flex; align-items:center; gap:14px; }
.hero-vino__card .row .ic { width:48px; height:48px; border-radius:14px; background: var(--vino-soft); color:var(--vino); display:grid; place-items:center; flex:none; }
.hero-vino__card .row .ic svg { width:26px; height:26px; }
.hero-vino__card .row b { font-family: var(--font-head); display:block; font-size:1.05rem; }
.hero-vino__card .row small { color: var(--muted); }
.hero-vino__stat { display:grid; grid-template-columns:1fr 1fr; gap:14px; border-top:1px solid var(--line); padding-top:18px; }
.hero-vino__stat .n { font-family: var(--font-head); font-weight:700; font-size:1.7rem; color:var(--vino); line-height:1; }
.hero-vino__stat .l { font-size:.82rem; color:var(--muted); margin-top:4px; }
.hero-vino__wave { position:relative; z-index:1; line-height:0; margin-top: clamp(20px,4vw,40px); }
.hero-vino__wave svg { width:100%; height:56px; display:block; }
@media (max-width: 900px){ .hero-vino__grid { grid-template-columns:1fr; } .hero-vino__card { order:-1; } }

/* ------------------ Prose (bloques de contenido producto) ------------------ */
.stack > * + * { margin-top: clamp(28px, 4vw, 48px); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,40px); }
@media (max-width: 780px){ .grid-2 { grid-template-columns: 1fr; } }
.h-ico { display:flex; align-items:center; gap:12px; margin-bottom: 14px; }
.h-ico .b { width:40px; height:40px; border-radius:12px; background: var(--vino-soft); color:var(--vino); display:grid; place-items:center; flex:none; }
.h-ico .b svg { width:22px;height:22px; }
.h-ico h3 { margin:0; }

/* =========================================================
   REV.2 — "GFR Editorial Premium"
   Serif display + duotono de marca + acentos vino profundo
   ========================================================= */

/* ---- Titulares en serif editorial (dan peso de empresa consolidada) ---- */
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.015em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.04; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.9rem); line-height: 1.1; }
h3, h4 { font-family: var(--font-head); }
.serif { font-family: var(--font-display); }
.italic { font-style: italic; }

/* ---- Kicker editorial con punto de marca ámbar ---- */
.kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--vino); margin-bottom: 16px; }
.kicker::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--amber); flex: none; box-shadow: 0 0 0 4px var(--amber-soft); }
.section--deep .kicker, .section--vino .kicker { color: #fff; }
.section--deep .kicker::before, .section--vino .kicker::before { box-shadow: 0 0 0 4px rgba(253,183,19,.2); }
/* punto de marca suelto */
.dot-amber { color: var(--amber); }

/* ---- Bloque oscuro premium (vino profundo) ---- */
.section--deep { background: var(--vino-900); color: #fff; position: relative; overflow: hidden; }
.section--deep h1, .section--deep h2, .section--deep h3 { color: #fff; }
.section--deep p { color: rgba(255,255,255,.85); }
.section--deep::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.05) 1.4px, transparent 1.5px); background-size: 26px 26px; opacity:.7; pointer-events:none; }
.section--deep > .container { position: relative; z-index: 1; }

/* ---- Duotono de marca: unifica todas las fotos a un mismo tono ---- */
.duo { position: relative; overflow: hidden; background: var(--vino); border-radius: var(--r-lg); }
.duo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05) brightness(1.06); mix-blend-mode: luminosity; transition: filter .4s ease, transform .5s ease; }
.duo--deep { background: var(--vino-900); }
.duo--warm { background: #B0514A; }
.duo--ink { background: #2A2624; }
/* revelar color al pasar el cursor (detalle premium) */
.duo--hover:hover img { filter: grayscale(0) contrast(1) brightness(1); mix-blend-mode: normal; transform: scale(1.03); }
/* acento: fina línea ámbar inferior opcional */
.duo--edge::after { content:""; position:absolute; left:0; right:0; bottom:0; height:4px; background: var(--amber); }

/* ---- Tarjeta con foto a sangre (reemplaza el círculo sobrepuesto) ---- */
.pcard { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.pcard__media { position: relative; }
.pcard__media .duo { border-radius: 0; aspect-ratio: 3 / 2; }
.pcard:hover .pcard__media .duo img { filter: grayscale(0) contrast(1) brightness(1); mix-blend-mode: normal; transform: scale(1.04); }
.pcard__tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,.92); color: var(--vino); font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--r-pill); backdrop-filter: blur(4px); }
.pcard__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard__body h3 { font-size: 1.18rem; margin: 0; }
.pcard__body p { font-size: .94rem; color: var(--muted); margin: 0; }
.pcard__more { margin-top: 4px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--vino); }
.pcard__more svg { width: 17px; height: 17px; transition: transform .2s; }
.pcard:hover .pcard__more svg { transform: translateX(4px); }

/* ---- Hero editorial (home rev.2) ---- */
.hero-ed { background: var(--cream); position: relative; overflow: hidden; }
.hero-ed::before { content:""; position:absolute; top:-25%; left:-8%; width:520px; height:520px; background: radial-gradient(closest-side, var(--amber-soft), transparent 70%); opacity:.7; }
.hero-ed__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px,5vw,72px); align-items: center; padding-block: clamp(48px,7vw,92px); }
.hero-ed h1 { margin-bottom: .3em; }
.hero-ed h1 .hl { color: var(--vino); font-style: italic; }
.hero-ed__sub { font-size: clamp(1.06rem,1.6vw,1.26rem); color: var(--ink-2); max-width: 52ch; margin-bottom: 28px; }
.hero-ed__trust { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-ed__trust li { display: flex; align-items: center; gap: 9px; color: var(--ink-2); font-size: .93rem; font-family: var(--font-head); font-weight: 500; }
.hero-ed__trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); flex: none; }
.hero-ed__media { position: relative; }
.hero-ed__media .duo { aspect-ratio: 4 / 4.5; box-shadow: var(--sh-lg); }
.hero-ed__badge { position: absolute; left: -18px; bottom: 28px; background: #fff; border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: 16px 20px; display: flex; align-items: center; gap: 14px; max-width: 260px; }
.hero-ed__badge .n { font-family: var(--font-display); font-weight: 600; font-size: 2rem; color: var(--vino); line-height: 1; }
.hero-ed__badge .l { font-size: .82rem; color: var(--muted); }
@media (max-width: 900px){ .hero-ed__grid { grid-template-columns: 1fr; } .hero-ed__media { order: -1; } .hero-ed__badge { left: 12px; } }

/* ---- Banda con foto duotono (about / siniestros / segmentos) ---- */
.media-band .duo { aspect-ratio: 4 / 3.3; box-shadow: var(--sh-md); }
.section--deep .duo, .section--vino .duo { box-shadow: 0 24px 60px rgba(0,0,0,.35); }

/* ---- Retrato duotono para testimonios ---- */
.tcard__by .duo { width: 50px; height: 50px; border-radius: 50%; flex: none; }
.tcard__by .duo img { filter: grayscale(100%) contrast(1.05) brightness(1.05); }
.pullquote .by .duo { width: 54px; height: 54px; border-radius: 50%; }

/* ---- Segmentos por audiencia: lista de enlaces ---- */
.seg-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; }
.seg-list a { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-family: var(--font-head); font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); transition: color .2s, padding .2s; }
.seg-list a:hover { color: var(--vino); padding-left: 4px; }
.seg-list a svg { width: 16px; height: 16px; color: var(--vino); flex: none; }
.section--deep .seg-list a { color: #fff; border-color: rgba(255,255,255,.18); }
.section--deep .seg-list a:hover { color: var(--amber); }
.section--deep .seg-list a svg { color: var(--amber); }
@media (max-width: 560px){ .seg-list { grid-template-columns: 1fr; } }

/* ---- Pull quote (testimonio destacado) ---- */
.pullquote { text-align: center; max-width: 900px; margin-inline: auto; }
.pullquote > p { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.5rem,3.2vw,2.3rem); line-height: 1.35; color: #fff; margin: 0 0 24px; }
.pullquote .by { display: inline-flex; align-items: center; gap: 14px; }
.pullquote .by b { font-family: var(--font-head); display: block; color: #fff; }
.pullquote .by span { font-size: .85rem; color: rgba(255,255,255,.7); }
.pullquote .note { font-size: .8rem; font-style: normal; color: rgba(255,255,255,.55); margin-top: 26px; }

/* CTA sobre foto duotono profunda */
.cta-deep { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(40px,6vw,72px); color:#fff; text-align:center; }
.cta-deep .duo { position:absolute; inset:0; border-radius:0; }
.cta-deep .duo::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(94,21,25,.92), rgba(153,37,43,.82)); }
.cta-deep > * { position: relative; z-index: 2; }
.cta-deep h2 { color:#fff; }
.cta-deep p { color: rgba(255,255,255,.9); max-width: 60ch; margin-inline:auto; }
.cta-deep .btn-row { justify-content:center; margin-top: 24px; }

/* ---- Duotono en páginas internas (producto / índice / nosotros) ---- */
.product-hero .duo { aspect-ratio: 4 / 3.2; box-shadow: var(--sh-md); }
.split__media .duo { aspect-ratio: 4 / 3.3; box-shadow: var(--sh-md); }
.post__img.duo { border-radius: 0; }
.post:hover .post__img.duo img { filter: grayscale(0) contrast(1) brightness(1); mix-blend-mode: normal; transform: scale(1.04); }

/* =========================================================
   REV.3 — Ilustraciones de marca (sin duotono)
   ========================================================= */
.duo { background: transparent; }
.duo img { filter: none !important; mix-blend-mode: normal !important; }
.duo--edge::after { display: none; }        /* sin línea ámbar extra sobre ilustración */
.cta-deep .duo::after { background: linear-gradient(120deg, rgba(94,21,25,.9), rgba(153,37,43,.72)); }

/* =========================================================
   REV.4 — Encuadre de fotos (evitar recortes/descuadres)
   ========================================================= */
.duo img { object-fit: cover; object-position: center 30%; width: 100%; height: 100%; }
.hero-ed__media .duo { aspect-ratio: 5 / 4.3; }
.pcard__media .duo   { aspect-ratio: 3 / 2; }
.product-hero .duo   { aspect-ratio: 5 / 4; }
.split__media .duo, .media-band .duo { aspect-ratio: 4 / 3.1; }
.post__img.duo       { aspect-ratio: 3 / 2; }
.tcard__by .duo, .tcard__by .duo img { object-position: center 25%; }

/* =========================================================
   REV.5 — Legibilidad: checklist sobre fondos oscuros en blanco
   ========================================================= */
.checklist--vino li,
.section--deep .checklist li,
.section--vino .checklist li { color: rgba(255,255,255,.94); }
.checklist--vino .ck,
.section--deep .checklist .ck,
.section--vino .checklist .ck { background: rgba(255,255,255,.18); color: #fff; }

/* =========================================================
   REV.6 — Fotos en escala de grises -> color (transición suave)
   ========================================================= */
.duo img { filter: grayscale(100%) !important; transition: filter .7s ease, transform .5s ease !important; }
@media (hover: hover) { .duo:hover img { filter: grayscale(0%) !important; } }
.duo.is-active img { filter: grayscale(0%) !important; }

/* =========================================================
   REV.7 — Menú móvil robusto (panel con visibility, no translate)
   ========================================================= */
@media (max-width: 960px) {
  /* sin backdrop-filter: evita crear un contenedor que descuadre el menú fijo */
  .site-header { z-index: 100; background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav__cta { display: none; }              /* mueve el hamburguesa a la derecha */
  .nav__toggle { margin-left: auto; position: relative; z-index: 95; }  /* por encima del overlay */
  .nav__logo { position: relative; z-index: 95; }
  .nav__menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: auto;
    height: 100vh; height: 100dvh;
    z-index: 90; margin: 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 2px;
    background: #fff; border-bottom: none; box-shadow: none;
    padding: 96px var(--gutter) 32px;   /* padding-top se ajusta por JS al header real */
    max-height: none; overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: none;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .nav.is-open .nav__menu { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__menu > li { border-bottom: 1px solid var(--line); }
  .nav__menu > li:last-child { border-bottom: none; }
  .nav__menu a { padding: 15px 8px; font-size: 1.08rem; }
  .dropdown { padding: 0 0 8px 12px; }
  .dropdown a { padding: 11px 8px; font-size: .98rem; }
}

/* =========================================================
   REV.8 — Filtro estilo caricatura (demo, aplicado con .is-cartoon)
   ========================================================= */
.duo.is-cartoon img { filter: url(#cartoon) !important; }

/* =========================================================
   REV.9 — Cartoons: mismo efecto gris -> color que las fotos
   (se elimina la excepción "siempre a color"; usan las reglas base)
   ========================================================= */

/* =========================================================
   REV.10 — Títulos en gris Oxford
   ========================================================= */
:root { --title: #3A424B; }   /* gris Oxford (carbón/slate) */
h1, h2, h3, h4 { color: var(--title); }

/* =========================================================
   REV.11 — Sin breadcrumbs
   ========================================================= */
.breadcrumb { display: none; }

/* =========================================================
   REV.12 — Ilustraciones sin marco/sombra (integradas al fondo)
   ========================================================= */
.h2-illus img,
.hero-ed__media .duo, .hero-ed__media .duo img,
.product-hero .duo, .product-hero .duo img,
.split__media .duo, .split__media .duo img,
.media-band .duo, .media-band .duo img {
  box-shadow: none !important; border: none !important; border-radius: 0 !important; background: transparent !important;
}
/* Tarjetas de seguros: imagen integrada, sin caja */
.post { box-shadow: none !important; border: none !important; background: transparent !important; }
.post:hover { box-shadow: none !important; transform: none !important; }
.post .post__img, .post .post__img.duo { border-radius: 0 !important; background: transparent !important; }
.post__body { padding-inline: 0; }

/* =========================================================
   REV.13 — Menú móvil: "Seguros" solo enlaza (sin desplegar submenú)
   ========================================================= */
@media (max-width: 960px){
  .nav__menu .dropdown { display: none !important; }
  .has-dropdown > a::after { content: "" !important; }
}

/* =========================================================
   REV.15 — Sin efecto grises→color ni zoom en hover (line-art estático)
   ========================================================= */
.duo img,
.duo.is-active img,
.duo:hover img,
.duo--hover:hover img,
.pcard:hover .pcard__media .duo img,
.post:hover .post__img.duo img {
  filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
  transition: none !important;
}

/* =========================================================
   REV.16 — Hero de producto: ilustración completa (proporción natural, sin recorte)
   ========================================================= */
.product-hero .duo { aspect-ratio: auto !important; overflow: visible !important; background: transparent !important; }
.product-hero .duo img { position: static !important; width: auto !important; max-width: 100% !important; height: auto !important; max-height: 440px !important; margin-inline: auto !important; display: block !important; }  /* horizontales llenan el ancho; verticales se acotan en altura */
