/* =========================================================
   DESTAPA 24 — Landing
   Mobile-first, sin frameworks. Variables = paleta única.
   ========================================================= */

:root {
  /* PALETA — petróleo + ámbar (default) */
  --ink:        #0B1F26;   /* fondo oscuro / petróleo */
  --ink-2:      #112C36;   /* card oscura */
  --ink-3:      #1A3E4A;   /* borde oscuro */
  --paper:      #F6F4EF;   /* fondo claro */
  --paper-2:    #ECE7DC;   /* card clara / hairline */
  --line:       #DCD5C6;   /* divisor sobre claro */
  --text:       #0B1F26;
  --text-soft:  #4A5A62;
  --text-invert:#F6F4EF;

  --accent:     #F2A30F;   /* ámbar urgencia (CTA) */
  --accent-ink: #1A1306;   /* texto sobre ámbar */
  --accent-2:   #E85D2C;   /* alerta / chip urgencia */
  --ok:         #1F8A5B;

  /* Tipografías */
  --font-display: "Familjen Grotesk", "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Métricas */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11,31,38,.06), 0 2px 6px rgba(11,31,38,.04);
  --shadow-md: 0 8px 24px rgba(11,31,38,.10), 0 2px 6px rgba(11,31,38,.06);
  --shadow-lg: 0 24px 60px rgba(11,31,38,.18);

  --container: 1180px;
  --gutter: 20px;

  --header-h: 64px;
}

/* ---------- Reset suave ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* espacio para CTA fijo mobile */
  padding-bottom: 76px;
  /* evita scroll horizontal por overflow de cualquier hijo */
  overflow-x: clip;
}
html { overflow-x: clip; }


/* =========================================================
   WHATSAPP FLOTANTE (desktop)
   ========================================================= */
.wa-float {
  /* oculto en mobile — ya existe la barra fija abajo */
  display: none;
}

