/* =====================================================================
   Escuela Volverati · Psicólogas Bizkaia HGM, S.L.
   Centro de Psicología Haizea Gómez Mugarza — Bilbao
   Rediseño v2 · Editorial sereno premium
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Marca (azul corporativo del cliente) */
  --brand:      #ACCCE5;   /* azul claro #ACCCE5 (color corporativo) */
  --brand-200:  #cae0f0;
  --brand-100:  #e7f1f8;
  --brand-500:  #6ba6cd;
  --brand-600:  #3f7da6;
  --brand-700:  #2d6188;

  /* Tinta / neutros (azul oscuro del logo para texto) */
  --ink:        #213a4a;   /* texto principal / secciones oscuras */
  --ink-soft:   #50677a;
  --ink-mute:   #8499a8;

  --cream:      #f2f8fc;   /* blanco azulado (fondo claro) */
  --cream-2:    #e3eef7;
  --paper:      #ffffff;   /* blanco (color principal) */
  --line:       #dde8f1;

  --clay:       #3f7da6;   /* acento (azul profundo, en lugar de terracota) */
  --clay-soft:  #d8e9f4;

  /* Tipografía */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --r-sm: 14px;
  --r:    22px;
  --r-lg: 34px;
  --r-xl: 48px;
  --arch: 50% 50% 14px 14px / 42% 42% 14px 14px;

  --sh-sm: 0 6px 22px rgba(25, 48, 60, .08);
  --sh:    0 22px 50px rgba(25, 48, 60, .13);
  --sh-lg: 0 40px 90px rgba(25, 48, 60, .20);
  --ease:  cubic-bezier(.22, .61, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --head-h: 84px;
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--ink-soft); }
em { font-style: italic; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 920px; }
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #d7e4ea; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #9fb7c2; }
.section--cream2 { background: var(--cream-2); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }
.mw-640 { max-width: 640px; }
.mw-720 { max-width: 720px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-size: .76rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brand-700);
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--clay); }
.eyebrow--center::after { content: ""; width: 26px; height: 1.5px; background: var(--clay); }
.section--ink .eyebrow { color: var(--brand); }
.section--ink .clay, .section--ink .stat .clay { color: var(--brand); }

