/* Cultivando Salud — estilos compartidos */
:root {
  --brand: #abe86d;
  --brand-rgb: 171, 232, 109;
  --brand-soft: #d4f5a8;
  --brand-deep: #3d6628;
  --brand-mid: #5a8a32;
  --bg-page: #f4f7f0;
  --bg-card: #ffffff;
  --surface-alt: #eef4e8;
  --fg: #1a2614;
  --ink: #142210;
  --fg-soft: rgba(26, 38, 20, 0.7);
  --border: rgba(26, 38, 20, 0.1);
  --border-strong: rgba(var(--brand-rgb), 0.32);
  --danger: #c43c3c;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow: 0 10px 40px rgba(26, 42, 18, 0.07);
  --shadow-soft: 0 4px 24px rgba(26, 42, 18, 0.05);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --max: 1140px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg-page);
  background-image:
    radial-gradient(ellipse 50% 38% at 12% 8%, rgba(var(--brand-rgb), 0.18), transparent 58%),
    radial-gradient(ellipse 42% 32% at 92% 88%, rgba(var(--brand-rgb), 0.1), transparent 52%),
    linear-gradient(180deg, #fbfff9 0%, var(--bg-page) 40%, #e9f0e2 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-mid);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-deep);
}

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

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 255, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.18);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__menu-btn {
  display: none;
  border: 1px solid rgba(var(--brand-rgb), 0.42);
  background: #fff;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  padding: 0.55rem 0.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  cursor: pointer;
}

.site-header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-deep);
  border-radius: 999px;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  min-width: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.site-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  padding: 5px;
  border-radius: 16px;
  border: 1px solid rgba(var(--brand-rgb), 0.32);
  background: linear-gradient(165deg, #ffffff 0%, #f4faf0 100%);
  box-shadow:
    0 6px 24px rgba(40, 70, 30, 0.1),
    0 0 0 3px rgba(var(--brand-rgb), 0.14);
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: min(52vw, 320px);
  mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--fg-soft);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(var(--brand-rgb), 0.14);
  color: var(--brand-deep);
}

.site-nav a.is-active {
  background: rgba(var(--brand-rgb), 0.2);
  color: var(--brand-deep);
}

.site-header__cta {
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.site-header__cta--mobile-only {
  display: none !important;
}

@media (min-width: 720px) {
  .site-nav {
    max-width: none;
    mask-image: none;
    gap: 0.5rem;
  }
  .site-nav a {
    font-size: 0.9375rem;
    padding: 0.5rem 0.85rem;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    padding: 0.65rem 0.9rem;
    gap: 0.75rem;
  }
  .site-header__menu-btn {
    display: inline-flex;
    margin-left: auto;
  }
  .site-header__right {
    position: fixed;
    top: calc(var(--header-h) + 0.55rem);
    left: 0.9rem;
    right: 0.9rem;
    z-index: 70;
    background: rgba(251, 255, 247, 0.98);
    border: 1px solid rgba(var(--brand-rgb), 0.26);
    border-radius: 16px;
    box-shadow: 0 14px 38px rgba(20, 34, 16, 0.14);
    padding: 0.9rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }
  .site-header.is-menu-open .site-header__right {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav {
    max-width: none;
    mask-image: none;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    gap: 0.2rem;
  }
  .site-nav a {
    display: block;
    padding: 0.68rem 0.75rem;
    border-radius: 12px;
  }
  .site-header__cta {
    width: 100%;
    justify-content: center;
    font-size: 0.74rem;
  }
  .site-logo__text {
    font-size: 1.05rem;
  }
  .site-header__cta--mobile-only {
    display: inline-flex !important;
  }
}

@media (min-width: 769px) {
  .site-header__cta--mobile-only {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .site-logo__text {
    display: none;
  }
}

/* ——— Layout ——— */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (max-width: 520px) {
  .wrap {
    padding: 0 1rem;
  }
}

.section {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

/* Fondo a todo el ancho: el .wrap va *dentro* del section, no en el mismo nodo */
.section--surface {
  background: var(--surface-alt);
  border-block: 1px solid rgba(var(--brand-rgb), 0.1);
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 38rem;
}

.section--about .prose-columns--about {
  margin-inline: auto;
  max-width: 56rem;
}

@media (min-width: 720px) {
  .section--about .prose-columns--about {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    align-items: start;
  }
}

.section--tight {
  padding-top: 1.5rem;
}

.hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 2rem;
}

/* Cuando un bloque usa .hero/.section junto con .wrap, preservar margen lateral */
.hero.wrap,
.section.wrap {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  /* Home: una columna — texto arriba, carrusel abajo (mejor lectura y proporción) */
  .hero__grid--home {
    grid-template-columns: 1fr;
    gap: clamp(2.25rem, 5vw, 3.25rem);
    align-items: stretch;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.5vw, 3rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.12;
  background: linear-gradient(115deg, var(--fg) 0%, var(--brand-mid) 45%, var(--brand-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.75rem, 8.4vw, 2.15rem);
    line-height: 1.16;
    margin-bottom: 0.8rem;
  }
  .hero__lead {
    font-size: 0.98rem;
  }
}

.page-hero .hero__copy {
  max-width: 40rem;
  margin-inline: auto;
}

.page-hero .hero__copy h1 {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: min(42ch, 100%);
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin: 0 0 0.75rem;
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--fg-soft);
  margin: 0 0 1.25rem;
  max-width: 48ch;
}

.hero__bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--fg);
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero__bullet-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.35);
  color: var(--brand-deep);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero__microcopy {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--fg-soft);
}

