:root {
  /* Brand */
  --brand: #136565;
  --brand-2: #0e4b4b;
  --cta: #0077cc;
  --cta-2: #005fa3;
  --success: #287eff;
  --cta3: #f2780d;
  --cta-3: #ba5a07;

  /* Neutrals */
  --ink: #111827;
  --muted: #6b7280;
  --bg: #f7f7f7;
  --card: #ffffff;

  /* Radius & shadows */
  --r-xs: 8px;
  --r-sm: 10px;
  --r-md: 12px;
  --r-lg: 14px;
  --r-xl: 16px;
  --pill: 999px;
  --shadow-1: 0 2px 0 rgba(0, 0, 0, .03);
  --shadow-card: 0 4px 16px rgba(17, 24, 39, .04);
  --shadow-card-lg: 0 6px 22px rgba(17, 24, 39, .06);

  --header-h: 72px;
  /* ajusta si tu header real es más alto */
}

* {
  box-sizing: border-box
}

/* ===== Base / Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  padding: 0;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

/* Layout helper */
.container {
  width: min(1120px, 92%);
  margin-inline: auto
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  background: #1a2d4a;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .2px
}

.logo {
  height: 36px;
  width: auto
}

/* Brand Text */
.brand-text {
  display: none;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.25rem;
  margin-left: 0px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .brand-text {
    display: block;
  }
}


.main-header nav a {
  padding: 8px 12px;
  border-radius: var(--r-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease, background 0.15s ease;
}

.main-header nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Nav CTA (WhatsApp link in header) */
.site-nav .nav-cta {
  background: #e8772a;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  margin-left: 4px;
}

.site-nav .nav-cta:hover {
  background: #d0671f;
  color: #fff;
}

/* Headings & buttons font family */
h1,
h2,
.btn {
  font-family: Manrope, Inter, system-ui, sans-serif
}


/* ===== Hero (chat-like) ===== */
/* Wrapper + background */
.hero {
  position: relative;
  overflow: hidden;
  background: #f3fbfa;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(420px 260px at 12% 8%, rgba(19, 101, 101, 0.18) 0%, transparent 65%),
    radial-gradient(520px 300px at 88% 12%, rgba(0, 119, 204, 0.16) 0%, transparent 65%),
    radial-gradient(600px 360px at 40% 110%, rgba(14, 75, 75, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eef9f7 100%);
}

/* Content */
.hero-content {
  text-align: center;
  padding: 96px 0 72px
}

.eyebrow {
  display: inline-block;
  background: rgba(19, 101, 101, .95);
  color: #fff;
  padding: 6px 10px;
  border-radius: var(--pill);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .3px;
}

.hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
  color: #0f2f2f;
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: #334155;
  max-width: 780px;
  margin: 0 auto 18px;
}

/* CTAs */
.cta-row {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.cta-row.left {
  justify-content: flex-start
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg {
    animation: floaty 18s ease-in-out infinite alternate;
  }

  @keyframes floaty {
    0% {
      transform: translateY(0) translateX(0)
    }

    50% {
      transform: translateY(-20px) translateX(8px)
    }

    100% {
      transform: translateY(0) translateX(-8px)
    }
  }
}

/* quick kill switch: .hero-bg{animation:none !important;} */


/* (nuevo) chips de ciudades dentro del hero */

/* Chat demo */
.chat-demo {
  max-width: 760px;
  margin: 22px auto 0;
  display: grid;
  gap: 10px;
  justify-items: start
}

.bubble {
  padding: 12px 14px;
  border-radius: var(--r-xl);
  max-width: 90%;
  text-align: left;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: var(--shadow-1)
}

.bubble.me {
  justify-self: end;
  background: #e8f4ff;
  border-color: #d7e9ff
}

.bubble.bot {
  background: #e7fbf2;
  border-color: #c5f2df
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-weight: 800;
  letter-spacing: .2px;
  border: 2px solid transparent;
  cursor: pointer
}

.btn.primary {
  background: var(--cta);
  color: #fff
}

.btn.primary:hover {
  background: var(--cta-2)
}

.btn.outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand)
}

.btn.outline:hover {
  background: #eaf6f6
}

.btn:focus-visible {
  outline: 3px solid rgba(19, 101, 101, .35);
  outline-offset: 3px;
}

.lead-secondary {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98em;
}

.lead a {
  color: var(--brand);
}

.muted {
  color: var(--muted);
}


/* Links under CTA -> turn into pill buttons */
.hero-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: #0f172a;
}

.hero-link:hover {
  border-color: rgba(17, 24, 39, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.hero-link:focus-visible {
  outline: 2px solid rgba(19, 101, 101, 0.45);
  outline-offset: 2px;
}

/* Mobile: keep it tight */
@media (max-width: 768px) {
  .hero-links {
    margin-top: 8px;
    gap: 8px;
  }

  .hero-link {
    font-size: 0.9rem;
    padding: 8px 11px;
  }
}




/* Trust bar */
.trust {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 14px 0;
  text-align: center
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-weight: 600;
  font-size: .95rem
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.4)
}


/* Sections */
.section {
  padding: 56px 0;
  background: #fff
}

.section.alt {
  background: var(--bg)
}

h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 10px
}

