/* ╔══════════════════════════════════════════════════════════════╗
   ║  HAZLO TÚ MISMO _Adm — Sistema de diseño v3 DEFINITIVO     ║
   ║  ──────────────────────────────────────────────────────────  ║
   ║  Para cambiar colores de TODA la web: edita las variables   ║
   ║  de la sección :root (líneas 12-42). Nada más.              ║
   ║                                                              ║
   ║  Para cambiar contenido: edita WEB_DATA en el JS de cada    ║
   ║  archivo HTML. El ticker y calendario se renderizan solos.   ║
   ╚══════════════════════════════════════════════════════════════╝ */

:root {
  /* ── Fondos ── */
  --linen: #F6F0E8;
  --cream: #FDFAF5;
  --sand: #EDE4D8;
  --white: #FFFCF7;

  /* ── Terracota (acción) ── */
  --clay: #C26E4A;
  --clay-deep: #A3553A;
  --clay-glow: #E8A876;
  --clay-w: rgba(194, 110, 74, .07);

  /* ── Verde (confianza) ── */
  --sage: #6B8F71;
  --sage-deep: #4F7255;
  --sage-soft: #A8C5AC;
  --sage-mist: #E4EFE6;

  /* ── Texto ── */
  --ink: #2E241C;
  --ink-s: #5C4F43;
  --ink-m: #8A7D72;

  /* ── Sombras ── */
  --sh-s: 0 2px 8px rgba(46, 36, 28, .06);
  --sh-m: 0 8px 30px rgba(46, 36, 28, .08);
  --sh-l: 0 16px 50px rgba(46, 36, 28, .1);

  /* ── Radios y medidas ── */
  --r: 18px;
  --rs: 12px;
  --ticker-h: 38px;
}

/* ═══════════════ RESET ═══════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Libre Franklin', system-ui, sans-serif;
  color: var(--ink); background: var(--cream);
  line-height: 1.75; font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; line-height: 1.25; letter-spacing: -.01em; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Accesibilidad */