.hero__microcopy a {
  font-weight: 600;
  color: var(--brand-deep);
  text-decoration: none;
}

.hero__microcopy a:hover {
  text-decoration: underline;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 520px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn--lg {
    width: 100%;
    justify-content: center;
  }
  .hero.wrap,
  .section.wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.hero__visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, rgba(var(--brand-rgb), 0.08));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
}

.hero__visual img {
  width: min(280px, 100%);
  border-radius: 16px;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--brand-deep);
}

.section-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 640px;
}

.section-head__kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin: 0 0 0.35rem;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.section-head__lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--fg-soft);
  line-height: 1.55;
}

.section__intro {
  color: var(--fg-soft);
  max-width: 62ch;
  margin: 0 0 2rem;
}

.prose-columns {
  display: grid;
  gap: 1.25rem;
  font-size: 1.02rem;
  color: var(--fg-soft);
  line-height: 1.65;
  max-width: 72ch;
}

.prose-columns strong {
  color: var(--fg);
}

.section-footnote {
  margin: 2rem 0 0;
  font-size: 0.9375rem;
  color: var(--fg-soft);
  text-align: center;
}

.section-footnote a {
  font-weight: 600;
  color: var(--brand-deep);
  text-decoration: none;
}

.section-footnote a:hover {
  text-decoration: underline;
}

.section-footnote--spaced {
  margin-top: 2rem;
}

/* ——— Cards grid ——— */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 560px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.card-svc {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.35rem 1.25rem 1.4rem;
  padding-top: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}

.card-svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(var(--brand-rgb), 0.28);
}

.card-svc__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--brand-mid);
  opacity: 0.85;
}

.card-svc h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--brand-deep);
}

.card-svc p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--fg-soft);
  line-height: 1.55;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.35rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease), box-shadow 0.2s ease;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: #142210;
  box-shadow: 0 4px 20px rgba(var(--brand-rgb), 0.35);
}

.btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--brand-rgb), 0.4);
}

.btn--secondary {
  background: #fff;
  color: var(--brand-deep);
  border: 1px solid var(--border-strong);
}

.btn--secondary:hover:not(:disabled) {
  background: rgba(var(--brand-rgb), 0.12);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-mid);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  padding: 0.5rem 0.25rem;
}

.btn--ghost:hover:not(:disabled) {
  color: var(--brand-deep);
}

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

.btn--compact {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 0.875rem;
}

.btn--outline {
  background: transparent;
  color: var(--brand-deep);
  border: 2px solid rgba(var(--brand-rgb), 0.55);
  box-shadow: none;
}

.btn--outline:hover:not(:disabled) {
  background: rgba(var(--brand-rgb), 0.14);
  transform: translateY(-1px);
}

.btn--light {
  background: #fff;
  color: var(--brand-deep);
  border: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.btn--light:hover:not(:disabled) {
  background: #f6fff0;
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  text-transform: none;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.btn--ghost-light:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* ——— Reserva (cabecera de página interior) ——— */
.page-reserva .reserva-head {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 0 1.25rem;
}

.page-reserva .reserva-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--brand-deep);
}

.reserva-sub {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--fg-soft);
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.stepper::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.35), rgba(26, 38, 20, 0.1));
  z-index: 0;
  transform: translateY(-50%);
}

.stepper__item {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  background: #e8ece4;
  color: var(--fg-soft);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}