.sub {
  color: var(--muted);
  margin: 0 0 24px
}

/* How it works center alignment */

/* ===== Grid Split Setup ===== */
.nh-grid-split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 760px) {
  .nh-grid-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* ===== Stats (Counters) ===== */

.stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* mobile: 2 cols */
  justify-items: stretch;
}

@media (min-width:760px) {
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

.stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  padding: 18px;
  display: grid;
  gap: 6px;
  justify-items: center;
}

.stat-num {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(1.6rem, 4.2vw, 2.4rem);
  color: #0f2f2f;
  line-height: 1.1;
}

.stat-label {
  color: #374151;
  font-weight: 700;
  font-size: 1rem;
}


/* Stepper horizontal compacto */
.stepper {
  --line: #e5e7eb;
  --dot-bg: #1a2d4a;
  --dot-ink: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0;
  margin: 14px auto 0;
  list-style: none;
  max-width: 1000px;
}

.stepper-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  text-align: left
}

.stepper-dot {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: var(--pill);
  background: var(--dot-bg);
  color: var(--dot-ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 0 0 4px rgba(19, 101, 101, .10);
}

.stepper-label {
  font-size: .98rem;
  color: #374151
}

.stepper-label b {
  display: inline;
  margin-right: 6px;
  color: #0f2f2f
}


/* ===== Categories (cards) ===== */
/* Grid de categorías: 2 / 3 / 4 columnas */
.grid.cats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* móvil */
}

@media (min-width:760px) {
  .grid.cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* tablet */
    gap: 16px;
  }
}

@media (min-width:1024px) {
  .grid.cats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* desktop */
  }
}

.grid.cats {
  gap: 14px
}

/* un poquito más de aire entre cards */

.cat {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  /* emoji | cuerpo | cta */
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: var(--r-xl);
  background: linear-gradient(0deg, #ffffff, #ffffff);
  box-shadow: var(--shadow-1);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.cat-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #136565;
  font-weight: 700;
  font-size: .78rem;
  padding: 4px 8px;
  border-radius: var(--pill);
}

/* Hover & focus */
.cat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(17, 24, 39, .07);
  border-color: #cfe6e6;
  background: linear-gradient(180deg, #ffffff 0%, #fbfefd 100%);
}

/* Accesibilidad */
.cat:focus-visible {
  outline: 3px solid rgba(19, 101, 101, .35);
  outline-offset: 3px;
}

/* Responsive refinements */
@media (min-width:760px) {
  .grid.cats {
    gap: 16px
  }
}

/* Versión compacta de categorías */

/* Ciudades centrado + fondo */
#ciudades {
  text-align: center;
}

#ciudades .chips {
  justify-content: center;
}

/* Variante con imagen de fondo (oscurecida) */
.section.alt.map {
  position: relative;
  color: #fff;

  /* simplest, bulletproof */
  background:
    linear-gradient(0deg, rgba(11, 46, 46, .70), rgba(11, 46, 46, .70)),
    url('../images/sur-chile-osorno.webp') center/cover no-repeat;

  /* if you want fallbacks later, add them once this works */
  /* background:
    linear-gradient(0deg, rgba(11,46,46,.70), rgba(11,46,46,.70)),
    image-set(
      url('../images/sur-chile.avif') type('image/avif') 1x,
      url('../images/sur-chile.webp') type('image/webp') 1x,
      url('../images/sur-chile.jpg')  type('image/jpeg') 1x
    ) center/cover no-repeat; */
}

/* Mejorar legibilidad de títulos en fondo oscuro */
.section.alt.map h2,
.section.alt.map .sub {
  color: #fff;
}

/* Chips sobre fondo oscuro */
.section.alt.map .chip {
  background: rgba(255, 255, 255, .92);
  border-color: transparent;
  color: #0b2e2e;
}

/* Badge superior “Sur de Chile” */

/* Parallax suave sólo en desktop para no afectar móviles */
@media (min-width:1024px) {
  .section.alt.map {
    background-attachment: fixed;
  }
}


/* Chips (ciudades genéricas en otras secciones) */
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.chip {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 8px 12px;
  border-radius: var(--pill);
  font-weight: 700
}

/* Quote */
.quote {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--r-xl);
  padding: 18px
}


.faq details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--r-lg);
  padding: 12px 14px;
  margin: 12px 0;
  box-shadow: var(--shadow-card);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.faq details:hover {
  border-color: #d8e7e7;
  box-shadow: var(--shadow-card-lg)
}

.faq details[open] {
  background: #fbfefd;
  border-color: #cfe6e6
}

.faq summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: #0f2f2f;
  position: relative;
  padding-right: 28px;
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #0f2f2f;
  border-bottom: 2px solid #0f2f2f;
  opacity: .7;
  transition: transform .2s ease, opacity .2s ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 1
}

.faq summary span {
  line-height: 1.35
}

.faq p {
  margin: 10px 2px 4px;
  color: #374151
}

/* Focus */
.faq summary:focus-visible {
  outline: 3px solid rgba(19, 101, 101, .35);
  outline-offset: 3px;
  border-radius: 10px;
}


/* Form */




/* Evita que el sticky header tape los títulos al navegar por #anclas */
section[id] {
  scroll-margin-top: 80px;
}