@media (min-width: 860px) {
  .wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1F8A5B;
    color: #fff;
    box-shadow:
      0 10px 24px rgba(31, 138, 91, .35),
      0 2px 8px rgba(11, 31, 38, .15);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .wa-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(31, 138, 91, .35);
    animation: waPulse 2.4s ease-out infinite;
    z-index: -1;
  }
  .wa-float:hover {
    background: #228e5f;
    transform: translateY(-2px);
    box-shadow:
      0 14px 28px rgba(31, 138, 91, .42),
      0 4px 10px rgba(11, 31, 38, .18);
  }
  .wa-float svg {
    width: 30px;
    height: 30px;
  }

  /* tooltip al hover */
  .wa-float__tip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #0B1F26;
    color: #F6F4EF;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 6px 16px rgba(11, 31, 38, .2);
  }
  .wa-float__tip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #0B1F26;
  }
  .wa-float:hover .wa-float__tip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (min-width: 860px) {
  body { padding-bottom: 0; }
}

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 6.4vw, 4.4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
p  { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .5;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: 64px 0;
}
@media (min-width: 860px) {
  .section { padding: 96px 0; }
}
.section--ink {
  background: var(--ink);
  color: var(--text-invert);
}
.section--ink .eyebrow { color: rgba(246,244,239,.65); }
.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
  max-width: 720px;
}
@media (min-width: 860px) {
  .section-head { margin-bottom: 56px; }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  min-width: 0;
  max-width: 100%;
}
.btn:active { transform: translateY(1px); }
.btn .icn { width: 18px; height: 18px; }

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 6px 18px -6px rgba(242,163,15,.55);
}
.btn--primary:hover { background: #ffb625; }

.btn--whatsapp {
  background: #1F8A5B;
  color: #fff;
}
.btn--whatsapp:hover { background: #228e5f; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--ink-3);
}
.section--ink .btn--ghost {
  color: var(--text-invert);
  border-color: rgba(246,244,239,.25);
}
.btn--ghost:hover { background: rgba(11,31,38,.06); }
.section--ink .btn--ghost:hover { background: rgba(246,244,239,.08); }

.btn--block { width: 100%; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(232,93,44,.12);
  color: var(--accent-2);
  border: 1px solid rgba(232,93,44,.25);
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(232,93,44,.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,93,44,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(232,93,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,93,44,0); }
}
.section--ink .pill {
  background: rgba(242,163,15,.14);
  color: var(--accent);
  border-color: rgba(242,163,15,.3);
}
.section--ink .pill .dot { background: var(--accent); box-shadow: 0 0 0 0 rgba(242,163,15,.55); }
.section--ink .pill .dot {
  animation-name: pulseAmber;
}
@keyframes pulseAmber {
  0%   { box-shadow: 0 0 0 0 rgba(242,163,15,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(242,163,15,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,163,15,0); }
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246,244,239,.85);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.brand__name { line-height: 1; }
.brand__name b { font-weight: 800; }
.brand__name span { color: var(--accent-2); font-weight: 800; }

.nav {
  display: none;
  margin-left: auto;
  gap: 28px;
  font-size: 0.94rem;
  color: var(--text-soft);
}
.nav a:hover { color: var(--text); }
@media (min-width: 860px) {
  .nav { display: inline-flex; align-items: center; }
}

.header__cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 860px) {
  .header__cta { margin-left: 0; }
}
.header__cta .btn--primary { padding: 10px 16px; font-size: 0.88rem; }
.header__phone {
  display: none;
  font-weight: 600;
  font-size: 0.92rem;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .header__phone { display: inline-flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(242,163,15,.10), transparent 60%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(11,31,38,.06), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  display: grid;
  gap: 36px;
  padding: 48px 0 56px;
  align-items: center;
}
/* importante: permitir que los items del grid se encojan en mobile */
.hero__inner > * { min-width: 0; }
@media (min-width: 860px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    padding: 50px 0 66px;
  }
}

.hero__copy { display: grid; gap: 22px;padding: 0 var(--gutter); }
.hero h1 .muted { color: var(--text-soft); }

.hero__sub {
  display: block;
  font-size: clamp(1.1rem, 3.2vw, 2rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin-top: 6px;
}
.hero h1 .accent {
  background: linear-gradient(180deg, transparent 62%, rgba(242,163,15,.45) 62%);
  padding: 0 .08em;
}
.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-soft);
  max-width: 540px;
}
.hero__ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 460px;
  width: 100%;
}
.hero__ctas .btn { min-width: 0; }
@media (min-width: 420px) {
  .hero__ctas { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 520px) {
  .hero__ctas { grid-template-columns: auto auto; }
  .hero__ctas .btn { width: auto; }
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  padding-top: 8px;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.hero__meta b { color: var(--text); font-weight: 700; }

/* visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 860px) {
  .hero__visual { aspect-ratio: 5 / 6; }
}
.hero__visual .ph {
  position: absolute; inset: 0;
}
/* placeholder badge */
.hero__badge {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--paper);
  color: var(--text);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  max-width: calc(100% - 32px);
}
.hero__badge .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-2);
  line-height: 1;
}
.hero__badge .lbl {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.3;
}
.hero__badge .lbl b { color: var(--text); display: block; font-weight: 700; }

.hero__tag-time {
  position: absolute;
  right: 16px; top: 16px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex; gap: 8px; align-items: center;
}

/* placeholder visual del hero */
.ph-hero {
  background:
    radial-gradient(circle at 70% 30%, rgba(242,163,15,.22), transparent 55%),
    linear-gradient(160deg, #143844, #0B1F26 70%);
  display: grid;
  place-items: center;
  color: rgba(246,244,239,.6);
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.ph-hero .ico {
  width: 96px; height: 96px;
  border-radius: 24px;
  background: rgba(246,244,239,.06);
  border: 1px dashed rgba(246,244,239,.25);
  display: grid; place-items: center;
  margin-bottom: 14px;
  color: var(--accent);
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 720px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .trust__grid { grid-template-columns: repeat(5, 1fr); } }

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__item:last-child { border-right: 0; }
@media (min-width: 720px) {
  .trust__item:nth-child(4n) { border-right: 0; }
  .trust__item { border-bottom: 0; }
}
@media (min-width: 1024px) {
  .trust__item:nth-child(4n) { border-right: 1px solid var(--line); }
  .trust__item:nth-child(5n) { border-right: 0; }
}
.trust__icon {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  color: var(--accent-2);
}
.trust__txt b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.trust__txt span {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.4;
}

/* =========================================================
   SERVICIOS
   ========================================================= */
.services__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  display: grid;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--accent);
  display: grid; place-items: center;
}
.service__icon svg { width: 22px; height: 22px; }
.service h3 { font-size: 1.1rem; }
.service p { font-size: 0.94rem; color: var(--text-soft); }
.service .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.86rem;
  color: var(--text);
}
.service .arrow svg { width: 14px; height: 14px; transition: transform .2s ease; }
.service:hover .arrow svg { transform: translateX(3px); }
.service--feature {
  grid-column: span 1;
  background: var(--ink);
  color: var(--text-invert);
  border-color: var(--ink-3);
}
.service--feature p { color: rgba(246,244,239,.7); }
.service--feature .service__icon { background: var(--accent); color: var(--accent-ink); }
.service--feature .arrow { color: var(--accent); }
@media (min-width: 980px) {
  .service--feature { grid-column: span 1; }
}