.skip { position: absolute; top: -100%; left: 16px; background: var(--clay); color: #fff; padding: 12px 24px; border-radius: 0 0 8px 8px; z-index: 9999; font-weight: 600; font-size: .9rem; transition: top .2s; }
.skip:focus { top: 0; }

/* Textura grano */
body::after { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: .02; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }


/* ═══════════════════════════════════════
   TICKER — Marquesina animada
   ═══════════════════════════════════════ */
.ticker {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--clay); height: var(--ticker-h);
  display: flex; align-items: center; overflow: hidden;
  box-shadow: 0 2px 12px rgba(194, 110, 74, .35);
}
.ticker__track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: marquee var(--marquee-speed, 28s) linear infinite;
  will-change: transform;
}
.ticker__track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Se duplica el contenido en JS para loop infinito real */
.ticker__item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 24px; flex-shrink: 0;
  font-size: .82rem; font-weight: 500; color: #fff;
}
.ticker__item::after {
  content: '·'; margin-left: 16px; opacity: .3;
}
.ticker__live {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.18); padding: 3px 10px;
  border-radius: 50px; font-size: .67rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  margin-right: 6px; flex-shrink: 0;
}
.ticker__dot {
  width: 6px; height: 6px; border-radius: 50%; background: #FF6B6B;
  animation: tkPulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 4px rgba(255,107,107,.5);
}
@keyframes tkPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.5); } }
.ticker__link {
  color: #fff; font-weight: 600; background: rgba(255,255,255,.15);
  padding: 2px 10px; border-radius: 50px; font-size: .75rem;
  transition: background .2s; text-decoration: none;
}
.ticker__link:hover { background: rgba(255,255,255,.3); }
.ticker__close {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none; color: rgba(255,255,255,.7);
  font-size: .85rem; cursor: pointer; padding: 2px 8px;
  border-radius: 50%; transition: all .2s; line-height: 1; z-index: 1;
}
.ticker__close:hover { color: #fff; background: rgba(255,255,255,.25); }
.ticker.hidden { display: none; }

body:not(.ticker-closed) .nav { top: var(--ticker-h); }
body:not(.ticker-closed) .hero { padding-top: calc(100px + var(--ticker-h)); }


/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav { position: fixed; top: 0; width: 100%; z-index: 200; transition: all .4s; }
.nav.solid { background: rgba(253,250,245,.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--sh-s); }
.nav__inner { max-width: 1080px; margin: 0 auto; padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; }
.nav__logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--clay); font-weight: 500; }
.nav__logo i { font-style: italic; color: var(--sage); font-weight: 400; }
.nav__menu { display: flex; gap: 24px; align-items: center; }
.nav__link { font-size: .87rem; font-weight: 500; color: var(--ink-s); transition: color .25s; position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--clay); transition: width .3s; }
.nav__link:hover, .nav__link:focus-visible { color: var(--clay); outline: none; }
.nav__link:hover::after, .nav__link:focus-visible::after { width: 100%; }
.nav__cta { background: var(--clay); color: #fff; padding: 9px 20px; border-radius: 50px; font-size: .85rem; font-weight: 600; transition: all .25s; border: none; cursor: pointer; }
.nav__cta:hover, .nav__cta:focus-visible { background: var(--clay-deep); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(194,110,74,.3); outline: none; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav__toggle span { display: block; width: 20px; height: 1.5px; background: var(--clay); border-radius: 1px; transition: .3s; }


/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; position: relative; padding: 100px 20px 60px; overflow: hidden; }
.hero__shape { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__shape--1 { width: 380px; height: 380px; top: -60px; right: -80px; background: radial-gradient(circle, var(--sage-mist) 0%, transparent 70%); opacity: .7; }
.hero__shape--2 { width: 300px; height: 300px; bottom: -50px; left: -60px; background: radial-gradient(circle, rgba(194,110,74,.06) 0%, transparent 70%); }
.hero__shape--3 { width: 140px; height: 140px; top: 30%; right: 14%; border: 1.5px solid var(--sage-soft); opacity: .2; animation: float 8s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(3deg); } }
.hero__inner { max-width: 1080px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr; gap: 36px; position: relative; z-index: 2; }
.hero__text { animation: revealUp .85s ease-out; }
@keyframes revealUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
.hero__pill { display: inline-flex; align-items: center; gap: 6px; background: var(--sage-mist); color: var(--sage-deep); font-size: .75rem; font-weight: 600; padding: 6px 14px; border-radius: 50px; margin-bottom: 20px; letter-spacing: .05em; text-transform: uppercase; }
.hero__pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 8px; color: var(--ink); }
.hero h1 em { font-style: italic; color: var(--clay); position: relative; }
.hero h1 em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 7px; background: rgba(194,110,74,.12); z-index: -1; border-radius: 4px; }

/* Byline */
.byline { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 18px; }
.byline__tag { display: inline-flex; align-items: center; gap: 5px; font-size: .74rem; font-weight: 500; padding: 5px 14px; border-radius: 50px; transition: transform .2s; }
.byline__tag:hover { transform: translateY(-1px); }
.byline__tag--author { background: var(--sand); color: var(--ink-s); }
.byline__tag--verified { background: var(--sage-mist); color: var(--sage-deep); }
.byline__tag--source { background: rgba(194,110,74,.08); color: var(--clay); }
.byline__tag--source a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.byline__tag--source a:hover { color: var(--clay-deep); }
.byline__sep { color: var(--ink-m); font-size: .7rem; opacity: .4; user-select: none; }

.hero__desc { font-size: 1.05rem; color: var(--ink-s); line-height: 1.85; margin-bottom: 28px; font-weight: 300; max-width: 520px; }
.hero__actions { display: flex; flex-direction: column; gap: 10px; }
.hero__cards { display: flex; flex-direction: column; gap: 12px; animation: revealUp .85s ease-out .15s backwards; }
.hero__card { background: var(--white); border-radius: var(--r); padding: 18px 20px; box-shadow: var(--sh-m); border-left: 3px solid var(--clay); transition: transform .3s; }
.hero__card:nth-child(2) { border-left-color: var(--sage); }
.hero__card:nth-child(3) { border-left-color: var(--clay-glow); }
.hero__card:hover { transform: translateX(4px); }
.hero__card-emoji { font-size: 1.2rem; margin-bottom: 4px; display: block; }
.hero__card p { font-size: .88rem; color: var(--ink-s); line-height: 1.55; font-style: italic; font-weight: 300; }
.hero__card .hero__card-answer { font-style: normal; color: var(--sage); font-weight: 500; font-size: .82rem; margin-top: 5px; display: block; }
.hero__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  height: 100%;
}