/* Igual que los botones, pero para enlaces clave */
a:focus-visible {
  outline: 3px solid rgba(19, 101, 101, .35);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Aumenta el alto clickeable del summary en móviles */
.faq summary {
  min-height: 44px;
}

::selection {
  background: rgba(19, 101, 101, .18);
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ≥ 760px (tablet/desktop) */
@media (min-width:760px) {

  /* Stepper layout */
  .stepper {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
  }

  .stepper-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
    padding: 0 8px;
    min-height: 120px;
  }

  /* Horizontal connector line between stepper dots */
  .stepper-item::after {
    content: "";
    position: absolute;
    top: 50%;
    /* middle of the dot */
    left: 100%;
    /* start right after the dot */
    width: 100%;
    /* stretch to next step */
    height: 2px;
    background: var(--line);
    transform: translateY(-50%);
    /* keep it centered */
    z-index: -1;
    /* make sure dots are above the line */
  }

  .stepper-item:last-child::after {
    display: none;
    /* no line after the last dot */
  }

  /* Trust, categories, hero spacing */
  .hero-content {
    padding: 96px 0 72px
  }

  /* Footer grid columns */
  .foot {
    grid-template-columns: 1.2fr .9fr 1fr
  }
}

/* ≤ 759.98px tweaks */
@media (max-width:759.98px) {
  .stepper-item {
    min-height: auto
  }
}

/* ===== Ciudades (polish v2) ===== */
:root {
  /* darkness of the overlay (tweak .55–.75) */
  --map-overlay: rgba(11, 46, 46, .62);
  /* vertical focal point of the photo (20–40%) */
  --map-y: 28%;
}

.section.alt.map {
  position: relative;
  overflow: hidden;
  /* allows the fade */
  color: #fff;
  background:
    linear-gradient(0deg, var(--map-overlay), var(--map-overlay)),
    url('../images/sur-chile-osorno.webp') center var(--map-y) / cover no-repeat;
  background-attachment: fixed;
  /* parallax */
}

/* center + breathing room */
.section.alt.map .container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding: clamp(48px, 6vw, 88px) 0;
}

#testimonios.section.alt.map::after {
  content: none !important;
}

/* remove top fade (clean edge) */
.section.alt.map::before {
  content: none;
}

/* gentle bottom fade into white */
.section.alt.map::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 70px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #fff 55%);
}

/* title/sub legibility over photo */
.section.alt.map h2,
.section.alt.map .sub {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

/* region badge */

/* chips on dark bg */
.section.alt.map .chips {
  justify-content: center;
}

.section.alt.map .chip {
  background: rgba(255, 255, 255, .94);
  border-color: transparent;
  color: #0b2e2e;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
}

.section.alt.map .chip.active {
  background: var(--brand);
  color: #fff;
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .section.alt.map {
    background-attachment: scroll;
  }
}

/* optional: parallax only on desktop */
@media (max-width:1023.98px) {
  .section.alt.map {
    background-attachment: scroll;
  }
}


/* ===== Mobile Nav (Hamburger) ===== */

/* botón hamburger oculto en desktop */
.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: 10px;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(19, 101, 101, .35);
  outline-offset: 3px;
}

.nav-toggle-box {
  display: grid;
  gap: 4px;
}

.nav-toggle-line {
  width: 24px;
  height: 2px;
  background: #ffffff;
  display: block;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}

/* contenedor menú base (desktop) */
.site-nav {
  display: flex;
  gap: 8px;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
  color: #374151;
}

.site-nav a:hover {
  background: #f1f5f9;
}

/* layout móvil */
@media (max-width: 759.98px) {
  .nav-toggle {
    display: block;
  }

  /* header: marca a la izquierda, botón a la derecha */
  .header-content {
    gap: 8px;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 0 0;
    /* debajo del header */
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    display: grid;
    gap: 6px;
    padding: 12px;
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }

  .site-nav a {
    padding: 12px;
    font-size: 1.05rem;
  }

  /* estado abierto */
  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* animación del ícono a "X" */
  .nav-open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* bloquea scroll de fondo cuando el menú está abierto */
  html.nav-open,
  body.nav-open {
    overflow: hidden;
  }

}

/* ===== Compactar menú móvil ===== */
@media (max-width: 759.98px) {
  .site-nav {
    display: grid;
    gap: 0;
    /* sin gaps entre filas */
    padding: 8px 10px;
    /* menos padding del contenedor */
    align-content: start;
    /* evita que Safari reparta el espacio vertical */
    justify-items: start;
    /* alinea los links a la izquierda */
  }

  .site-nav a {
    padding: 12px 4px;
    /* menos alto por ítem */
    font-size: 1rem;
    /* texto un pelín más chico */
    line-height: 1.25;
    /* altura de línea contenida */
    width: 100%;
    border-radius: 8px;
  }

  .main-header .site-nav a:not(.nav-cta) {
    color: #374151;
  }

  .main-header .site-nav a:not(.nav-cta):hover {
    color: #1a2d4a;
    background: #f1f5f9;
  }

  /* separadores sutiles en vez de grandes espacios */
  .site-nav a+a {
    border-top: 1px solid #eef2f7;
  }
}