/* =========================================================
   CUÁNDO LLAMARNOS — symptoms
   ========================================================= */
.symptoms {
  background: var(--ink);
  color: var(--text-invert);
}
.symptoms .section-head h2 { color: var(--text-invert); }
.symptoms__grid {
  display: grid;
  gap: 1px;
  background: var(--ink-3);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-md);
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .symptoms__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .symptoms__grid { grid-template-columns: repeat(3, 1fr); } }

.symptom {
  background: var(--ink);
  padding: 22px;
  display: grid;
  gap: 8px;
  position: relative;
  transition: background .2s ease;
}
.symptom:hover { background: var(--ink-2); }
.symptom__num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.symptom h3 { font-size: 1.08rem; color: var(--text-invert); letter-spacing: -0.015em; }
.symptom p { font-size: 0.9rem; color: rgba(246,244,239,.65); }

/* =========================================================
   PROCESO
   ========================================================= */
.process__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  counter-reset: step;
  position: relative;
}
@media (min-width: 760px) {
  .process__grid { grid-template-columns: repeat(4, 1fr); }
}
.step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper-2);
  display: grid; gap: 10px;
}
.step__n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent-2);
  line-height: 1;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.92rem; color: var(--text-soft); }

/* =========================================================
   ZONAS
   ========================================================= */
.zones {
  background: var(--paper);
}
.zones__wrap {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .zones__wrap { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.zones__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.zones__chips span {
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text-soft);
}
.zones__chips span.is-active {
  background: var(--ink); color: var(--text-invert);
  border-color: var(--ink);
}
.zones__map {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-md);
  background:
    repeating-linear-gradient(0deg, rgba(11,31,38,.05) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(11,31,38,.05) 0 1px, transparent 1px 28px),
    var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.zones__map .pin {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(232,93,44,.22), 0 4px 10px rgba(11,31,38,.18);
  transform: translate(-50%, -50%);
}
.zones__map .pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: ping 2.4s ease-out infinite;
  background: rgba(232,93,44,.4);
}
@keyframes ping {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(3.5); opacity: 0; }
}
.zones__map .pin.s { background: var(--ink); box-shadow: 0 0 0 4px rgba(11,31,38,.12); }
.zones__map .pin.s::after { display: none; }
.zones__map .label {
  position: absolute;
  transform: translate(-50%, -150%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   DIFERENCIADOR
   ========================================================= */
.diff {
  background: var(--ink);
  color: var(--text-invert);
  position: relative;
  overflow: hidden;
}
.diff::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(242,163,15,.18), transparent 60%);
  pointer-events: none;
}
.diff__wrap {
  display: grid;
  gap: 36px;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .diff__wrap { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
}
.diff h2 { color: var(--text-invert); }
.diff__list { display: grid; gap: 18px; margin-top: 8px; }
.diff__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.diff__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  flex: 0 0 28px;
}
.diff__check svg { width: 14px; height: 14px; }
.diff__item b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.diff__item span { color: rgba(246,244,239,.7); font-size: 0.94rem; }

.diff__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
}