.hero__card p {
  margin: 0;
  font-size: 0.95rem;
}

.hero__card-answer {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero__card a {
  margin-top: auto;
  align-self: flex-start;
}

/* ═══════════════════════════════════════
   BOTONES
   ═══════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: 50px; font-family: 'Libre Franklin', sans-serif; font-size: .9rem; font-weight: 600; border: none; cursor: pointer; transition: all .28s; letter-spacing: .01em; text-align: center; }
.btn--clay { background: var(--clay); color: #fff; box-shadow: 0 4px 16px rgba(194,110,74,.28); }
.btn--clay:hover, .btn--clay:focus-visible { background: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,110,74,.35); outline: none; }
.btn--sage { background: var(--sage-mist); color: var(--sage-deep); border: 1.5px solid var(--sage-soft); }
.btn--sage:hover, .btn--sage:focus-visible { background: var(--sage-soft); color: #fff; transform: translateY(-2px); outline: none; }
.btn--ghost { background: transparent; color: var(--clay); border: 1.5px solid var(--clay-glow); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--clay-w); transform: translateY(-2px); outline: none; }
.btn--pdf { background: var(--ink); color: #fff; }
.btn--pdf:hover, .btn--pdf:focus-visible { background: var(--ink-s); transform: translateY(-2px); outline: none; }


/* ═══════════════════════════════════════
   SECCIONES COMUNES
   ═══════════════════════════════════════ */
.section { padding: 64px 20px; }
.container { max-width: 1000px; margin: 0 auto; }
.tag { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; color: var(--clay); margin-bottom: 8px; display: block; }
.sec-title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 12px; }
.sec-desc { font-size: 1rem; color: var(--ink-s); max-width: 540px; line-height: 1.8; font-weight: 300; }
.sr { opacity: 0; transform: translateY(24px); transition: all .6s ease; }
.sr.on { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════
   RESUMEN TIKTOK — Screenshot-Ready
   ═══════════════════════════════════════ */
.quick-summary {
  background: linear-gradient(135deg, var(--sage-mist) 0%, rgba(168,197,172,.12) 100%);
  border-radius: 24px; padding: 28px 24px 36px;
  max-width: 1000px; margin: 0 auto;
  position: relative; overflow: hidden;
  border: 1.5px solid rgba(107,143,113,.18);
  box-shadow: var(--sh-m);
}
.quick-summary::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sage), var(--sage-deep), var(--sage)); }
/* Marca de agua */
.quick-summary::after {
  content: 'hazlotumismo.es';
  position: absolute; bottom: 10px; right: 16px;
  font-size: .65rem; font-weight: 600; letter-spacing: .04em;
  color: var(--sage-deep); opacity: .2;
  font-family: 'Libre Franklin', sans-serif;
}
.qs__header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.qs__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--sage); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; box-shadow: 0 4px 14px rgba(107,143,113,.3); }
.qs__header-text h2 { font-size: 1.15rem; color: var(--sage-deep); margin-bottom: 1px; }
.qs__header-text p { font-size: .78rem; color: var(--ink-m); font-weight: 400; }
.qs__points { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 18px; }
.qs__point { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,252,247,.75); border-radius: 16px; padding: 18px 20px; transition: all .25s; border: 1px solid rgba(255,255,255,.5); }
.qs__point:hover { transform: translateX(4px); box-shadow: var(--sh-s); }
.qs__point-num { width: 28px; height: 28px; border-radius: 50%; background: var(--sage); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.qs__point-text h3 { font-family: 'Libre Franklin', sans-serif; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 3px; }
.qs__point-text p { font-size: .82rem; color: var(--ink-s); line-height: 1.5; }
.qs__footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.qs__source { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--ink-m); background: rgba(255,252,247,.6); padding: 5px 14px; border-radius: 50px; font-weight: 500; }
.qs__share { display: inline-flex; align-items: center; gap: 4px; font-size: .72rem; font-weight: 600; color: var(--sage-deep); background: rgba(255,255,255,.5); padding: 5px 12px; border-radius: 50px; cursor: pointer; border: none; transition: all .2s; font-family: inherit; }
.qs__share:hover { background: var(--sage); color: #fff; }


/* ═══════════════════════════════════════
   CALENDARIO INTELIGENTE
   ═══════════════════════════════════════ */
.calendar { background: var(--white); border-radius: var(--r); padding: 28px 24px; border: 1px solid var(--sand); box-shadow: var(--sh-s); max-width: 1000px; margin: 32px auto 0; position: relative; overflow: hidden; }
.calendar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--clay), var(--sage), var(--clay-glow)); }
.cal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.cal__title h2 { font-size: 1.1rem; color: var(--ink); }
.cal__live { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--clay); background: rgba(194,110,74,.08); padding: 3px 10px; border-radius: 50px; display: inline-flex; align-items: center; gap: 4px; }
.cal__live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); animation: pulse 1.5s infinite; }
#cal-events { display: flex; flex-direction: column; gap: 0; }
.cal__event { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--sand); transition: all .3s; }
.cal__event:last-child { border-bottom: none; }
.cal__event:hover { background: rgba(246,240,232,.4); border-radius: 8px; margin: 0 -8px; padding: 16px 8px; }
.cal__date { width: 56px; height: 56px; border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; background: var(--sand); color: var(--ink-s); }
.cal__date-day { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; line-height: 1; }
.cal__date-month { font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
.cal__info h3 { font-family: 'Libre Franklin', sans-serif; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 2px; }
.cal__info p { font-size: .8rem; color: var(--ink-m); line-height: 1.45; }
.cal__countdown { font-size: .72rem; font-weight: 600; color: var(--ink-m); text-align: right; white-space: nowrap; }
.cal__countdown strong { display: block; font-size: 1.1rem; color: var(--clay); font-family: 'Playfair Display', serif; }
.cal__urgency { display: inline-block; font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: 2px 8px; border-radius: 30px; margin-top: 4px; }
.cal__urgency--high { background: rgba(194,110,74,.12); color: var(--clay); }
.cal__urgency--mid { background: var(--sage-mist); color: var(--sage-deep); }
.cal__urgency--info { background: var(--sand); color: var(--ink-m); }
/* Estado HOY */
.cal__event--today { background: rgba(194,110,74,.05); border-radius: 8px; margin: 0 -8px; padding: 16px 8px; }
.cal__event--today .cal__date { background: var(--clay); color: #fff; animation: todayPulse 2s ease-in-out infinite; }
@keyframes todayPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(194,110,74,.3); } 50% { box-shadow: 0 0 0 8px rgba(194,110,74,0); } }
.cal__empty { text-align: center; padding: 24px; color: var(--ink-m); font-style: italic; font-size: .9rem; }


