/* ==========================================================================
   CERTIME · Sistema de diseño
   Dirección: "Sello oficial" — el centro que acredita tu aptitud.
   Verde pino institucional + dorado de sello + tinta marina sobre papel.
   ========================================================================== */

:root {
  /* Paleta */
  --paper:      #F5F4EF;   /* fondo papel, cálido pero frío-neutro */
  --paper-2:    #ECEAE2;
  --white:      #FFFFFF;
  --ink:        #16263C;   /* texto principal, tinta marina */
  --ink-soft:   #45566B;
  --line:       #DCDAD0;

  --pine:       #0E5E54;   /* verde marca */
  --pine-deep:  #093E38;   /* cabeceras / footer */
  --pine-700:   #0A4A43;
  --pine-tint:  #E4EEEA;   /* fondos suaves verde */
  --pine-tint2: #D5E6E0;

  --gold:       #C8902F;   /* sello / acentos premium */
  --gold-deep:  #A9761F;
  --gold-tint:  #F3E7CC;

  --apto:       #1F9D57;   /* verde "apto" para checks */

  /* Tipografía */
  --display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Medidas */
  --wrap: 1140px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(9,62,56,.06), 0 12px 30px -16px rgba(9,62,56,.28);
  --shadow-lg: 0 24px 60px -28px rgba(9,62,56,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--pine); text-decoration: none; }
a:hover { color: var(--pine-deep); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.08; color: var(--ink); letter-spacing: -.02em; }
ul { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--pine);
  display: inline-flex; align-items: center; gap: .5rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); margin-top: .7rem; }
.section-head p { color: var(--ink-soft); margin-top: .8rem; font-size: 1.05rem; }
.lede { font-size: 1.15rem; color: var(--ink-soft); }