/* ===== Hero más compacto en móvil ===== */
.hero-content {
  padding: 56px 0 56px;
}

/* antes: 96px 0 72px */

@media (min-width:760px) {
  .hero-content {
    padding: 82px 0 72px;
  }

  /* desktop se mantiene amplio */
}

/* Mini hero CTA: Necesitas un dato ahora */


/* ===== Reviews ===== */


/* ===== Reviews slider (infinite + edge fade) ===== */

/* Fade en los bordes (overlay) */

/* Track infinito */
.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: reviewsMarquee 38s linear infinite;
}

/* Pausa al hover (desktop) */

@keyframes reviewsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

  /* clave: como duplicamos, -50% es el loop perfecto */
}

/* Cards — fixed width ONLY inside slider */

/* Mobile: permitir swipe (sin autoplay) */
@media (max-width: 768px) {

  .reviews-track {
    animation: none;
    padding: 0 12px 10px;
  }

  /* en mobile, el fade puede molestar al swipe */
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}


/* ===== Verticales: Hogga Servicios + Hogga Turismo ===== */

/* Grid de las dos tarjetas */

/* Card base */

/* Badges */

/* Títulos y texto */

/* Lista de bullets */

/* CTA al fondo de la tarjeta */

/* Botón secundario */

/* ===== Footer universal Hogga ===== */

.footer {
  background: #1a2d4a;
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 24px;
}

.foot {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: flex-start;
}

@media (min-width: 760px) {
  .foot {
    grid-template-columns: 1.3fr 1.2fr;
    /* marca | links */
  }
}

/* Columna marca */
.foot-brand strong {
  font-size: 1.1rem;
  color: #fff;
}

.foot-brand small {
  display: block;
  margin: 10px 0 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.foot-brand .cta-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Botones WhatsApp footer */
.foot-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  background: #e8772a;
  color: #fff;
  border: none;
  transition: background 0.15s ease, transform 0.1s ease;
}

.foot-cta:hover {
  background: #d0691f;
  transform: translateY(-1px);
}

/* Títulos columnas links */
.foot-title {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.9rem;
}

/* Grid con links */
.foot-links {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
}

@media (min-width: 900px) {
  .foot-links {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

.foot-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.foot-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.foot-links a:hover {
  color: #fff;
  text-decoration: none;
}

/* Pie inferior */
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
}

.foot-bottom small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}


/* ===== Blog ===== */

/* más compacto */

.chips .chip {
  text-decoration: none;
}


.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.related-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.section.alt .related-card {
  background: #f9fafb;
  /* para que combine con el fondo alt */
}

.related-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.related-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

/* Grid específico para los 3 pilares de Servicios clave */

/* En pantallas medianas y grandes: 3 columnas parejas */


/* ===== Elige tu camino ===== */


/* ===== Cobertura / Ciudades (upgrade) ===== */
#ciudades {
  text-align: center;
}

/* Tarjeta glass sobre la foto */

/* Grid interno */

/* Columna izquierda */

/* CTA */

/* Columna derecha */

/* Ajuste de chips sobre fondo oscuro (más “premium”) */

/* Mini “badges” abajo */

/* Texto final */

/* Categorías macro (no links) */


.clean-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.clean-list li {
  margin: 6px 0;
}

.note {
  background: none;
  border: none;
  padding: 0;
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #355f5f;
}

/* ========== SEO LOCAL PAGE ALIGNMENT ========== */

#seolocal .hero-content,
#seolocal .section>.container {
  text-align: center;
}

/* Center lead paragraphs */
#seolocal .lead,
#seolocal .sub,
#seolocal .lead-secondary {
  margin-left: auto;
  margin-right: auto;
}

/* Limit readable width so it doesn't look weird */
#seolocal .lead,
#seolocal .sub {
  max-width: 780px;
}

/* Stats / cards stay visually balanced */
#seolocal .stats-grid {
  justify-items: center;
}

/* But keep text inside cards readable */
#seolocal .stat-card {
  text-align: left;
}


/* =========================
   DECISION HELPERS (Hub + Pages)
   Append at end of styles.css
========================= */

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hub grid: similar feel to your category cards */
.decision-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width:760px) {
  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width:1024px) {
  .decision-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.decision-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.decision-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(17, 24, 39, .07);
  border-color: #cfe6e6;
}

.decision-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--pill);
  display: grid;
  place-items: center;
  background: #f3fbfa;
  font-size: 1.4rem;
}

.decision-body {
  display: grid;
  gap: 4px;
  min-width: 0
}

.decision-title {
  font-weight: 900;
  color: #0f2f2f;
  letter-spacing: .2px;
}

.decision-sub {
  color: #64748b;
  font-weight: 600;
  font-size: .94rem;
}

.decision-cta {
  font-weight: 900;
  color: var(--brand);
  border: 1px solid rgba(19, 101, 101, .22);
  padding: 8px 10px;
  border-radius: var(--r-sm);
}

.hero--decision .lead {
  max-width: 820px
}

/* Decision helper page wrapper */
.decision-wrap {
  width: min(920px, 92%);
  margin-inline: auto;
}

/* Questions */
.decision-form {
  margin-top: 10px
}