.section-head { max-width: 660px; margin-bottom: clamp(42px, 5vw, 66px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 1em 1.9em; border-radius: 100px; overflow: hidden; cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .3s, background .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(25,48,60,.28); }
.btn--clay { background: var(--clay); color: #fff; box-shadow: 0 12px 26px rgba(63,125,166,.32); }
.btn--clay:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(63,125,166,.46); }
.btn--brand { background: linear-gradient(135deg, var(--brand-600), var(--brand-700)); color: #fff; box-shadow: 0 12px 26px rgba(45,96,136,.3); }
.btn--brand:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(45,96,136,.42); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.6px var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; box-shadow: inset 0 0 0 1.6px rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn--sm { padding: .7em 1.3em; font-size: .92rem; }
.btn--block { width: 100%; }

.txtlink {
  display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--brand-700);
  position: relative;
}
.txtlink svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.txtlink:hover svg { transform: translateX(6px); }
.txtlink::after { content:""; position:absolute; left:0; bottom:-3px; width:100%; height:1.5px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.txtlink:hover::after { transform: scaleX(1); }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: #b9cdd6; font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 14px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: .4em; transition: color .25s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar svg { width: 14px; height: 14px; opacity: .75; }
@media (max-width: 720px){ .topbar .tb-hide { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; transition: background .4s, box-shadow .4s, backdrop-filter .4s;
  background: transparent;
}
.header.is-scrolled { background: rgba(247,241,232,.86); backdrop-filter: blur(14px); box-shadow: var(--sh-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--head-h); gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 50px; height: 50px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.04; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.22rem; color: var(--ink); }
.brand-sub { font-family: var(--sans); font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brand-700); font-weight: 700; }

.menu { display: flex; align-items: center; gap: 6px; }
.menu > a { font-weight: 600; font-size: .98rem; padding: .55em .9em; border-radius: 100px; position: relative; transition: color .25s; }
.menu > a::after { content:""; position:absolute; left:50%; bottom:6px; width:5px; height:5px; border-radius:50%; background: var(--clay); transform: translateX(-50%) scale(0); transition: transform .3s var(--ease); }
.menu > a:hover { color: var(--brand-700); }
.menu > a.active::after { transform: translateX(-50%) scale(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Cart button */
.cart-btn { position: relative; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); box-shadow: var(--sh-sm); transition: transform .3s var(--ease); }
.cart-btn:hover { transform: translateY(-2px); }
.cart-btn svg { width: 21px; height: 21px; color: var(--ink); }
.cart-count { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 100px; background: var(--clay); color: #fff; font-size: .68rem; font-weight: 700; display: none; place-items: center; }
.cart-count.show { display: grid; }

.burger { display: none; width: 46px; height: 46px; border-radius: 50%; background: var(--paper); box-shadow: var(--sh-sm); position: relative; }
.burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.burger span:nth-child(1){ top: 17px; } .burger span:nth-child(2){ top: 22px; } .burger span:nth-child(3){ top: 27px; }
body.menu-open .burger span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 960px){
  .nav-actions .btn { display: none; }
  .burger { display: block; }
  .menu {
    position: fixed; inset: calc(var(--head-h) + 38px) 0 0 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); padding: 26px; transform: translateX(100%); transition: transform .45s var(--ease);
    box-shadow: var(--sh-lg); overflow-y: auto;
  }
  body.menu-open .menu { transform: translateX(0); }
  .menu > a { font-family: var(--serif); font-size: 1.5rem; padding: .7em .4em; border-bottom: 1px solid var(--line); }
  .menu > a::after { display: none; }
  .menu .btn { display: inline-flex !important; margin-top: 18px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(30px, 5vw, 60px); padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.hero h1 { margin: 1.2rem 0; }
.hero h1 .clay { color: var(--clay); font-style: italic; }
.hero .line { display: block; overflow: hidden; }
.hero p.lead { max-width: 40ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero-meta { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
.hero-meta .hm b { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); display: block; line-height: 1; }
.hero-meta .hm span { font-size: .82rem; color: var(--ink-mute); }
.hero-meta .sep { width: 1px; height: 36px; background: var(--line); }

.hero-visual { position: relative; }
.hero-arch { position: relative; border-radius: var(--arch); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/4.7; }
.hero-arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-shape { position: absolute; z-index: -1; border-radius: 50%; }
.hero-shape.s1 { width: 280px; height: 280px; background: radial-gradient(circle, var(--brand-200), transparent 70%); top: -30px; right: -40px; }
.hero-shape.s2 { width: 230px; height: 230px; background: radial-gradient(circle, var(--clay-soft), transparent 70%); bottom: 30px; left: -60px; }
.hero-badge {
  position: absolute; bottom: 28px; left: -26px; background: var(--paper); border-radius: 18px;
  padding: 14px 18px; box-shadow: var(--sh); display: flex; align-items: center; gap: 12px; max-width: 235px;
}
.hero-badge .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; flex-shrink: 0; }
.hero-badge .ic svg { width: 23px; height: 23px; }
.hero-badge b { font-family: var(--serif); font-size: 1rem; color: var(--ink); display: block; line-height: 1.1; }
.hero-badge span { font-size: .76rem; color: var(--ink-mute); }
.hero-dots { position: absolute; top: 10px; right: 20px; width: 90px; height: 90px; opacity: .5;
  background-image: radial-gradient(var(--brand-500) 1.6px, transparent 1.6px); background-size: 14px 14px; }

@media (max-width: 900px){
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { max-width: 48ch; margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual { max-width: 440px; margin: 0 auto; order: -1; }
  .hero-badge { left: 10px; }
}

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); padding: 22px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; width: max-content; will-change: transform; }
.marquee-item { display: inline-flex; align-items: center; gap: 22px; padding-inline: 22px; font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.9rem); color: rgba(255,255,255,.92); white-space: nowrap; }
.marquee-item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--clay); }