/* --------------------------------------------------------------- Buttons - */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 10px 22px -12px rgba(168,118,31,.9); }
.btn-gold:hover { background: var(--gold-deep); color:#fff; transform: translateY(-2px); }
.btn-pine { background: var(--pine); color: #fff; }
.btn-pine:hover { background: var(--pine-deep); color:#fff; transform: translateY(-2px); }
.btn-ghost { border-color: var(--pine); color: var(--pine); background: transparent; }
.btn-ghost:hover { background: var(--pine); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,.45); color:#fff; }
.btn-ghost-light:hover { background: #fff; color: var(--pine-deep); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }

/* ---------------------------------------------------------------- Header -- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,244,239,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--ink); letter-spacing: -.03em; }
.brand:hover { color: var(--ink); }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand small { display:block; font-family: var(--body); font-weight: 600; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--pine); margin-top: -2px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.nav a { color: var(--ink); font-weight: 600; font-size: .95rem; padding: .5rem .7rem; border-radius: 8px; }
.nav a:hover { background: var(--pine-tint); color: var(--pine-deep); }

.has-drop { position: relative; }
.has-drop > button {
  font: inherit; font-weight: 600; font-size:.95rem; color: var(--ink); background: none; border: 0; cursor: pointer;
  padding: .5rem .7rem; border-radius: 8px; display: inline-flex; align-items: center; gap: .3rem;
}
.has-drop > button:hover { background: var(--pine-tint); color: var(--pine-deep); }
.has-drop > button svg { width: 14px; height: 14px; transition: transform .2s; }
.has-drop:hover > button svg { transform: rotate(180deg); }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 270px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all .18s var(--ease);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; align-items: center; gap: .6rem; padding: .6rem .7rem; border-radius: 8px; font-size: .92rem; }
.drop a svg { width: 18px; height: 18px; color: var(--pine); flex: none; }

.header-cta { display: flex; align-items: center; gap: .7rem; margin-left: .4rem; }
.tel-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 800; color: var(--ink); font-family: var(--display); }
.tel-link:hover { color: var(--pine); }
.tel-link svg { width: 18px; height: 18px; color: var(--pine); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; margin-left: auto; }
.nav-toggle svg { width: 30px; height: 30px; color: var(--ink); }

/* ------------------------------------------------------------------ Hero -- */
.hero { position: relative; overflow: hidden; background:
   radial-gradient(1100px 460px at 85% -8%, var(--pine-tint) 0%, transparent 60%),
   var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center;
   padding: clamp(2.6rem, 5vw, 4.6rem) 0 clamp(3rem, 5vw, 4.6rem); }
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
.hero h1 .hl { color: var(--pine); position: relative; }
.hero p.lede { margin-top: 1.2rem; max-width: 33ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: .5rem .6rem; margin-top: 1.8rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600;
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
  padding: .42rem .8rem; border-radius: 999px;
}
.chip svg { width: 15px; height: 15px; color: var(--apto); }

/* Tarjeta lateral del hero */
.hero-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 1.6rem 1.6rem 1.4rem; position: relative;
}
.hero-card .seal-wrap { position: absolute; top: -34px; right: -10px; width: 116px; height: 116px; }
.hero-card h3 { font-size: 1.15rem; }
.hero-card .info-row { display: flex; gap: .7rem; align-items: flex-start; padding: .7rem 0; border-bottom: 1px dashed var(--line); }
.hero-card .info-row:last-of-type { border-bottom: 0; }
.hero-card .info-row svg { width: 20px; height: 20px; color: var(--pine); flex: none; margin-top: 2px; }
.hero-card .info-row b { font-family: var(--display); }
.hero-card .info-row span { font-size: .92rem; color: var(--ink-soft); display: block; }
.hero-card .btn { width: 100%; margin-top: 1rem; }

/* Sello oficial (SVG) — animación de entrada */
.seal { width: 100%; height: 100%; animation: sealIn .9s var(--ease) both; }
@keyframes sealIn { from { opacity: 0; transform: rotate(-22deg) scale(.7); } to { opacity: 1; transform: rotate(-8deg) scale(1); } }
.seal .seal-ring { fill: none; stroke: var(--gold); }
.seal text { fill: var(--gold-deep); font-family: var(--body); font-weight: 700; }

/* ------------------------------------------------------------- Trust bar -- */
.pillars { background: var(--pine-deep); color: #fff; }
.pillars .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; padding: 2.4rem 0; }
.pillar { display: flex; gap: .9rem; align-items: flex-start; }
.pillar .ic { width: 42px; height: 42px; flex: none; border-radius: 11px; background: rgba(255,255,255,.1);
   display: grid; place-items: center; }
.pillar .ic svg { width: 22px; height: 22px; color: var(--gold); }
.pillar b { font-family: var(--display); font-size: 1rem; display: block; }
.pillar span { font-size: .86rem; color: rgba(255,255,255,.72); line-height: 1.45; }

/* -------------------------------------------------------------- Services -- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem;
  transition: transform .22s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--pine-tint2); }
.svc-card .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--pine-tint);
   display: grid; place-items: center; }
.svc-card .ic svg { width: 26px; height: 26px; color: var(--pine); }
.svc-card h3 { font-size: 1.18rem; }
.svc-card p { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.svc-card .foot { display: flex; align-items: center; justify-content: space-between; margin-top: .4rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.svc-card .price-tag { font-family: var(--display); font-weight: 800; color: var(--ink); font-size: 1rem; }
.svc-card .price-tag small { font-weight: 600; color: var(--ink-soft); font-size: .72rem; display: block; font-family: var(--body); }
.svc-card .go { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; font-size: .9rem; color: var(--pine); }
.svc-card:hover .go svg { transform: translateX(3px); }
.svc-card .go svg { width: 16px; height: 16px; transition: transform .2s; }

/* ---------------------------------------------------------------- Steps --- */
.steps { background: var(--pine-tint); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem 1.5rem; }
.step .num { font-family: var(--display); font-weight: 800; font-size: 1rem; color: var(--gold-deep);
   width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--gold); display: grid; place-items: center; margin-bottom: 1rem; }
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* --------------------------------------------------------------- Pricing -- */
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-card .ph { background: var(--pine-deep); color: #fff; padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: .7rem; }
.price-card .ph svg { width: 24px; height: 24px; color: var(--gold); }
.price-card .ph h3 { color: #fff; font-size: 1.2rem; }
.ptable { width: 100%; border-collapse: collapse; }
.ptable td { padding: .9rem 1.5rem; border-bottom: 1px solid var(--line); }
.ptable tr:last-child td { border-bottom: 0; }
.ptable td:last-child { text-align: right; font-family: var(--display); font-weight: 800; color: var(--pine-deep); white-space: nowrap; }
.ptable tr:hover td { background: var(--pine-tint); }
.price-foot { padding: 1rem 1.5rem; background: var(--gold-tint); color: var(--gold-deep); font-size: .9rem; font-weight: 600; display: flex; gap: .5rem; align-items: flex-start; }
.price-foot svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }

/* --------------------------------------------------------------- Why us --- */
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.why-list { display: grid; gap: 1.1rem; }
.why-item { display: flex; gap: .9rem; }
.why-item .ic { width: 38px; height: 38px; flex: none; border-radius: 10px; background: var(--pine); display: grid; place-items: center; }
.why-item .ic svg { width: 20px; height: 20px; color: #fff; }
.why-item b { font-family: var(--display); display: block; }
.why-item span { color: var(--ink-soft); font-size: .94rem; }
.why-visual { background: var(--pine-deep); border-radius: 20px; padding: 2.5rem; color: #fff; position: relative; overflow: hidden; }
.why-visual .seal { position: absolute; width: 220px; height: 220px; right: -40px; bottom: -40px; opacity: .14; animation: none; }
.why-visual .big { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem,7vw,3.6rem); color: var(--gold); line-height: 1; }
.why-visual p { color: rgba(255,255,255,.85); margin-top: .6rem; max-width: 26ch; position: relative; }

/* ----------------------------------------------------------------- FAQ ---- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
   font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--ink);
   padding: 1.2rem 2.5rem 1.2rem 0; position: relative; }
.faq-q::after { content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
   font-size: 1.6rem; color: var(--pine); font-weight: 400; transition: transform .2s; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 0 1.3rem; color: var(--ink-soft); }

/* --------------------------------------------------------------- Location - */
.loc-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.4rem; align-items: stretch; }
.loc-info { display: grid; gap: 1rem; align-content: start; }
.loc-row { display: flex; gap: .8rem; }
.loc-row .ic { width: 40px; height: 40px; flex: none; border-radius: 11px; background: var(--pine-tint); display: grid; place-items: center; }
.loc-row .ic svg { width: 20px; height: 20px; color: var(--pine); }
.loc-row b { font-family: var(--display); display: block; }
.loc-row span, .loc-row a { color: var(--ink-soft); font-size: .95rem; }
.loc-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 340px; box-shadow: var(--shadow); }
.loc-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
/* Marcador del mapa (antes de aceptar cookies) */
.map-embed { width: 100%; height: 100%; min-height: 340px; display: grid; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.map-ph { display: grid; gap: .9rem; place-content: center; justify-items: center; text-align: center;
   padding: 1.6rem; background:
     radial-gradient(600px 300px at 70% -20%, var(--pine-tint), transparent 60%), var(--paper); }
.map-ph p { color: var(--ink-soft); max-width: 34ch; font-size: .92rem; }
.map-ph-alt { font-size: .88rem; color: var(--pine); text-decoration: underline; }

/* ----------------------------------------------------------------- CTA ---- */
.cta-band { background: linear-gradient(120deg, var(--pine-deep), var(--pine)); color: #fff; text-align: center; }
.cta-band .inner { padding: clamp(3rem,6vw,4.5rem) 0; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem,4vw,2.6rem); }
.cta-band p { color: rgba(255,255,255,.85); margin: .8rem auto 1.8rem; max-width: 48ch; }
.cta-band .btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------- Footer --- */
.site-footer { background: var(--pine-deep); color: rgba(255,255,255,.78); padding: 3.5rem 0 2rem; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold); }
.footer-brand .brand { color: #fff; margin-bottom: .9rem; }
.footer-brand .brand small { color: var(--gold); }
.footer-links { display: grid; gap: .55rem; }
.footer-contact { display: grid; gap: .7rem; }
.footer-contact .r { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.14); margin-top: 2.5rem; padding-top: 1.5rem;
   display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.6); }
.footer-legal .auth { max-width: 100%; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: .4rem .9rem; align-items: center; }
.footer-legal-links a, .footer-legal-links .link-btn { color: rgba(255,255,255,.78); font-size: .82rem; }
.footer-legal-links a:hover, .footer-legal-links .link-btn:hover { color: var(--gold); }
.link-btn { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; color: var(--pine); text-decoration: underline; }

/* ----------------------------------------------------- Aviso de cierre ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.notice-bar { display: block; background: var(--gold); color: var(--ink); }
.notice-bar[hidden] { display: none; }
.notice-inner { display: flex; align-items: center; justify-content: center; gap: .5rem;
   padding: .55rem 2.6rem .55rem 1rem; position: relative; }
.notice-text { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; text-align: center; }
.notice-text svg { width: 18px; height: 18px; flex: none; }
.notice-text b { font-weight: 800; }
.notice-close { position: absolute; right: .6rem; top: 50%; transform: translateY(-50%);
   background: none; border: 0; cursor: pointer; font-size: 1.5rem; line-height: 1; color: var(--ink);
   width: 2rem; height: 2rem; border-radius: 50%; opacity: .7; }
.notice-close:hover { opacity: 1; background: rgba(0,0,0,.06); }
@media (max-width: 560px) {
  .notice-long { display: none; } /* en móvil basta con "Agosto cerrado" */
}