.decision-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.q {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-1);
  cursor: pointer;
}

.q:hover {
  border-color: #d8e7e7;
}

.q input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.q span {
  color: #0f172a;
  font-weight: 650;
  line-height: 1.45;
}

.decision-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Result box */
.decision-result {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  padding: 16px;
}

.decision-result-head {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.decision-cta-row {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Conclusion two cards */
.decision-next {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 14px;
}

@media (min-width:760px) {
  .decision-next {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =========================
   DECISION MATRIX (Google vs Meta)
   Add to styles.css
========================= */

.decision-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.matrix-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
}

.matrix-header {
  text-align: center;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding-bottom: 14px;
}

.matrix-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 8px;
}

.matrix-header h3 {
  margin: 0;
  font-size: 1.35rem;
}

.tagline {
  font-style: italic;
  color: rgba(0, 0, 0, .62);
  margin-top: 6px;
}

.matrix-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.matrix-list li {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.45;
}

.matrix-list li strong {
  display: block;
  margin-bottom: 4px;
}

.matrix-verdict {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 12px;
  font-size: .98rem;
  line-height: 1.45;
  text-align: center;
}

.matrix-verdict--good {
  background: rgba(19, 101, 101, .08);
  color: #136565;
  border: 1px solid rgba(19, 101, 101, .18);
}

.matrix-verdict--warn {
  background: rgba(255, 193, 7, .16);
  color: rgba(120, 90, 0, .95);
  border: 1px solid rgba(255, 193, 7, .28);
}

/* ===== Mini estilos locales (no rompen tu CSS) ===== */
.quiz-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.quiz {
  margin-top: 18px;
}

.q-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.q-title {
  font-weight: 800;
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  margin: 0 0 10px 0;
}

.q-help {
  margin: 0 0 10px 0;
  color: rgba(15, 23, 42, 0.75);
}

.choices {
  display: grid;
  gap: 10px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.choice input {
  transform: translateY(1px);
}

.choice:hover {
  border-color: rgba(19, 101, 101, 0.35);
}

.quiz-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.quiz-actions .btn {
  min-width: 190px;
}

.result-area {
  margin-top: 18px;
  display: none;
}

.result-area.is-visible {
  display: block;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.75);
}

.result-title {
  margin-top: 10px;
  text-align: center;
}

.result-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

@media (min-width: 860px) {
  .result-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.micro {
  text-align: center;
  font-size: 0.92rem;
  color: rgba(15, 23, 42, 0.75);
  margin-top: 10px;
}

.inline-muted {
  color: #6b7280;
}

/* =========================
   BLOG POST (Reusable components)
   Add once to styles.css
========================= */

/* category pill */

/* meta line */

/* cover / featured figure */

/* lead paragraph */

/* TOC card */
.toc {
  margin: 18px 0 26px;
  background: #fff;
  border: 1px solid rgba(2, 6, 23, .08);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 10px 22px rgba(2, 6, 23, .05)
}

.toc strong {
  display: block;
  margin-bottom: 8px;
  color: #0f2f2f
}

.toc ul {
  margin: 0;
  padding-left: 18px
}

.toc a {
  text-decoration: none;
  color: var(--brand)
}

.toc a:hover {
  text-decoration: underline
}

/* dark callout */

/* quick summary cards */

/* tip / warn boxes */

.warn {
  border-left: 4px solid #f59e0b;
  background: #fffbeb;
  padding: 12px 12px;
  border-radius: 12px;
  margin: 14px 0;
  color: #334155
}

/* CTA box */

/* related section */

/* NICE DEFAULTS FOR PHOTO-HEAVY POSTS */

/* Quick picker integrado al sistema */

.pill.intent {
  background: rgba(15, 118, 110, .12);
  border-color: rgba(15, 118, 110, .25);
  color: #0f766e;
  font-weight: 800;
}


/* Marquee wrapper */
.reviews-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 18px;

  /* optional: soft fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

/* The moving track */
.reviews-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: reviews-marquee 38s linear infinite;
}

/* Each set is a row of cards */
.reviews-set {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding-right: 14px;
  /* keeps spacing consistent at the seam */
}

/* Key trick: move exactly HALF the track (because you duplicated it) */
@keyframes reviews-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

/* Pause on hover (desktop) */
@media (hover:hover) {
  .reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}

/* Your cards: give them a stable width so mobile doesn't break */

/* Optional: slightly smaller on small screens */
@media (max-width: 520px) {

  .reviews-track {
    animation-duration: 30s;
  }
}

.reviews-marquee {
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      #000 10%,
      #000 90%,
      transparent);
  mask-image: linear-gradient(to right,
      transparent,
      #000 10%,
      #000 90%,
      transparent);
}

/* =========================
   BUSCAR: PROVEEDORES (clean)
========================= */



/* Grid: 3 columnas desktop, 2 tablet, 1 móvil */

/* Card proveedor (usa el look de tus cards actuales, pero más consistente) */

/* Responsive */

/* Info cards (entre trust bar y proveedores) */
.info-card {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, .06);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(2, 6, 23, .05);
}

.section.alt .info-card {
  background: #fbfefe;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, .08);
  background: rgba(19, 101, 101, .08);
  color: #0f2f2f;
}