.stepper__item.is-done {
  background: var(--brand-mid);
  color: #fff;
}

.stepper__item.is-done .stepper__check {
  display: block;
}

.stepper__item.is-done .stepper__num {
  display: none;
}

.stepper__item.is-active {
  background: var(--brand-deep);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.45);
}

.stepper__check {
  display: none;
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 520px) {
  .stepper__item {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
}

.reserva-card {
  max-width: min(100%, 980px);
  margin: 0 auto 3rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 4vw, 2rem);
}

.reserva-card h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-mid);
  margin: 0 0 0.35rem;
}

.reserva-card .hint {
  font-size: 0.9rem;
  color: var(--fg-soft);
  margin: 0 0 1.5rem;
}

.step-panel {
  display: none;
}

.step-panel.is-active {
  display: block;
}

.reserva-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.reserva-actions--end {
  justify-content: flex-end;
}

.reserva-card--static {
  display: block;
}

.reserva-summary-dl {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.reserva-summary-dl > div {
  display: grid;
  grid-template-columns: minmax(9rem, 32%) 1fr;
  gap: 0.35rem 1.25rem;
  align-items: baseline;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.reserva-summary-dl > div:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.reserva-summary-dl dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-mid);
}

.reserva-summary-dl dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.45;
}

@media (max-width: 520px) {
  .reserva-summary-dl > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* Fields (outline style) */
.field {
  position: relative;
  margin-bottom: 1.25rem;
}

.field label {
  position: absolute;
  left: 0.85rem;
  top: -0.55rem;
  padding: 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-mid);
  background: var(--bg-card);
  z-index: 1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.95rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.25);
}

.field input.is-invalid,
.field select.is-invalid {
  border-color: var(--danger);
}

.field__help {
  font-size: 0.8rem;
  color: var(--fg-soft);
  margin: 0.35rem 0 0 0.25rem;
}

.field__error {
  font-size: 0.8rem;
  color: var(--danger);
  margin: 0.35rem 0 0 0.25rem;
  display: none;
}

/* RUT y campos sin data-err-for */
.field input.is-invalid ~ .field__error:not([data-err-for]),
.field select.is-invalid ~ .field__error:not([data-err-for]) {
  display: block;
}

.field__error[data-err-for].is-visible {
  display: block;
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .field-row--2 {
    grid-template-columns: 1fr 1fr;
  }

}

.financiador-field {
  max-width: 22rem;
  margin-left: auto;
}

.phone-wrap {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-wrap:focus-within {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.25);
}

.phone-wrap.is-invalid {
  border-color: var(--danger);
}

.phone-wrap__cc {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.65rem;
  background: rgba(var(--brand-rgb), 0.12);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-deep);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.phone-wrap input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
  padding: 0.95rem 0.85rem;
  font-size: 0.9375rem;
}

.field--block {
  margin-bottom: 1.25rem;
}

/* Segment toggle */
.segment {
  display: flex;
  padding: 4px;
  background: #e8ece4;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  gap: 4px;
}

.segment button {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-soft);
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.segment button.is-active {
  background: #fff;
  color: var(--fg);
  box-shadow: var(--shadow-soft);
}

/* Chips */
.chips-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg-soft);
  margin-bottom: 0.5rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.chip {
  border: 1px solid var(--border);
  background: #f4f7f1;
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--fg-soft);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.chip.is-active {
  background: rgba(var(--brand-rgb), 0.22);
  border-color: var(--brand-mid);
  color: var(--brand-deep);
}

.chip.is-active::before {
  content: "✓ ";
  font-weight: 700;
}

.address-box {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(var(--brand-rgb), 0.12);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  font-size: 0.875rem;
  color: var(--fg-soft);
  margin-bottom: 1rem;
}

.address-box strong {
  color: var(--brand-deep);
}

.suggest-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 8px);
  z-index: 10;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.suggest-list__item {
  width: 100%;
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 0.72rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--fg);
  cursor: pointer;
}

.suggest-list__item:last-child {
  border-bottom: none;
}

.suggest-list__item:hover,
.suggest-list__item:focus-visible {
  background: rgba(var(--brand-rgb), 0.12);
  outline: none;
}

.suggest-list__empty {
  margin: 0;
  padding: 0.72rem 0.85rem;
  color: var(--fg-soft);
  font-size: 0.92rem;
}

.share-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .share-mobile-only {
    display: inline-flex;
  }
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--fg-soft);
  margin: 0.5rem 0 0;
}