/* ---------- Featured value (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media { position: relative; }
.split-media .arch { border-radius: var(--arch); overflow: hidden; box-shadow: var(--sh); aspect-ratio: 4/4.6; }
.split-media .arch img { width: 100%; height: 100%; object-fit: cover; }
.split-media .soft { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); }
.float-card { position: absolute; background: var(--ink); color: #fff; border-radius: 18px; padding: 16px 20px; box-shadow: var(--sh); display: flex; align-items: center; gap: 14px; }
.float-card.br { bottom: -24px; right: -14px; }
.float-card img { width: 92px; background: #fff; padding: 5px; border-radius: 7px; }
.float-card b { font-family: var(--serif); color: #fff; font-size: .98rem; display: block; }
.float-card span { font-size: .76rem; color: #9fb7c2; }

.checklist { display: grid; gap: 18px; margin-top: 28px; }
.checklist li { display: flex; gap: 15px; align-items: flex-start; }
.checklist .ck { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; }
.checklist .ck svg { width: 16px; height: 16px; }
.checklist b { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; color: var(--ink); display: block; }
.checklist span { font-size: .95rem; }

/* ---------- Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px){ .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px){ .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 36px 30px; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .4s;
}
.tile:hover { transform: translateY(-7px); box-shadow: var(--sh); border-color: transparent; }
.tile .ico { width: 60px; height: 60px; border-radius: 16px; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; margin-bottom: 20px; transition: background .4s, color .4s; }
.tile:hover .ico { background: var(--clay); color: #fff; }
.tile .ico svg { width: 28px; height: 28px; }
.tile h3 { margin-bottom: .5rem; }
.tile p { font-size: .96rem; }
.tile .num { font-family: var(--serif); font-size: 2.2rem; color: var(--brand-200); line-height: 1; margin-bottom: 12px; display: block; }

/* ---------- Topic chips (small) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: .6em 1.2em; font-weight: 600; font-size: .94rem; color: var(--ink); display: inline-flex; align-items: center; gap: .5em; transition: transform .3s var(--ease), border-color .3s; }
.chip:hover { transform: translateY(-3px); border-color: var(--brand-500); }
.chip .d { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }

/* ---------- Filtros + Productos ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 46px; }
.filter-btn { font-weight: 600; font-size: .94rem; color: var(--ink-soft); padding: .65em 1.35em; border-radius: 100px; background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--line); transition: all .3s var(--ease); }
.filter-btn:hover { color: var(--brand-700); box-shadow: inset 0 0 0 1.5px var(--brand-500); }
.filter-btn.active { background: var(--ink); color: #fff; box-shadow: none; }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 1000px){ .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .products { grid-template-columns: 1fr; } }

.product { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .4s; }
.product:hover { transform: translateY(-8px); box-shadow: var(--sh); border-color: transparent; }
.product-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.product:hover .product-media img { transform: scale(1.08); }
.product-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,253,249,.94); backdrop-filter: blur(6px); color: var(--brand-700); font-weight: 700; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: .45em .9em; border-radius: 100px; }
.product-add { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,253,249,.94); backdrop-filter: blur(6px); display: grid; place-items: center; color: var(--ink); box-shadow: var(--sh-sm); transition: transform .3s var(--ease), background .3s, color .3s; }
.product-add:hover { background: var(--clay); color: #fff; transform: scale(1.1); }
.product-add svg { width: 19px; height: 19px; }
.product-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.product-body p { font-size: .9rem; flex: 1; margin-bottom: 1.2rem; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 1.5rem; }
.price small { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 500; color: var(--ink-mute); }

/* ---------- Stats (ink) ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 700px){ .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat b { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; display: block; line-height: 1; }
.stat .clay { color: var(--clay); }
.stat span { font-size: .92rem; color: #9fb7c2; margin-top: 8px; display: block; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: s; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; } }
.step { padding: 38px 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); position: relative; }
.step::before { counter-increment: s; content: "0" counter(s); font-family: var(--serif); font-size: 2.6rem; color: var(--brand-200); display: block; line-height: 1; margin-bottom: 14px; }
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .95rem; }

/* ---------- Testimonios ---------- */
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px; position: relative; }
.quote .mark { font-family: var(--serif); font-size: 4rem; line-height: .6; color: var(--brand-200); }
.quote .stars { color: var(--clay); letter-spacing: 2px; margin: 6px 0 12px; }
.quote p { color: var(--ink); font-size: 1.05rem; line-height: 1.6; margin-bottom: 18px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700); font-family: var(--serif); font-weight: 600; display: grid; place-items: center; }
.quote .who b { font-family: var(--serif); color: var(--ink); display: block; font-size: 1rem; }
.quote .who span { font-size: .82rem; color: var(--ink-mute); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--paper); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--brand-500); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 1.1rem; }
.faq-q .pm { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; font-size: 1.3rem; transition: transform .35s var(--ease), background .3s, color .3s; }
.faq-item.open .pm { transform: rotate(45deg); background: var(--clay); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 24px 22px; font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--ink); color: #fff; padding: clamp(48px, 7vw, 90px) clamp(30px, 5vw, 70px); text-align: center; }
.cta h2 { color: #fff; }
.cta p { color: #9fb7c2; max-width: 560px; margin: 1.1rem auto 2rem; }
.cta .hero-actions { justify-content: center; }
.cta .blob { position: absolute; border-radius: 50%; }
.cta .blob.b1 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(172,204,229,.45), transparent 70%); top: -130px; left: -90px; }
.cta .blob.b2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(94,155,196,.4), transparent 70%); bottom: -130px; right: -60px; }
.cta > * { position: relative; z-index: 1; }