.diff__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 900px) {
  .diff__photo { aspect-ratio: 5 / 6; }
}
.diff__photo .ph-img {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(246,244,239,.45);
  font-size: 0.82rem;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 70%, rgba(242,163,15,.15), transparent 55%),
    linear-gradient(180deg, #143844, #0B1F26);
}
.diff__stats {
  position: absolute;
  left: 16px; bottom: 16px; right: 16px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(246,244,239,.12);
  border-radius: var(--r-md);
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.diff__stats > div {
  background: rgba(11,31,38,.55);
  padding: 12px;
}
.diff__stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.diff__stats span {
  font-size: 0.72rem;
  color: rgba(246,244,239,.7);
  line-height: 1.3;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq__wrap {
  display: grid; gap: 36px;
}
@media (min-width: 900px) {
  .faq__wrap { grid-template-columns: 360px 1fr; gap: 64px; }
}
.faq__list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  transition: color .15s ease;
}
.faq__q:hover { color: var(--accent-2); }
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex: 0 0 28px;
  transition: background .2s ease, color .2s ease, transform .25s ease;
}
.faq__icon svg { width: 12px; height: 12px; }
.faq__item.is-open .faq__icon {
  background: var(--ink); color: var(--accent);
  transform: rotate(45deg);
  border-color: var(--ink);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__a p {
  padding: 0 0 22px;
  color: var(--text-soft);
  max-width: 64ch;
}

/* =========================================================
   CONTACT (final CTA)
   ========================================================= */
.cta {
  background: var(--accent);
  color: var(--accent-ink);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  left: -5%; bottom: -50%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(11,31,38,.18), transparent 60%);
}
.cta__wrap {
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
  align-items: center;
}
@media (min-width: 800px) {
  .cta__wrap { grid-template-columns: 1.2fr 1fr; }
}
.cta h2 {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  letter-spacing: -0.03em;
}
.cta__sub { font-size: 1.02rem; max-width: 520px; margin-top: 6px; opacity: .8; }
.cta__btns {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .cta__btns { grid-template-columns: 1fr 1fr; }
}
.cta .btn--primary {
  background: var(--ink);
  color: var(--text-invert);
  box-shadow: none;
}
.cta .btn--primary:hover { background: #143844; }
.cta .btn--whatsapp { background: #0E5A3C; }
.cta .btn--whatsapp:hover { background: #0F6643; }

.cta__data {
  display: grid; gap: 10px;
  font-size: 0.92rem;
  margin-top: 18px;
  opacity: .85;
}
.cta__data div { display: inline-flex; align-items: center; gap: 8px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(246,244,239,.7);
  font-size: 0.9rem;
}
.footer__top {
  padding: 56px 0 36px;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
}
.footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(246,244,239,.9);
  font-family: var(--font-body);
  margin-bottom: 14px;
}
.footer ul li { margin-bottom: 8px; }
.footer ul a:hover { color: var(--accent); }
.footer__brand-blurb { margin-top: 12px; max-width: 360px; }
.footer__bot {
  border-top: 1px solid rgba(246,244,239,.1);
  padding: 18px 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(246,244,239,.55);
}

/* =========================================================
   CTA FIJO MOBILE
   ========================================================= */
.bottom-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11,31,38,.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(246,244,239,.08);
}
.bottom-cta .btn { padding: 13px 14px; font-size: 0.92rem; }
@media (min-width: 860px) {
  .bottom-cta { display: none; }
}

/* =========================================================
   Iconos / Imagen placeholders
   ========================================================= */
.ph-img-block {
  position: relative;
  background: var(--paper-2);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  color: var(--text-soft);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.ph-img-block .ph-tag {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.ph-img-block .ph-note {
  font-size: 0.7rem;
  color: var(--text-soft);
  opacity: .75;
}

/* =========================================================
   TWEAKS — overrides aplicables vía atributos data-*
   ========================================================= */
:root[data-palette="midnight"] {
  --ink: #0B1738;
  --ink-2: #121F46;
  --ink-3: #1E2C5C;
  --accent: #FFD60A;
  --accent-ink: #2A1E00;
  --accent-2: #FF4D4D;
}
:root[data-palette="teal"] {
  --ink: #0E2F2E;
  --ink-2: #133E3C;
  --ink-3: #1F5450;
  --accent: #F2C14E;
  --accent-ink: #1F1B05;
  --accent-2: #E85D2C;
}
:root[data-palette="charcoal"] {
  --ink: #1A1A1C;
  --ink-2: #232325;
  --ink-3: #34343A;
  --accent: #FF6B1A;
  --accent-ink: #1B0700;
  --accent-2: #FF6B1A;
  --paper: #F4F2EE;
  --paper-2: #E9E5DC;
  --line: #D7D1C2;
}

:root[data-font="grotesk"] {
  --font-display: "Familjen Grotesk", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}
:root[data-font="serif"] {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}
:root[data-font="mono"] {
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