.modal-hours {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.modal-hours__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 30, 23, 0.45);
}

.modal-hours__card {
  position: relative;
  width: min(94vw, 940px);
  max-height: 88vh;
  overflow: auto;
  margin: 5vh auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(20, 34, 16, 0.25);
  padding: 1rem 1rem 1.1rem;
}

.modal-hours__close {
  position: absolute;
  top: 0.45rem;
  right: 0.65rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--fg-soft);
  cursor: pointer;
}

.modal-hours__content {
  display: grid;
  gap: 1rem;
}

.modal-hours__slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.45rem;
}

.modal-terms__card {
  display: flex;
  flex-direction: column;
  width: min(96vw, 980px);
  max-height: 92vh;
  overflow: hidden;
}

.modal-terms__card h3 {
  margin: 0 2rem 0.65rem 0;
  font-size: 1.05rem;
  color: var(--brand-deep);
}

.modal-terms__frame {
  flex: 1;
  width: 100%;
  min-height: min(72vh, 760px);
  border: 0;
  border-radius: var(--radius-md);
  background: #525659;
}

.checkbox-field input {
  margin-top: 0.2rem;
  accent-color: var(--brand-mid);
}

/* Step 4 */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.toolbar .tag {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-deep);
  background: rgba(var(--brand-rgb), 0.18);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

.date-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  scrollbar-width: thin;
}

.date-strip--week {
  align-items: stretch;
}

.date-nav-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--fg-soft);
  border-radius: var(--radius-md);
  min-width: 36px;
  padding: 0.55rem 0.4rem;
  font-weight: 700;
  cursor: pointer;
}

.date-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.date-pill {
  flex: 0 0 auto;
  min-width: 92px;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.date-pill small {
  display: block;
  opacity: 0.75;
  font-size: 0.72rem;
}

.date-pill.is-active {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 2px rgba(var(--brand-rgb), 0.35);
}

.date-pill.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.date-pill.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.location-bar {
  font-size: 0.875rem;
  color: var(--fg-soft);
  margin-bottom: 1rem;
}

.location-bar strong {
  color: var(--brand-deep);
}

.pro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .pro-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pro-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: #fafcf8;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pro-card__top {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.pro-card img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: #e8ece4;
}

.pro-card h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.25;
}

.pro-card .spec {
  font-size: 0.78rem;
  color: var(--fg-soft);
  margin: 0.15rem 0 0;
}

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.slot-btn {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  color: var(--fg);
}

.slot-btn:hover:not(:disabled) {
  border-color: var(--brand-mid);
}

.slot-btn.is-busy {
  background: rgba(var(--brand-rgb), 0.25);
  border-style: dashed;
  color: var(--brand-deep);
  cursor: not-allowed;
}

.slot-btn.is-picked {
  background: var(--brand);
  border-color: var(--brand-mid);
  color: #142210;
}

/* Step 5 summary */
.summary-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #fff, rgba(var(--brand-rgb), 0.06));
  margin: 1rem 0 0;
}

.summary-box .cal {
  width: 72px;
  text-align: center;
  background: #f0f4ec;
  border-radius: 10px;
  padding: 0.5rem;
  font-size: 0.75rem;
  color: var(--fg-soft);
  flex-shrink: 0;
}

.summary-box .cal strong {
  display: block;
  font-size: 1.35rem;
  color: var(--brand-deep);
}

.summary-lines {
  font-size: 0.875rem;
  color: var(--fg-soft);
  line-height: 1.5;
}

.summary-lines strong {
  color: var(--fg);
}

/* Franja confianza (marketing / prueba social ligera) */
.trust-strip {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #fff 0%, rgba(var(--brand-rgb), 0.08) 100%);
  border-block: 1px solid rgba(var(--brand-rgb), 0.15);
  padding: clamp(1.5rem, 4vw, 2.25rem) 0;
  margin-top: -0.5rem;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 680px) {
  .trust-strip__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.trust-strip__item {
  margin: 0;
  padding: 0 0.25rem;
}

.trust-strip__num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--brand-mid);
  margin-bottom: 0.35rem;
}

.trust-strip__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.35rem;
}

.trust-strip__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--fg-soft);
  line-height: 1.5;
}

/* CTA conversión antes del mapa */
.cta-strip {
  background: linear-gradient(135deg, var(--brand-deep) 0%, #2d4a1f 48%, var(--brand-mid) 100%);
  color: #fff;
  padding: clamp(2rem, 5vw, 3rem) 0;
  margin: 0;
}

.cta-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 720px) {
  .cta-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cta-strip__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #fff;
}