/* ---------- Page hero ---------- */
.page-hero { padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 5vw, 64px); text-align: center; position: relative; overflow: hidden; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { margin-top: 1rem; }
.page-hero p { margin: 1.1rem auto 0; }
.breadcrumb { font-size: .85rem; color: var(--ink-mute); margin-top: 16px; }
.breadcrumb a:hover { color: var(--brand-700); }

/* ---------- Galería ---------- */
.gallery-section { padding-top: clamp(34px, 5vw, 70px); }
.gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(22px, 2.3vw, 34px); align-items: stretch; }
.gallery figure { position: relative; grid-column: span 2; aspect-ratio: 4 / 3; margin: 0; border-radius: 26px; overflow: hidden; box-shadow: 0 18px 45px rgba(25,48,60,.10); cursor: zoom-in; background: var(--cream-2); }
.gallery figure:nth-last-child(2):nth-child(3n + 1),
.gallery figure:nth-last-child(2):nth-child(3n + 1) ~ figure { grid-column: span 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.gallery figure:hover img { transform: scale(1.055); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; display: flex; flex-direction: column; gap: 4px; padding: 48px 24px 20px; color: #fff; font-family: var(--serif); font-size: 1rem; background: linear-gradient(transparent, rgba(15,28,36,.86)); opacity: 0; transform: translateY(10px); transition: .4s; }
.gallery figcaption span { font-family: var(--sans); font-size: .84rem; color: rgba(255,255,255,.84); }
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 900px){
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery figure,
  .gallery figure:nth-last-child(2):nth-child(3n + 1),
  .gallery figure:nth-last-child(2):nth-child(3n + 1) ~ figure { grid-column: span 1; }
}
@media (max-width: 560px){
  .gallery { grid-template-columns: 1fr; gap: 20px; }
  .gallery figure { aspect-ratio: 5 / 4; border-radius: 20px; }
}

.lightbox { position: fixed; inset: 0; z-index: 300; display: none; background: rgba(15,25,32,.93); backdrop-filter: blur(5px); align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 16px; box-shadow: var(--sh-lg); }
.lightbox-close { position: absolute; top: 22px; right: 26px; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 1.7rem; display: grid; place-items: center; }
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: 16px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 22px 24px; margin-bottom: 16px; }
.info-row .ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row b { font-family: var(--serif); color: var(--ink); display: block; margin-bottom: 2px; font-size: 1.05rem; }
.info-row a, .info-row span { color: var(--ink-soft); font-size: .96rem; }
.info-row a:hover { color: var(--brand-700); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(28px, 4vw, 44px); box-shadow: var(--sh-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-size: 1rem; color: var(--ink); background: var(--cream); transition: border-color .25s, background .25s, box-shadow .25s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand-500); background: #fff; box-shadow: 0 0 0 4px var(--brand-100); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .form-row { grid-template-columns: 1fr; } }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--ink-soft); margin-bottom: 20px; }
.check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--brand-600); flex-shrink: 0; }
.check a { color: var(--brand-700); text-decoration: underline; }
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 24px; }
.form-success.show { display: block; }
.form-success .ic { width: 66px; height: 66px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; margin: 0 auto 18px; }
.map-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--line); margin-top: 30px; }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(.15); }