.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
   margin: 0; max-width: none; width: auto; padding: 0; border: 0; color: inherit;
   background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(11,38,60,.12); }
.cookie-banner:not([open]) { display: none; }
.cookie-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
   gap: 1rem 1.5rem; padding: 1rem 0; }
.cookie-text { font-size: .92rem; color: var(--ink-soft); max-width: 62ch; margin: 0; }
.cookie-text a { color: var(--pine); text-decoration: underline; }
.cookie-btns { display: flex; gap: .7rem; flex: none; }
.cookie-btns .btn { min-width: 130px; justify-content: center; }
@media (max-width: 720px) {
  .cookie-btns { width: 100%; }
  .cookie-btns .btn { flex: 1; min-width: 0; }
  .cookie-banner { bottom: 4.5rem; } /* deja ver la barra de acciones móvil */
}

/* ---------------------------------------------------- Floating actions ---- */
.float-actions { position: fixed; right: 1rem; bottom: 1rem; z-index: 50; display: flex; flex-direction: column; gap: .7rem; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-lg); color: #fff; transition: transform .15s; }
.fab:hover { transform: scale(1.07); color:#fff; }
.fab svg { width: 28px; height: 28px; }
.fab-wa { background: #25D366; }
.fab-tel { background: var(--pine); display: none; }

/* Barra inferior móvil */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
   background: var(--white); border-top: 1px solid var(--line); padding: .55rem .7rem; gap: .6rem;
   box-shadow: 0 -8px 24px -16px rgba(9,62,56,.5); }
.mobile-bar .btn { flex: 1; padding: .8rem; }

/* ---------------------------------------------------- Páginas internas ---- */
.page-hero { background:
   radial-gradient(900px 380px at 88% -20%, var(--pine-tint) 0%, transparent 60%), var(--paper);
   border-bottom: 1px solid var(--line); }
.page-hero .inner { padding: clamp(2.2rem,4vw,3.4rem) 0; }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--pine); }
.page-hero h1 { font-size: clamp(1.8rem,4.4vw,2.8rem); max-width: 18ch; }
.page-hero .summary { margin-top: 1rem; max-width: 60ch; color: var(--ink-soft); font-size: 1.1rem; }