/* Acentos por sección (solo cambia el fondo del pill) */
.info-card--urgent .info-pill {
  background: rgba(37, 99, 235, .10);
  color: #0b2b67;
}

.info-card--home .info-pill {
  background: rgba(16, 185, 129, .12);
  color: #0f3a2a;
}

/* Mejora micro tipografías dentro */
.info-card h2 {
  margin-top: 4px;
}

.info-card .sub {
  max-width: none;
}

/* ya no lo restringes */


/* Vendor extra details (address + web/maps) */

/* New specific styles for clean vendor details */

/* If inline-link exists, this will harmonize it; if you already styled it, ignore */

/* Optional: make the buttons sit a bit nicer */

.decision-scale {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.scale-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #4b5563;
}

.scale-pill {
  background: #eef2f1;
  color: #136565;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* imagen */

@media (min-width: 768px) {

  /* imagen izquierda (default) */



  /* imagen derecha (alternada) */
}

/* Grid 2x2 (added for Portones Electricos hub) */

/* Card with Image & Text (Vertical) */

/* Landscape modifier (image left, content right) */

/* Checklist Styling */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1em 0;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #136565;
  font-weight: 800;
  font-size: 1.1em;
}

.checklist.small li {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

/* Helper to ensure cards stretch fully in grid */

/* Blog specific: Price Tag */

/* Utilities */

/* Inline Images for Blog */

/* Opcional: Efecto al pasar el mouse para incentivar la lectura del tooltip */

/* Sticky Footer Mobile */

@media (max-width: 768px) {

  #site-footer {
    margin-bottom: 70px;
  }
}


/* =========================================================
   Hogga Vértice HOMEPAGE — Minimal Design System
   Scoped under .negocios-home to avoid breaking other pages
   ========================================================= */

.negocios-home {
  --nh-primary: #1a3a3a;
  --nh-accent: #1f6291;
  --nh-accent-hover: #005fa3;
  --nh-bg: #f7f7f5;
  --nh-bg-alt: #f0f0ed;
  --nh-ink: #1a1a1a;
  --nh-muted: #5c5c5c;
  --nh-line: #e0dfdb;
  --nh-max-w: 1000px;
  --nh-narrow-w: 720px;

  background: var(--nh-bg);
  color: var(--nh-ink);
}

/* Wrapper */
.negocios-home .nh-wrap {
  width: min(var(--nh-max-w), 90%);
  margin-inline: auto;
}

.negocios-home .nh-narrow {
  max-width: var(--nh-narrow-w);
}

/* ---- HERO ---- */
.negocios-home .nh-hero {
  background: #1a2d4a;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay for depth */
.negocios-home .nh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(232, 119, 42, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(42, 74, 122, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Bottom accent line */
.negocios-home .nh-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e8772a 0%, #f5943a 50%, transparent 100%);
}

.negocios-home .nh-hero-inner {
  position: relative;
  z-index: 1;
}

.negocios-home .nh-hero .nh-wrap {
  min-height: calc(92vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  text-align: left;
}

/* Tag */
.negocios-home .nh-hero-tag {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e8772a;
  margin: 0 0 20px;
}

/* Light modifier for Decisiones */
.negocios-home .nh-hero.nh-hero--light {
  background: #ffffff;
  color: #1a3a3a;
  /* Upward trend curves SVG */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 800' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-100 850 C 300 800, 600 600, 900 350 S 1500 0, 1540 -50' stroke='%23e8772a' stroke-width='2' stroke-opacity='0.12' fill='none'/%3E%3Cpath d='M-100 900 C 350 850, 650 700, 950 500 S 1500 150, 1540 50' stroke='%231a3a3a' stroke-width='1.5' stroke-opacity='0.05' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.negocios-home .nh-hero.nh-hero--light::before {
  display: none;
  /* Remove dark gradient */
}

.negocios-home .nh-hero.nh-hero--light h1 {
  color: #1a3a3a;
}

.negocios-home .nh-hero.nh-hero--light .nh-sub {
  color: #4b5563;
}

.negocios-home .nh-hero.nh-hero--light .nh-hero-tag {
  color: #d0671f;
  /* Slightly darker orange for better contrast on white */
}

/* Full height adjustment */
.negocios-home .nh-hero.nh-hero--full {
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
}

.negocios-home .nh-hero.nh-hero--full .nh-hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Reduce vertical padding in full hero to allow Trust Bar to fit above fold */
.negocios-home .nh-hero.nh-hero--full .nh-wrap {
  padding-top: 40px;
  padding-bottom: 40px;
}

.negocios-home .nh-hero h1 {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 18px;
  max-width: 720px;
}

/* Line 3 — detail sentence */
.negocios-home .nh-hero-pillars {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 36px;
  max-width: 520px;
  line-height: 1.6;
}

.negocios-home .nh-hero .nh-sub {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
  max-width: 600px;
}

/* Hero CTA — orange accent */
.negocios-home .nh-hero .nh-btn {
  background: #e8772a;
  color: #fff;
  padding: 15px 32px;
  font-size: 1.02rem;
}

.negocios-home .nh-hero .nh-btn:hover {
  background: #d0671f;
}

.negocios-home .nh-hero .nh-btn:focus-visible {
  outline: 3px solid rgba(232, 119, 42, 0.45);
  outline-offset: 3px;
}

.negocios-home .nh-hero .nh-micro {
  color: rgba(255, 255, 255, 0.4);
}

/* Clarity line — answers "what exactly?" */

/* CTA block */
.negocios-home .nh-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.negocios-home .nh-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--nh-accent);
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}

.negocios-home .nh-btn:hover {
  background: var(--nh-accent-hover);
}

.negocios-home .nh-btn:focus-visible {
  outline: 3px solid rgba(0, 119, 204, 0.4);
  outline-offset: 3px;
}

.negocios-home .nh-micro {
  font-size: 0.85rem;
  color: var(--nh-muted);
}

/* ---- SECTIONS ---- */
.negocios-home .nh-section {
  padding: 80px 0;
}

.negocios-home .nh-section--alt {
  background: var(--nh-bg-alt);
}

.negocios-home .nh-section h2 {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.22;
  color: var(--nh-primary);
  margin: 0 0 16px;
}

.negocios-home .nh-section p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--nh-muted);
  margin: 0 0 20px;
}