/* ═══════════════════════════════════════
   GUÍAS — Tarjetas
   ═══════════════════════════════════════ */
.guides { background: var(--linen); }
.guides__list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.guide { background: var(--white); border-radius: var(--rs); padding: 20px; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; transition: all .3s; cursor: pointer; border: 1px solid transparent; text-decoration: none; color: inherit; }
.guide:hover, .guide:focus-visible { border-color: var(--sage-soft); box-shadow: var(--sh-m); transform: translateX(4px); outline: none; }
.guide__icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.guide:nth-child(odd) .guide__icon { background: var(--sage-mist); }
.guide:nth-child(even) .guide__icon { background: rgba(194,110,74,.08); }
.guide__content h3 { font-size: .98rem; margin-bottom: 3px; font-family: 'Libre Franklin', sans-serif; font-weight: 600; color: var(--ink); }
.guide__content p { font-size: .82rem; color: var(--ink-m); line-height: 1.5; }
.guide__meta { display: flex; gap: 8px; align-items: center; margin-top: 6px; }
.guide__badge { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 3px 10px; border-radius: 30px; }
.guide__badge--pop { background: var(--sage-mist); color: var(--sage-deep); }
.guide__badge--new { background: rgba(194,110,74,.1); color: var(--clay); }
.guide__badge--free { background: var(--sand); color: var(--ink-s); }
.guide__arrow { color: var(--clay); font-size: 1rem; margin-left: auto; transition: transform .2s; flex-shrink: 0; }
.guide:hover .guide__arrow { transform: translateX(4px); }
/* Placeholder */
.guide--placeholder { opacity: .5; pointer-events: none; border: 2px dashed var(--sand); }
.guide--placeholder .guide__content h3 { color: var(--ink-m); }


/* ═══════════════════════════════════════
   EMPATÍA
   ═══════════════════════════════════════ */