.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.prose h2 { font-size: 1.45rem; margin: 2rem 0 .7rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; color: var(--ink-soft); }
.prose .intro-p { font-size: 1.12rem; color: var(--ink); }

.aside-sticky { position: sticky; top: 92px; display: grid; gap: 1.2rem; }
.aside-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.aside-card h3 { font-size: 1.05rem; margin-bottom: .9rem; display: flex; align-items: center; gap: .5rem; }
.aside-card h3 svg { width: 20px; height: 20px; color: var(--pine); }
.bring-list { display: grid; gap: .6rem; }
.bring-list li { display: flex; gap: .55rem; font-size: .92rem; color: var(--ink-soft); }
.bring-list li svg { width: 17px; height: 17px; color: var(--apto); flex: none; margin-top: 4px; }
.aside-card .btn { width: 100%; margin-top: 1rem; }
.aside-price { background: var(--pine-deep); color: #fff; }
.aside-price h3 { color: #fff; }
.aside-price h3 svg { color: var(--gold); }
.aside-price table { width: 100%; border-collapse: collapse; }
.aside-price td { padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: .92rem; color: rgba(255,255,255,.85); }
.aside-price tr:last-child td { border-bottom: 0; }
.aside-price td:last-child { text-align: right; font-family: var(--display); font-weight: 800; color: #fff; white-space: nowrap; }
.aside-price .note { font-size: .82rem; color: var(--gold-tint); margin-top: .8rem; }

/* Pasos canje */
.canje-steps { display: grid; gap: 1.2rem; counter-reset: cstep; max-width: 820px; }
.canje-step { display: flex; gap: 1.2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.canje-step .n { font-family: var(--display); font-weight: 800; color: #fff; background: var(--pine);
   width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.canje-step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.canje-step p { color: var(--ink-soft); font-size: .95rem; }
.callout { background: var(--gold-tint); border-left: 4px solid var(--gold); border-radius: var(--radius-sm);
   padding: 1.1rem 1.3rem; font-size: .95rem; color: var(--ink); margin-top: 1.4rem; }

/* Legal */
.legal-prose { max-width: 800px; }
.legal-prose h2 { font-size: 1.25rem; margin: 2rem 0 .6rem; }
.legal-prose p, .legal-prose li { color: var(--ink-soft); margin-bottom: .8rem; }
.legal-prose ol { padding-left: 1.2rem; }
.legal-data { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-bottom: 2rem; }
.legal-data li { display: flex; gap: .5rem; margin-bottom: .5rem; color: var(--ink); }
.legal-data b { font-family: var(--display); min-width: 150px; }

/* --------------------------------------------------------------- Reveal --- */
/* El contenido es visible por defecto; solo se anima si hay JS (mejora progresiva) */
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ Responsive -- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card { max-width: 460px; }
  .why-grid, .loc-grid, .svc-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars .grid { grid-template-columns: 1fr 1fr; }
  .aside-sticky { position: static; }
  .svc-layout .aside-sticky { order: -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 4.5rem; }
  .nav, .header-cta .tel-link span, .has-drop { display: none; }
  .nav-toggle { display: block; }
  .header-cta { margin-left: auto; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
     background: var(--white); border-bottom: 1px solid var(--line); padding: 1rem; gap: .2rem; box-shadow: var(--shadow); }
  .nav.open a { padding: .8rem; width: 100%; }
  .nav.open .has-drop { display: block; }
  .nav.open .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 1rem; }
  .steps-grid, .services-grid, .pillars .grid, .footer-grid { grid-template-columns: 1fr; }
  .price-card { margin-top: 0; }
  .mobile-bar { display: flex; }
  .float-actions { bottom: 5rem; }
  .fab-tel { display: grid; }
  .footer-legal { flex-direction: column; }
}
@media (max-width: 420px) {
  .brand { font-size: 1.25rem; }
  .brand small { letter-spacing: .12em; font-size: .56rem; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