/* Dash list (em-dash bullets) */
.negocios-home .nh-dash-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.negocios-home .nh-dash-list li {
  position: relative;
  padding-left: 22px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--nh-ink);
}

.negocios-home .nh-dash-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--nh-muted);
  font-weight: 600;
}

/* Closing lines */

/* ---- RESULTS SECTION ---- */
.negocios-home .nh-results {
  background: #1a2d4a;
  border-top: none;
}

.negocios-home .nh-results h2 {
  color: #fff;
}

.negocios-home .nh-results-tag {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e8772a;
  margin: 0 0 12px;
}

.negocios-home .nh-results-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 32px;
  max-width: 540px;
  line-height: 1.6;
}

/* Proof cards */
.negocios-home .nh-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 40px;
}

@media (min-width: 640px) {
  .negocios-home .nh-proof-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.negocios-home .nh-proof-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #e8772a;
  border-radius: 0 8px 8px 0;
}

/* Contrast fix for proof cards inside light sections */
.negocios-home .nh-section .nh-proof-card:not(.card-alt),
.negocios-home .nh-section--alt .nh-proof-card:not(.card-alt) {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.negocios-home .nh-proof-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.negocios-home .nh-section .nh-proof-card:not(.card-alt) .nh-proof-label,
.negocios-home .nh-section--alt .nh-proof-card:not(.card-alt) .nh-proof-label {
  color: #6b7280;
}

.negocios-home .nh-proof-stat {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.3;
}

.negocios-home .nh-section .nh-proof-card:not(.card-alt) .nh-proof-stat,
.negocios-home .nh-section--alt .nh-proof-card:not(.card-alt) .nh-proof-stat {
  color: #0f2f2f;
}

.negocios-home .nh-proof-period {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.negocios-home .nh-section .nh-proof-card:not(.card-alt) .nh-proof-period,
.negocios-home .nh-section--alt .nh-proof-card:not(.card-alt) .nh-proof-period {
  color: #6b7280;
}

.negocios-home .nh-proof-impact {
  font-size: 0.95rem;
  color: #a1a1aa;
}

.negocios-home .nh-section .nh-proof-card:not(.card-alt) .nh-proof-impact,
.negocios-home .nh-section--alt .nh-proof-card:not(.card-alt) .nh-proof-impact {
  color: #4b5563;
}

/* Ensure .card-alt has the correct contrast inside light sections */

/* Chart */
.negocios-home .nh-chart-wrap {
  max-width: 600px;
  margin: 0 auto 40px;
}

.negocios-home .nh-chart {
  width: 100%;
  height: auto;
}

/* Link */
.negocios-home .nh-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--nh-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--nh-line);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.negocios-home .nh-link:hover {
  color: var(--nh-primary);
  border-color: var(--nh-primary);
}

/* Light link variant (for dark backgrounds) */
.negocios-home .nh-link--light {
  color: rgba(255, 255, 255, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.negocios-home .nh-link--light:hover {
  color: #fff;
  border-bottom-color: #e8772a;
}

/* ---- FINAL CTA ---- */
.negocios-home .nh-cta-final {
  padding: 100px 0;
}

.negocios-home .nh-cta-final h2 {
  margin-bottom: 12px;
}

.negocios-home .nh-cta-final p {
  margin-bottom: 28px;
}

.negocios-home .nh-cta-final .nh-cta-block {
  align-items: center;
}

/* ---- MOBILE TWEAKS ---- */
@media (max-width: 640px) {
  .negocios-home .nh-hero .nh-wrap {
    min-height: calc(100vh - 56px);
    padding: 48px 0;
  }

  .negocios-home .nh-section {
    padding: 56px 0;
  }

  .negocios-home .nh-cta-final {
    padding: 64px 0;
  }

  .negocios-home .nh-proof-stat {
    font-size: 1.05rem;
  }
}

/* Update: Impact line in proof cards */
.negocios-home .nh-proof-impact {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

/* Update: Case Study Block */
.negocios-home .nh-case-study {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #e8772a;
  border-radius: 0 8px 8px 0;
  padding: 32px 24px;
  margin: 0 auto 48px;
  text-align: center;
  max-width: 800px;
  /* "bloque separado (misma estética, pero centrado o más ancho)" */
}

.negocios-home .nh-case-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
}

.negocios-home .nh-case-stat {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.1;
}

.negocios-home .nh-case-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 28px;
}

.negocios-home .nh-case-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .negocios-home .nh-case-list {
    flex-direction: row;
    gap: 32px;
  }
}

.negocios-home .nh-case-list span {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

.negocios-home .nh-case-close {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  max-width: 600px;
  margin-inline: auto;
}

/* Chart label */
.negocios-home .nh-chart-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 24px;
}

/* How We Operate closing */
.negocios-home .nh-operate-closing {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 16px;
}

.negocios-home .nh-operate-closing p {
  font-size: 1.35rem;
  color: var(--nh-primary);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.negocios-home .nh-operate-closing strong {
  font-weight: 800;
  display: block;
}

/* Transition Section */
.negocios-home .nh-transition {
  text-align: center;
  padding: 80px 0;
}

.negocios-home .nh-transition p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--nh-primary);
  margin: 0;
}