.empathy { background: var(--linen); }
.empathy__intro { text-align: center; max-width: 580px; margin: 0 auto 40px; }
.empathy__grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.empathy__item { background: var(--white); border-radius: var(--rs); padding: 20px 18px; text-align: center; transition: all .3s; border: 1px solid rgba(194,110,74,.04); }
.empathy__item:hover { transform: translateY(-3px); box-shadow: var(--sh-m); }
.empathy__icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.empathy__item p { font-size: .9rem; color: var(--ink-s); line-height: 1.6; font-style: italic; }
.empathy__resolve { text-align: center; margin-top: 32px; padding: 24px 20px; background: var(--sage-mist); border-radius: var(--r); max-width: 560px; margin-left: auto; margin-right: auto; }
.empathy__resolve p { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--sage-deep); font-style: italic; line-height: 1.55; }


/* ═══════════════════════════════════════
   ACOMPAÑAMIENTO
   ═══════════════════════════════════════ */
.accompany { background: var(--cream); }
.accompany__layout { display: grid; grid-template-columns: 1fr; gap: 36px; margin-top: 40px; }
.accompany__text h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 14px; }
.accompany__text > p { color: var(--ink-s); line-height: 1.8; margin-bottom: 12px; font-weight: 300; }
.accompany__card { background: var(--white); border-radius: var(--r); padding: 32px 24px; box-shadow: var(--sh-m); border: 1px solid var(--sand); position: relative; overflow: hidden; }
.accompany__card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--clay), var(--sage)); }
.accompany__quote { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--ink); line-height: 1.55; margin-bottom: 20px; padding-left: 16px; border-left: 2px solid var(--clay-glow); }
.accompany__cta { text-align: center; margin-top: 20px; }
.accompany__micro { font-size: .78rem; color: var(--ink-m); margin-top: 8px; }


/* ═══════════════════════════════════════
   CONTACTO
   ═══════════════════════════════════════ */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-top: 36px; }
.contact__left h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 12px; }
.contact__left > p { color: var(--ink-s); line-height: 1.8; margin-bottom: 10px; font-weight: 300; }
.contact__channels { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.ch { background: var(--white); border-radius: var(--rs); padding: 18px 16px; display: flex; align-items: center; gap: 14px; border: 1px solid transparent; transition: all .3s; }
.ch:hover, .ch:focus-visible { border-color: var(--sage-soft); box-shadow: var(--sh-m); transform: translateY(-2px); outline: none; }
.ch__icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ch__icon--wa { background: #E8F5E9; } .ch__icon--em { background: rgba(194,110,74,.08); } .ch__icon--ig { background: #FCE4EC; }
.ch__info h4 { font-family: 'Libre Franklin', sans-serif; font-weight: 600; font-size: .9rem; margin-bottom: 1px; }
.ch__info p { font-size: .8rem; color: var(--ink-m); }
.contact__right { background: var(--sage-mist); border-radius: var(--r); padding: 28px 24px; border: 1px solid rgba(107,143,113,.12); }
.contact__right h3 { font-size: 1.15rem; color: var(--sage-deep); margin-bottom: 14px; }
.promise__list li { padding: 7px 0; font-size: .9rem; color: var(--ink-s); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.promise__list .ck { color: var(--sage); font-weight: 700; flex-shrink: 0; }
.contact__micro { text-align: center; margin-top: 28px; font-size: .85rem; color: var(--ink-m); font-style: italic; }


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { background: var(--ink); color: rgba(255,255,255,.55); padding: 40px 20px; text-align: center; }
.footer__logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 4px; }
.footer__slogan { font-size: .82rem; font-style: italic; opacity: .4; margin-bottom: 18px; }
.footer__links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.footer__links a { color: rgba(255,255,255,.45); font-size: .8rem; transition: color .2s; }
.footer__links a:hover { color: var(--clay-glow); }
.footer__copy { font-size: .72rem; opacity: .35; }


/* ═══════════════════════════════════════
   WHATSAPP FLOTANTE
   ═══════════════════════════════════════ */
.wa-float { position: fixed; bottom: 20px; right: 20px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.35); z-index: 150; transition: transform .25s; font-size: 1.6rem; text-decoration: none; }
.wa-float:hover { transform: scale(1.1); }
.wa-float__sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }


/* ═══════════════════════════════════════
   GUÍA INTERIOR (plantilla)
   ═══════════════════════════════════════ */
.guia { max-width: 760px; margin: 0 auto; }
.guia__header { padding: 120px 20px 40px; }
.guia__breadcrumb { font-size: .78rem; color: var(--ink-m); margin-bottom: 16px; }
.guia__breadcrumb a { color: var(--clay); text-decoration: underline; text-underline-offset: 2px; }
.guia__category { display: inline-block; background: var(--sage-mist); color: var(--sage-deep); font-size: .7rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.guia h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; color: var(--ink); }
.guia__body { padding: 0 20px 60px; }
.guia__body h2 { font-size: 1.4rem; margin: 36px 0 12px; color: var(--ink); border-bottom: 2px solid var(--sand); padding-bottom: 8px; }
.guia__body h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--ink-s); }
.guia__body p { color: var(--ink-s); margin-bottom: 14px; line-height: 1.85; }
.guia__body ul, .guia__body ol { margin: 12px 0 20px 24px; }
.guia__body ul { list-style: disc; } .guia__body ol { list-style: decimal; }
.guia__body li { color: var(--ink-s); margin-bottom: 6px; line-height: 1.65; }
.guia__body strong { color: var(--ink); }
.guia__body a { color: var(--clay); text-decoration: underline; text-underline-offset: 2px; }
.guia__body a:hover { color: var(--clay-deep); }
.guia__box { border-radius: var(--rs); padding: 20px 22px; margin: 20px 0; }
.guia__box--warning { background: rgba(194,110,74,.06); border-left: 3px solid var(--clay); }
.guia__box--tip { background: var(--sage-mist); border-left: 3px solid var(--sage); }
.guia__box--docs { background: var(--sand); border-left: 3px solid var(--ink-m); }
.guia__box h4 { font-family: 'Libre Franklin', sans-serif; font-weight: 600; font-size: .88rem; margin-bottom: 8px; }
.guia__steps { counter-reset: step; margin: 20px 0; }
.guia__step { counter-increment: step; display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.guia__step::before { content: counter(step); width: 36px; height: 36px; border-radius: 50%; background: var(--clay); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; flex-shrink: 0; margin-top: 2px; }
.guia__step-content h4 { font-family: 'Libre Franklin', sans-serif; font-weight: 600; font-size: .95rem; margin-bottom: 4px; }
.guia__step-content p { font-size: .88rem; color: var(--ink-s); line-height: 1.7; }
.guia__cta { background: var(--linen); border-radius: var(--r); padding: 30px 24px; text-align: center; margin: 40px 0; }
.guia__cta p { font-size: .95rem; color: var(--ink-s); margin-bottom: 14px; }
.guia__pdf { margin: 30px 0; text-align: center; }
/* Fuentes oficiales al final */
.guia__sources { background: var(--sand); border-radius: var(--rs); padding: 20px 22px; margin: 30px 0; }
.guia__sources h4 { font-family: 'Libre Franklin', sans-serif; font-weight: 600; font-size: .85rem; margin-bottom: 10px; }
.guia__sources li { font-size: .82rem; margin-bottom: 4px; }
.guia__sources a { color: var(--clay); text-decoration: underline; }


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (min-width: 768px) {
  .nav__toggle { display: none !important; }
  .nav__menu { display: flex !important; }
  .hero__inner { grid-template-columns: 1.1fr .9fr; gap: 48px; }
  .hero__actions { flex-direction: row; }
  .btn { width: auto; }
  .section { padding: 88px 28px; }
  .qs__points { grid-template-columns: repeat(3, 1fr); }
  .empathy__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .guide { grid-template-columns: 48px 1fr auto auto; gap: 18px; }
  .accompany__layout { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
  #cal-events { flex-direction: row; }
  .cal__event { flex: 1; border-bottom: none; border-right: 1px solid var(--sand); padding: 0 20px; }
  .cal__event:last-child { border-right: none; }
  .guia__header { padding: 130px 0 40px; }
  .guia__body { padding: 0 0 60px; }
}
@media (min-width: 1024px) { .empathy__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px) {
  .nav__menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 16px 20px; gap: 12px; box-shadow: var(--sh-m); }
  .nav__menu.open { display: flex; }
  .nav__toggle { display: flex; }
  .nav__cta { width: 100%; text-align: center; }
}