/* ---------- Cart drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(15,25,32,.5); backdrop-filter: blur(2px); z-index: 198; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.overlay.show { opacity: 1; visibility: visible; }
.cart {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); background: var(--cream); z-index: 199;
  transform: translateX(100%); transition: transform .45s var(--ease); display: flex; flex-direction: column; box-shadow: var(--sh-lg);
}
.cart.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.4rem; }
.cart-close { width: 40px; height: 40px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; font-size: 1.4rem; box-shadow: var(--sh-sm); }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 26px; }
.cart-empty { text-align: center; color: var(--ink-mute); padding: 60px 20px; }
.cart-empty svg { width: 54px; height: 54px; margin: 0 auto 16px; color: var(--brand-200); }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.cart-item .ci-main { flex: 1; min-width: 0; }
.cart-item h4 { font-family: var(--serif); font-size: .98rem; font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: 4px; }
.cart-item .ci-price { color: var(--brand-700); font-weight: 700; font-size: .92rem; }
.cart-item .ci-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.qty { display: inline-flex; align-items: center; gap: 0; border: 1.5px solid var(--line); border-radius: 100px; overflow: hidden; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--ink); font-size: 1rem; transition: background .2s; }
.qty button:hover { background: var(--brand-100); }
.qty span { min-width: 26px; text-align: center; font-weight: 700; font-size: .9rem; }
.ci-remove { font-size: .8rem; color: var(--ink-mute); text-decoration: underline; }
.ci-remove:hover { color: var(--clay); }
.cart-foot { padding: 22px 26px; border-top: 1px solid var(--line); background: var(--paper); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.cart-total span { color: var(--ink-soft); }
.cart-total b { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); }
.cart-secure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .78rem; color: var(--ink-mute); margin-top: 12px; }
.cart-secure svg { width: 14px; height: 14px; }

/* ---------- Quick-buy modal ---------- */
.modal { position: fixed; inset: 0; z-index: 250; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(15,25,32,.55); backdrop-filter: blur(3px); }
.modal.open { display: flex; }
.modal-card { background: var(--cream); border-radius: var(--r-lg); max-width: 440px; width: 100%; padding: 34px; box-shadow: var(--sh-lg); position: relative; text-align: center; }
.modal-close { position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--sh-sm); }
.modal-card .m-img { width: 110px; height: 110px; border-radius: 18px; object-fit: cover; margin: 0 auto 18px; box-shadow: var(--sh-sm); }
.modal-card h3 { margin-bottom: 6px; }
.modal-card .m-price { font-family: var(--serif); font-size: 1.8rem; color: var(--brand-700); margin-bottom: 18px; }
.modal-card .btn { width: 100%; margin-bottom: 10px; }
.modal-note { font-size: .82rem; color: var(--ink-mute); margin-top: 10px; }
.modal-note a { color: var(--brand-700); text-decoration: underline; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 120%); z-index: 260; background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 100px; box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem; transition: transform .45s var(--ease); }
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--brand); }