.negocios-home .nh-transition strong {
  font-weight: 800;
  display: block;
}

/* ---- SERVICES PAGE REDESIGN ---- */

/* Hero Variant - Aligned with Homepage DO NOT CHANGE */

/* Gradient overlays matching .nh-hero */

.svc-hero-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.svc-hero-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.svc-hero-bullet span {
  color: #e8772a !important;
  /* Orange accent */
}

/* Pillars */
.svc-pillars {
  padding: 100px 0;
}

.svc-pillar-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 120px;
  align-items: center;
}

.svc-pillar-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .svc-pillar-row {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .svc-pillar-row:nth-child(even) {
    direction: rtl;
  }

  .svc-pillar-row:nth-child(even)>* {
    direction: ltr;
  }
}

.svc-pillar-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a3a3a;
  font-weight: 800;
}

.svc-pillar-text p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.6;
}

.svc-pillar-text ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.svc-pillar-text li {
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
  color: #1f2937;
}

.svc-pillar-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #136565;
  /* Teal brand */
  font-weight: 800;
}

.svc-pillar-img {
  background: #fbfbfb;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.svc-pillar-img img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

/* Plans (Modalities) */
/* Using warm gray from homepage for section background if needed, but keeping white cards */

/* FAQ Clean */
.svc-faq {
  padding-top: 120px;
}

.svc-faq details {
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}

.svc-faq summary {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a3a3a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.svc-faq summary::-webkit-details-marker {
  display: none;
}

.svc-faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: #9ca3af;
}

.svc-faq details[open] summary::after {
  content: "−";
}

.svc-faq p {
  margin-top: 16px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 90%;
}


/* --- Operate section upgrade --- */
.nh-operate-head {
  max-width: 860px;
}

.nh-operate-sub {
  color: #5c5c5c;
  line-height: 1.7;
  margin: 10px 0 0;
  max-width: 760px;
}

.nh-operate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.nh-operate-card {
  background: #fff;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, .06);
}

.nh-operate-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(232, 119, 42, .12);
  color: #e8772a;
  font-weight: 800;
  margin-bottom: 10px;
}

.nh-operate-card h3 {
  margin: 0 0 6px;
}

.nh-operate-card p {
  margin: 0;
  color: #5c5c5c;
  line-height: 1.65;
}

.nh-operate-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.nh-operate-block {
  border-radius: 14px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(16, 24, 40, .08);
  background: rgba(255, 255, 255, .6);
}

.nh-operate-block--yes {
  background: rgba(232, 119, 42, .06);
  border-color: rgba(232, 119, 42, .22);
}

.nh-operate-kicker {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(26, 45, 74, .7);
  margin: 0 0 10px;
  font-weight: 800;
}

.nh-operate-list {
  margin: 0;
  padding-left: 18px;
  color: #5c5c5c;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .nh-operate-grid {
    grid-template-columns: 1fr;
  }

  .nh-operate-split {
    grid-template-columns: 1fr;
  }
}

/* --- Tension line upgrade --- */
.nh-transition {
  padding: 26px 0;
}

.nh-transition .nh-narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.nh-divider {
  width: min(720px, 92%);
  height: 1px;
  background: rgba(16, 24, 40, .10);
}

.nh-transition-text {
  margin: 0;
  text-align: center;
  color: #1a2d4a;
  line-height: 1.6;
}

.nh-transition-chip {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #e8772a;
  border: 1px solid rgba(232, 119, 42, .35);
  background: rgba(232, 119, 42, .08);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.nh-cta-final {
  border-top: 1px solid rgba(16, 24, 40, .08);
}

/* ===== Utility Classes for Refactoring ===== */
.sec-heading {
  text-align: center;
  margin-bottom: 48px;
}

.sec-heading h2 {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 12px;
}

.sec-heading p.lead {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 760px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.mt-md {
  margin-top: 16px;
}

.mt-lg {
  margin-top: 32px;
}

.mt-xl {
  margin-top: 48px;
}

.text-sm {
  font-size: 0.85rem;
  color: var(--muted);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}