.cta-strip__copy p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.92;
  max-width: 42ch;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .cta-strip__actions {
    width: 100%;
    flex-direction: column;
  }
  .cta-strip__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Footer site */
.site-footer {
  border-top: 1px solid rgba(var(--brand-rgb), 0.18);
  padding: 0;
  margin-top: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #e8f0e0 100%);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 1.25rem 1.75rem;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.site-footer__tagline {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--fg-soft);
  max-width: 28ch;
}

.site-footer__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 0.65rem;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.site-footer__col a {
  color: var(--fg-soft);
  text-decoration: none;
  font-weight: 500;
}

.site-footer__col a:hover {
  color: var(--brand-deep);
  text-decoration: underline;
}

.site-footer__bar {
  padding: 1rem 1.25rem 1.75rem;
  border-top: 1px solid rgba(var(--brand-rgb), 0.12);
  font-size: 0.8125rem;
  color: var(--fg-soft);
  text-align: center;
}

.site-footer__bar a {
  color: var(--brand-mid);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__bar a:hover {
  text-decoration: underline;
  color: var(--brand-deep);
}

.site-footer__credit {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--fg-soft);
  opacity: 0.9;
}

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

/* ——— Home: hero enriquecido, carrusel, mapa, WhatsApp ——— */
.page-home .hero {
  position: relative;
  /* No usar overflow:hidden aquí: recorta el carrusel, sombras y el grid en la columna derecha */
  overflow: visible;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.45;
  animation: hero-blob 14s ease-in-out infinite;
}

.hero__blob--1 {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.55), transparent 65%);
  top: -15%;
  right: -10%;
  animation-delay: 0s;
}

.hero__blob--2 {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  background: radial-gradient(circle, rgba(90, 138, 50, 0.35), transparent 70%);
  bottom: -5%;
  left: -8%;
  animation-delay: -4s;
}

@keyframes hero-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4%, -3%) scale(1.06);
  }
}

.hero__grid--home {
  position: relative;
  z-index: 1;
}

/* Evita que la columna del carrusel “rompa” el ancho del grid y quede recortada */
.hero__grid--home > * {
  min-width: 0;
}

/* Carrusel bajo el texto del hero, ancho contenido */
.hero__carousel {
  width: 100%;
  max-width: min(920px, 100%);
  margin-inline: auto;
  margin-top: 0.25rem;
}

.carousel--hero {
  margin-top: 0;
}

.carousel--hero .carousel__viewport {
  border-radius: 26px;
  border: 1px solid rgba(var(--brand-rgb), 0.38);
  box-shadow:
    0 22px 56px rgba(34, 58, 24, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset;
  background: #141a12;
}

.carousel--hero .carousel__dots {
  margin-top: 0.85rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.carousel {
  position: relative;
  margin-top: 0.5rem;
}

.carousel__viewport {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  background: #111;
}

.carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1c2219;
}

/* Fondo: misma imagen en cover + blur para rellenar sin franjas blancas */
.carousel__slide-layers {
  position: absolute;
  inset: 0;
}

.carousel__slide-blur {
  position: absolute;
  inset: -4px;
  overflow: hidden;
}

.carousel__slide-blur img {
  position: absolute;
  width: 125%;
  height: 125%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: blur(44px) saturate(1.1) brightness(0.9);
  pointer-events: none;
}

/* Primer plano: imagen nítida centrada (proporción original) */
.carousel__slide-sharp {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: clamp(0.25rem, 1.5vw, 0.75rem);
}

/*
 * Borde suave: máscara en degradado para fundir la imagen nítida con el blur
 * (evita el “marco” duro a los lados; el elipse suaviza también arriba/abajo si hay bandas).
 */
.carousel__slide-sharp img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  /* Degradado suave solo en los costados (menos “halo” que el radial completo) */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  filter: drop-shadow(0 6px 32px rgba(0, 0, 0, 0.12));
}

.carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.carousel__cta {
  position: absolute;
  left: 1.1rem;
  bottom: 3.4rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.28rem;
  border-radius: 999px;
  border: 1px solid rgba(186, 244, 133, 0.9);
  background: linear-gradient(135deg, rgba(95, 171, 49, 0.98), rgba(62, 133, 26, 0.98));
  color: #f8fff0;
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  backdrop-filter: blur(2px);
  box-shadow: 0 10px 28px rgba(33, 76, 12, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.carousel__cta--left {
  left: 1.1rem;
  right: auto;
}

.carousel__cta--center {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.carousel__cta--right {
  left: auto;
  right: 1.1rem;
}

.carousel__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(33, 76, 12, 0.45);
  filter: saturate(1.1);
}

.carousel__cta--center:hover {
  transform: translateX(-50%) translateY(-2px) scale(1.02);
}

.carousel__cta::after {
  content: "→";
  margin-left: 0.5rem;
  font-size: 1.02em;
}

@media (max-width: 768px) {
  .carousel__cta {
    left: 0.8rem;
    right: auto;
    bottom: 3rem;
    padding: 0.66rem 1.04rem;
    font-size: 0.9rem;
  }
  .carousel__cta--left {
    left: 0.8rem;
    right: auto;
  }
  .carousel__cta--center {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .carousel__cta--right {
    left: auto;
    right: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__slide-blur img {
    filter: blur(22px) saturate(1.05) brightness(0.9);
  }
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-deep);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel__btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.carousel__btn--prev {
  left: 0.65rem;
}

.carousel__btn--next {
  right: 0.65rem;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 38, 20, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.carousel__dot.is-active {
  background: var(--brand-mid);
  transform: scale(1.25);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  background: #e8ece4;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: min(420px, 60vh);
  border: 0;
}

.map-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(18, 140, 60, 0.45);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 36px rgba(18, 140, 60, 0.55);
  color: #fff;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.card-svc__thumb {
  height: 150px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(var(--brand-rgb), 0.2), rgba(255, 255, 255, 0.9));
  border: 1px dashed rgba(var(--brand-rgb), 0.35);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: 0.04em;
  overflow: hidden;
}

.card-svc__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-svc__thumb--empty {
  background: linear-gradient(145deg, rgba(var(--brand-rgb), 0.14), rgba(255, 255, 255, 0.92));
}

.card-svc__price {
  margin-top: 0.65rem;
  font-weight: 700;
  color: var(--brand-deep);
}

@media (max-width: 640px) {
  .carousel__btn {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

/* Orden visual mobile: márgenes y componentes */
@media (max-width: 768px) {
  .page-home .hero {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .hero__grid {
    gap: 1.35rem;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__lead {
    margin-bottom: 1rem;
  }

  .hero__bullets {
    margin-bottom: 1.1rem;
    gap: 0.4rem;
  }

  .hero__actions {
    gap: 0.65rem;
  }

  .btn--lg {
    padding: 0.88rem 1.1rem;
  }

  .hero__microcopy {
    margin-top: 0.75rem;
    font-size: 0.95rem;
  }

  .hero__carousel {
    margin-top: 0.5rem;
  }

  .carousel--hero .carousel__viewport {
    border-radius: 18px;
  }

  .carousel__caption {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }

  .trust-strip {
    padding: 1.2rem 0;
  }

  .trust-strip__inner {
    gap: 1rem;
  }

  .section {
    padding: 2.25rem 0;
  }

  .section-head {
    margin-bottom: 1.3rem;
  }

  .section-head__lead {
    font-size: 0.98rem;
  }

  .cards {
    gap: 0.8rem;
  }

  .card-svc {
    padding: 1rem;
    padding-top: 1.35rem;
  }

  .card-svc__thumb {
    height: 132px;
    margin-bottom: 0.65rem;
  }

  .map-wrap {
    border-radius: 16px;
    min-height: 260px;
  }

  .map-wrap iframe {
    height: min(320px, 50vh);
  }

  .map-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .map-actions .btn {
    width: 100%;
  }

  .cta-strip {
    padding: 1.6rem 0;
  }

  .cta-strip__copy p {
    font-size: 0.95rem;
  }

  .site-footer__grid {
    gap: 1.3rem;
    padding-top: 2rem;
    padding-bottom: 1.35rem;
  }

  .site-footer__bar {
    padding-top: 0.85rem;
    padding-bottom: 1.25rem;
  }

  .wa-float {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 420px) {
  .hero__bullet-icon {
    width: 1.1rem;
    height: 1.1rem;
    font-size: 0.66rem;
  }

  .section {
    padding: 2rem 0;
  }

  .card-svc h3 {
    font-size: 1rem;
  }

  .card-svc p {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .card-svc:hover {
    transform: none;
  }
  .btn--primary:hover:not(:disabled) {
    transform: none;
  }
  .hero__blob {
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .carousel__track {
    transition: none;
  }
}