/* ---------- WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after { content:""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: waPulse 2.4s infinite; }
@keyframes waPulse { 0%{ transform: scale(1); opacity:.7 } 100%{ transform: scale(1.6); opacity: 0 } }
@media (prefers-reduced-motion: reduce){ .wa-float::after { animation: none; display: none; } }

/* ---------- Cookies ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120; max-width: 540px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-lg); padding: 24px 26px; display: none; }
.cookie.show { display: block; }
.cookie h4 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 6px; }
.cookie p { font-size: .88rem; margin-bottom: 14px; }
.cookie p a { color: var(--brand-700); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #b9cdd6; padding-top: clamp(60px, 8vw, 96px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 38px; padding-bottom: 50px; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer a { color: #b9cdd6; transition: color .25s; }
.footer a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 52px; height: 52px; background: #fff; border-radius: 12px; padding: 4px; }
.footer-brand b { font-family: var(--serif); color: #fff; font-size: 1.2rem; }
.footer-col p { color: #9fb7c2; font-size: .92rem; }
.footer-col ul { display: grid; gap: 11px; font-size: .94rem; }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; margin-bottom: 11px; color: #9fb7c2; }
.foot-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--brand); }
.foot-social { display: flex; gap: 10px; margin-top: 8px; }
.foot-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.foot-social a:hover { background: var(--brand-600); transform: translateY(-3px); }
.foot-social svg { width: 19px; height: 19px; }
.foot-gov { margin-top: 16px; background: #fff; padding: 8px 10px; border-radius: 8px; display: inline-block; }
.foot-gov img { height: 34px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #8aa3af; }
.footer-bottom .legal-links a { margin-left: 16px; }
.footer-bottom .legal-links a:first-child { margin-left: 0; }
.footer-kit-banner { margin-top: 14px; padding: 18px 0 8px; }
.footer-kit-banner img { display: block; width: 100%; max-width: 1024px; height: auto; border-radius: 6px; }

/* ---------- Legal ---------- */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.15rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; font-size: .98rem; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--brand-700); text-decoration: underline; }
.legal .updated { font-size: .85rem; color: var(--ink-mute); margin-bottom: 26px; }
.legal table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; font-size: .9rem; }
.legal th, .legal td { border: 1px solid var(--line); padding: 11px 13px; text-align: left; }
.legal th { background: var(--cream-2); font-family: var(--serif); color: var(--ink); }

/* ---------- GSAP reveal base ---------- */
.reveal, [data-reveal], [data-batch] > * { opacity: 0; }
.no-anim .reveal, .no-anim [data-reveal], .no-anim [data-batch] > *,
.no-anim [data-hero], .no-anim [data-split] { opacity: 1 !important; transform: none !important; }
.no-anim .hero-arch, .no-anim .split-media .arch { clip-path: none !important; }
/* Integración Elementor */
body.volverati-site{margin:0;background:#fff;overflow-x:hidden}
.volverati-site .elementor-element.e-con{--container-max-width:100%;padding:0;gap:0}
.volverati-site .elementor-widget-vr_header,.volverati-site .elementor-widget-vr_section,.volverati-site .elementor-widget-vr_footer,.volverati-site .elementor-widget-vr_commerce_ui{width:100%}
.volverati-site .elementor-widget:not(:last-child){margin-bottom:0}
.vr-contact-grid{max-width:1180px!important;margin:0 auto!important;padding:clamp(55px,7vw,100px) 24px!important;display:grid!important;grid-template-columns:.85fr 1.15fr!important;gap:clamp(36px,6vw,80px)!important;align-items:start!important}
.vr-contact-grid .elementor-widget-form{background:#fff;border:1px solid rgba(25,48,60,.12);border-radius:24px;padding:clamp(24px,4vw,44px);box-shadow:0 18px 60px rgba(25,48,60,.08)}
.vr-contact-grid .elementor-form-fields-wrapper{display:flex;gap:18px}
.vr-contact-grid .elementor-field-group{margin-bottom:16px}
.vr-contact-grid .elementor-field-label{font:700 13px/1.4 Manrope,sans-serif;color:#19303c;margin-bottom:7px}
.vr-contact-grid .elementor-field{min-height:50px;border:1px solid rgba(25,48,60,.18)!important;border-radius:12px!important;background:#fbfaf7!important;padding:12px 14px!important;font-family:Manrope,sans-serif!important}
.vr-contact-grid textarea.elementor-field{min-height:140px}
.vr-contact-grid .elementor-button{width:100%;min-height:52px;border-radius:999px!important;background:#b96952!important;color:#fff!important;font:700 14px Manrope,sans-serif!important}
@media(max-width:767px){.vr-contact-grid{grid-template-columns:1fr!important}}


/* ===== Ajustes de afinado visual v1.2 ===== */
/* Más aire y legibilidad en los bloques de texto */
.hero-copy { padding-block: 18px; }
.hero h1 { margin: 1.45rem 0 1.7rem; }
.hero p.lead,
.split-copy .lead,
.section-head p,
.tile p,
.product-body p,
.contact-info .lead,
.legal-content p { line-height: 1.82; }
.hero p.lead { max-width: 43ch; margin-bottom: 2.65rem; }
.hero-actions { margin-bottom: 3rem; }
.section-head { max-width: 760px; margin-bottom: clamp(52px, 6vw, 82px); }
.section-head h2 { margin-top: 1.25rem; margin-bottom: 1.15rem; }
.split { gap: clamp(56px, 7vw, 110px); }
.split-copy h2 { margin: 1.15rem 0 1.35rem; }
.split-copy .lead { max-width: 62ch; }
.tile { padding: 42px 34px; }
.tile h3 { margin-bottom: .8rem; }
.product-body { padding: 28px 28px 30px; }
.product-body h3 { margin-bottom: .75rem; }

/* Corazones más grandes y con mejor presencia */
.hero-badge { padding: 17px 20px; gap: 15px; max-width: 270px; }
.hero-badge .ic { width: 58px; height: 58px; border-radius: 16px; font-size: 1.55rem; }
.hero-badge .ic svg { width: 31px; height: 31px; }
.tile .ico { width: 70px; height: 70px; border-radius: 20px; font-size: 1.75rem; }
.tile .ico svg { width: 34px; height: 34px; }

/* Temas: evitar que los textos aparezcan pegados */
.topics { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 1180px; margin-inline: auto; }
.topic { display: inline-flex; flex-direction: column; gap: 3px; padding: .9rem 1.35rem; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--ink); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.topic:hover { transform: translateY(-3px); border-color: var(--brand-500); box-shadow: var(--sh-sm); }
.topic span { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; }
.topic small { color: var(--ink-mute); font-size: .78rem; }

/* Footer: logo grande sin tarjeta blanca y banner integrado */
.footer-grid { grid-template-columns: 1.75fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand { align-items: center; gap: 18px; margin-bottom: 24px; }
.footer-brand img { width: 104px; height: 104px; object-fit: contain; background: transparent; border-radius: 0; padding: 0; }
.footer-brand b { font-size: 1.5rem; }
.footer-col p { font-size: 1rem; line-height: 1.85; }
.footer-banner { margin-top: 26px; width: min(100%, 320px); background: #fff; border-radius: 12px; padding: 12px 16px; }
.footer-banner img { display: block; width: 100%; height: auto; object-fit: contain; }
.foot-gov { display: none; }

@media (max-width: 900px){
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-block: 0; }
}
@media (max-width: 560px){
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand img { width: 88px; height: 88px; }
  .footer-banner { width: 100%; }
  .hero-badge .ic { width: 52px; height: 52px; }
}


/* ===== Contacto limpio y alineado v1.2.2 ===== */
.vr-contact-grid { grid-template-columns: .9fr 1.1fr !important; gap: clamp(48px, 6vw, 92px) !important; }
.contact-info { padding-top: 8px; }
.contact-info h2 { margin: 1rem 0 1.1rem; }
.contact-info .lead { max-width: 34rem; margin-bottom: 2.1rem; font-size: 1.08rem; line-height: 1.75; }
.contact-list { display: grid; gap: 16px; }
.contact-item { display: grid; grid-template-columns: 12px minmax(0,1fr); gap: 13px; align-items: baseline; padding: 0; }
.contact-item .ci { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-700); transform: translateY(-1px); }
.contact-item-copy { display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px; font-size: 1rem; line-height: 1.65; color: var(--ink); }
.contact-item-copy b,
.contact-item-copy a { font-family: var(--sans); font-size: 1rem; line-height: 1.65; }
.contact-item-copy b { font-weight: 700; color: var(--ink); }
.contact-item-copy a { font-weight: 400; color: var(--ink); }
.contact-item-copy a:hover { color: var(--brand-700); }
.vr-contact-grid .elementor-widget-form { padding: clamp(30px, 4vw, 50px); }
.vr-contact-grid .elementor-form-fields-wrapper { display: flex; flex-wrap: wrap; gap: 0 18px; }
.vr-contact-grid .elementor-field-group { margin-bottom: 18px; }
.vr-contact-grid .elementor-field-group.elementor-col-50 { width: calc(50% - 9px); }
.vr-contact-grid .elementor-field-group.elementor-col-100 { width: 100%; }
.vr-contact-grid .elementor-field-label { font-size: .9rem; }
.vr-contact-grid .elementor-field { width: 100%; min-height: 54px; font-size: 1rem; }
.vr-contact-grid textarea.elementor-field { min-height: 155px; }
@media (max-width: 767px){
  .vr-contact-grid .elementor-field-group.elementor-col-50 { width: 100%; }
  .contact-item-copy { display: block; }
  .contact-item-copy b { margin-right: 5px; }
}


/* ===== Landing refinada v1.2.3 ===== */
/* Más separación entre el texto principal y los botones */
.hero .lead { margin-bottom: clamp(2.2rem, 4vw, 3.4rem) !important; }
.hero-actions { gap: 20px; margin-top: 0; }

/* Procesos: tarjetas equilibradas con jerarquía visual */
.topics-section { position: relative; overflow: hidden; }
.topics-section::before,
.topics-section::after { content:""; position:absolute; border-radius:50%; pointer-events:none; filter: blur(1px); }
.topics-section::before { width:320px; height:320px; top:-160px; left:-100px; background:rgba(94,155,196,.08); }
.topics-section::after { width:280px; height:280px; right:-120px; bottom:-140px; background:rgba(185,105,82,.07); }
.topics-section .container { position:relative; z-index:1; }
.topics { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; max-width:1120px; }
.topic { min-height:150px; padding:26px 26px 24px; border-radius:24px; display:grid; grid-template-columns:auto 1fr auto; align-items:start; gap:18px; background:rgba(255,255,255,.94); border:1px solid rgba(45,96,136,.13); box-shadow:0 14px 34px rgba(25,48,60,.06); }
.topic:hover { transform:translateY(-6px); border-color:rgba(45,96,136,.36); box-shadow:0 20px 46px rgba(25,48,60,.12); }
.topic-index { width:42px; height:42px; border-radius:14px; background:var(--brand-100); color:var(--brand-700); display:grid; place-items:center; font:700 .78rem/1 var(--sans); letter-spacing:.08em; }
.topic-copy { display:flex; flex-direction:column; gap:8px; padding-top:3px; }
.topic-copy > span { font-family:var(--serif); font-size:1.28rem; font-weight:600; color:var(--ink); }
.topic-copy small { font-size:.93rem; line-height:1.55; color:var(--ink-mute); }
.topic-arrow { align-self:end; font-size:1.3rem; color:var(--brand-700); transition:transform .3s var(--ease); }
.topic:hover .topic-arrow { transform:translateX(4px); }

/* Datos: panel claro en lugar del bloque oscuro y textos sobredimensionados */
.stats-section { padding-top:clamp(46px,6vw,78px); padding-bottom:clamp(46px,6vw,78px); background:#fff; }
.stats-panel { background:linear-gradient(135deg,#19303c 0%,#23485c 100%); border-radius:32px; padding:clamp(28px,4vw,52px); box-shadow:0 24px 60px rgba(25,48,60,.18); position:relative; overflow:hidden; }
.stats-panel::after { content:""; position:absolute; width:260px; height:260px; border-radius:50%; right:-90px; top:-120px; background:radial-gradient(circle,rgba(172,204,229,.24),transparent 70%); }
.stats { position:relative; z-index:1; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.stat { text-align:left; padding:22px 20px; border-radius:20px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); display:flex; gap:15px; align-items:flex-start; }
.stat-icon { width:38px; height:38px; border-radius:12px; display:grid; place-items:center; flex:0 0 auto; background:rgba(255,255,255,.12); color:#cfe3ec; font:700 .72rem/1 var(--sans); letter-spacing:.06em; }
.stat-copy { min-width:0; }
.stat b { font-family:var(--serif); font-size:clamp(1.35rem,2.2vw,2rem); line-height:1.12; color:#fff; display:block; overflow-wrap:anywhere; }
.stat span:not(.stat-icon) { margin-top:8px; color:#b9cdd6; font-size:.88rem; line-height:1.45; }

/* Ocultar FAQ en páginas antiguas aunque aún no se haya reimportado */
.volverati-site .elementor-widget-vr_section:has(.faq-wrap),
.volverati-site section:has(.faq-wrap) { display:none !important; }

@media(max-width:980px){
  .topics { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .stats { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media(max-width:640px){
  .hero-actions { gap:12px; }
  .topics { grid-template-columns:1fr; gap:16px; }
  .topic { min-height:auto; padding:22px; }
  .stats { grid-template-columns:1fr; }
  .stats-panel { border-radius:24px; }
}
