:root {
  --green: #1a7a4a;
  --green-dark: #145f3a;
  --green-light: #e8f5ee;
  --yellow: #ffc72c;
  --yellow-dark: #e6a800;
  --ink: #1c2430;
  --soft-ink: #4a5568;
  --muted: #6b7280;
  --white: #ffffff;
  --line: rgba(28, 36, 48, 0.1);
  --shadow: 0 18px 50px rgba(20, 40, 60, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --font-brand: "Plus Jakarta Sans", "Source Sans 3", "Segoe UI", sans-serif;
  --content-width: 1180px;
  --content-gutter: clamp(16px, 4vw, 32px);
  --header-offset: 150px;
  --scroll-gap: 2rem;
  --section-pad: clamp(48px, 8vw, 72px);
  --bg-page: #f4f6f8;
  --bg-surface: #f0f5f2;
  --bg-muted: #e8eef3;
  --bg-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + var(--scroll-gap));
}

[id] {
  scroll-margin-top: calc(var(--header-offset) + var(--scroll-gap));
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg-page);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

/* Header — estilo DHL: topbar + menú centrados a ancho completo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 4px 24px rgba(20, 50, 35, 0.12);
}

.header-topbar {
  width: 100%;
  background: var(--green);
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  min-height: 104px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  color: var(--white);
}

.brand img,
.brand-mark {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.brand img {
  display: block;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-weight: 800;
  font-size: 1.25rem;
}

.brand img:not([hidden]) + .brand-mark {
  display: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  max-width: min(420px, 42vw);
}

.brand-name {
  font-family: var(--font-brand);
  font-size: clamp(1.45rem, 3.8vw, 2.35rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.brand-zone {
  font-size: clamp(0.82rem, 1.5vw, 0.98rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.header-utils {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 28px);
  margin-left: auto;
}

.header-util {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.header-util:hover {
  color: var(--white);
}

.header-util .nav-icon {
  stroke: currentColor;
}

.header-hours {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.header-util-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink) !important;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lang-switch {
  --lang-pad: 4px;
  --lang-slot: 42px;
  position: relative;
  display: inline-grid;
  grid-template-columns: var(--lang-slot) var(--lang-slot);
  align-items: center;
  flex-shrink: 0;
  padding: var(--lang-pad);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12);
}

.lang-switch-thumb {
  position: absolute;
  top: var(--lang-pad);
  left: var(--lang-pad);
  z-index: 0;
  width: var(--lang-slot);
  height: calc(100% - var(--lang-pad) * 2);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.lang-switch.lang-switch--ca .lang-switch-thumb {
  transform: translateX(100%);
}

.lang-switch:not(.is-ready) .lang-switch-thumb {
  transition: none;
}

.lang-switch button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--lang-slot);
  height: 34px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease;
}

.lang-switch button:hover:not(.is-active) {
  color: var(--white);
}

.lang-switch button.is-active {
  color: var(--green-dark);
}

.lang-switch button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.header-util-cta:hover {
  background: var(--yellow-dark);
  color: var(--ink) !important;
}

.header-util-cta .nav-icon {
  stroke: var(--ink);
}

.header-nav-bar {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(4px, 1.5vw, 28px);
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--green);
  transition:
    left 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.site-nav:not(.is-ready) .nav-indicator {
  transition: none;
}

.site-nav a {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 6px 12px;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
}

.site-nav a.is-active {
  color: var(--green);
  font-weight: 600;
}

.site-nav a.is-active .nav-icon {
  stroke: var(--green);
}

.nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.menu-button {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 72vh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: visible;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 50, 35, 0.35) 0%,
    rgba(20, 50, 35, 0.55) 45%,
    rgba(20, 50, 35, 0.82) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
}

.hero-quote {
  max-width: 720px;
  color: var(--white);
}

.hero-quote h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 24px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.5;
  opacity: 0.95;
  max-width: 580px;
}

.quote-bar {
  display: flex;
  max-width: 640px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-bar input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 16px 18px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
}

.quote-bar input::placeholder {
  color: #9ca3af;
}

.quote-bar input:focus {
  outline: none;
}

.quote-submit {
  flex-shrink: 0;
  border: 0;
  padding: 16px 22px;
  background: var(--yellow);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.quote-submit:hover {
  background: var(--yellow-dark);
}

.quote-submit:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Quick cards */
.quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  margin-top: clamp(28px, 4vw, 40px);
}

.quick-card {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid rgba(28, 36, 48, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(20, 40, 60, 0.16);
}

.quick-card.highlight {
  position: relative;
  overflow: hidden;
}

.quick-card.highlight::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 36px 36px 0;
  border-color: transparent var(--yellow) transparent transparent;
}

.quick-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
}

.quick-icon svg {
  width: 22px;
  height: 22px;
}

.quick-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.quick-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin: clamp(24px, 4vw, 40px) auto 0;
  padding-bottom: 48px;
  position: relative;
  z-index: 2;
}

.trust-strip article {
  padding: 20px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  font-size: 1.35rem;
  color: var(--green);
  line-height: 1.2;
}

.trust-strip span {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.section-lead {
  margin: 0 auto;
  max-width: 58ch;
  color: var(--soft-ink);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Galería 3 fotos — sin repetir imágenes del hero/promo */
.visual-trio {
  padding-top: clamp(32px, 5vw, 48px);
}

.visual-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.5vw, 22px);
}

.visual-trio-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visual-trio-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.visual-trio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-trio-card:hover .visual-trio-media img {
  transform: scale(1.05);
}

.visual-trio-card figcaption {
  padding: 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  text-align: center;
}

/* Promo band */
.promo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin: 0 auto clamp(40px, 6vw, 56px);
  background: var(--green-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.promo-band--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.promo-band--reverse .promo-visual {
  order: 2;
}

.promo-band--reverse .promo-copy {
  order: 1;
}

.promo-visual {
  min-height: 280px;
  background: var(--green-light);
}

.promo-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.promo-copy {
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.promo-copy p {
  margin: 0 0 22px;
  color: var(--soft-ink);
}

/* Sections */
.section {
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--section-pad) 0 clamp(40px, 6vw, 56px);
}

.section--surface {
  width: 100%;
  max-width: none;
  background: var(--bg-surface);
  border-block: 1px solid rgba(28, 36, 48, 0.05);
}

.section--muted {
  width: 100%;
  max-width: none;
  background: var(--bg-muted);
  border-block: 1px solid rgba(28, 36, 48, 0.05);
}

.section--plain {
  width: 100%;
  max-width: none;
  background: var(--bg-white);
  border-block: 1px solid rgba(28, 36, 48, 0.04);
}

.section--surface > *,
.section--muted > *,
.section--plain > * {
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.section:first-of-type {
  padding-top: 56px;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.85);
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

/* Services */
.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(26, 122, 74, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(255, 199, 44, 0.06), transparent 50%);
  pointer-events: none;
}

.services > * {
  position: relative;
  z-index: 1;
}

.services .section-heading {
  margin-bottom: 40px;
}

.services-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: clamp(14px, 2vw, 20px);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 32px rgba(20, 40, 60, 0.07);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(26, 122, 74, 0.04), transparent 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(26, 122, 74, 0.28);
  box-shadow: 0 18px 44px rgba(26, 122, 74, 0.14);
  transform: translateY(-3px);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card--featured {
  grid-row: 1 / -1;
  grid-column: 1;
  justify-content: flex-start;
  min-height: 100%;
  background: linear-gradient(155deg, var(--green) 0%, #166b42 48%, var(--green-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 24px 56px rgba(26, 122, 74, 0.32);
}

.service-card--featured:hover {
  box-shadow: 0 28px 64px rgba(26, 122, 74, 0.38);
}

.service-card-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.22), transparent 68%);
  pointer-events: none;
}

.service-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 199, 44, 0.95);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--green-light);
  color: var(--green);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card--featured .service-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.service-card--featured .service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  line-height: 1.25;
}

.service-card--featured h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.service-card p {
  margin: 0;
  flex-grow: 1;
  font-size: 0.96rem;
  color: var(--soft-ink);
  line-height: 1.6;
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
}

.service-highlights {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-highlights li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-stat {
  margin-top: 14px !important;
  flex-grow: 0 !important;
  font-size: 0.88rem !important;
  font-weight: 800;
  color: var(--green) !important;
  letter-spacing: 0.02em;
}

.service-card--wide {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 12px 20px;
  align-items: start;
  background: linear-gradient(180deg, var(--white) 0%, #f8faf9 100%);
}

.service-card--wide .service-icon {
  grid-row: 1 / -1;
  margin-bottom: 0;
}

.service-card--wide .service-card-body {
  grid-column: 2;
}

.service-card--wide .service-zones {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-zones li {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Coverage */
.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.coverage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 40px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.coverage-copy p {
  color: var(--soft-ink);
  margin: 0 0 24px;
}

.coverage-map {
  padding: clamp(24px, 4vw, 32px);
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(26, 122, 74, 0.25);
  color: var(--white);
}

.coverage-map-label {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

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

.zone-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--green-light);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--ink);
}

.zone-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

/* Zonas sobre panel verde — pills claras, hover legible */
.zone-list--map {
  gap: 12px;
}

.coverage-map .zone-list--map li {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-size: 0.98rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.coverage-map .zone-list--map li::before {
  color: var(--green);
}

.coverage-map .zone-list--map li:hover {
  background: var(--white);
  border-color: var(--yellow);
  color: var(--green-dark);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  transform: translateX(4px);
}

.coverage-map .zone-list--map li:hover::before {
  color: var(--green-dark);
}

.zone-list--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* Advantages */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.advantage-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(20, 40, 60, 0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.advantage-grid article:hover {
  border-color: rgba(26, 122, 74, 0.25);
  box-shadow: 0 14px 36px rgba(26, 122, 74, 0.1);
  transform: translateY(-3px);
}

.adv-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green-light) 0%, #dceee4 100%);
  color: var(--green);
}

.adv-icon svg {
  width: 26px;
  height: 26px;
}

.adv-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
}

.advantage-grid p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.95rem;
}

/* Contacto */
.cta {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: var(--section-pad) 0 clamp(64px, 8vw, 88px);
  background: var(--bg-muted);
  border-block: 1px solid rgba(28, 36, 48, 0.05);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 400px);
  align-items: stretch;
  gap: 0;
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(20, 40, 60, 0.14);
}

.cta-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: none;
}

.cta-panel--photo {
  min-height: 0;
}

.cta-panel--photo .cta-panel-media {
  position: absolute;
  inset: 0;
}

.cta-panel--photo .cta-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}

.cta-panel--photo .cta-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(20, 50, 35, 0.94) 0%,
    rgba(26, 122, 74, 0.82) 42%,
    rgba(20, 50, 35, 0.88) 100%
  );
}

.cta-panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  margin: 0 0 24px;
  opacity: 0.92;
}

.contact-details {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.98rem;
}

.contact-details a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details a:hover {
  color: var(--yellow);
}

.contact-details span {
  opacity: 0.85;
}

.contact-details address {
  font-style: normal;
  line-height: 1.5;
  opacity: 0.92;
}

.footer-contact {
  margin: 0;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--green);
  font-weight: 700;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.accent,
.button.primary {
  background: var(--yellow);
  color: var(--ink);
}

.button.accent:hover,
.button.primary:hover {
  background: var(--yellow-dark);
}

.button.outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: transparent;
}

.button.outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.full {
  width: 100%;
}

/* Form */
.contact-form {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(28px, 4vw, 36px);
  background: var(--white);
  border: none;
  border-left: 1px solid rgba(28, 36, 48, 0.08);
  border-radius: 0;
  box-shadow: none;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--soft-ink);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fafbfc;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(26, 122, 74, 0.2);
  border-color: var(--green);
  background: var(--white);
}

/* Footer */
.site-footer {
  margin-top: 48px;
  background: #1a1f26;
  color: rgba(255, 255, 255, 0.88);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr minmax(210px, 1.15fr);
  gap: clamp(28px, 4vw, 48px);
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 48px 0 32px;
}

.footer-col p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand span {
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.footer-brand img {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
}

.footer-col-brand p {
  margin-bottom: 14px;
}

.footer-link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link-more:hover {
  color: var(--white);
}

.footer-col h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}

.footer-col h3 + h3 {
  margin-top: 22px;
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-col-office {
  min-width: 0;
}

.footer-address {
  margin: 0 0 12px;
}

.footer-address a {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
  text-decoration: none;
}

.footer-address-line {
  display: block;
}

.footer-address-city {
  text-wrap: pretty;
}

.footer-address a:hover {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-address + h3 {
  margin-top: 40px;
}

.footer-hours {
  display: grid;
  gap: 10px;
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer-hours-line {
  display: block;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

/* WhatsApp float */
.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.float-whatsapp:hover {
  transform: scale(1.06);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

.contact-details li span {
  opacity: 0.92;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1100px) and (min-width: 641px) {
  .visual-trio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .visual-trio-media {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 132px;
  }

  .header-hours {
    display: none;
  }

  .hero-media img {
    object-position: 50% 40%;
  }

  .promo-band--reverse {
    grid-template-columns: 1fr;
  }

  .promo-band--reverse .promo-visual,
  .promo-band--reverse .promo-copy {
    order: unset;
  }

  .visual-trio-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .header-topbar-inner {
    width: min(var(--content-width), calc(100% - 24px));
    padding: 12px 0;
  }

  .header-utils {
    display: none;
  }

  .lang-switch {
    margin-left: auto;
    margin-right: 8px;
  }

  .menu-button {
    display: block;
  }

  .header-nav-bar {
    display: none;
  }

  body.nav-open .header-nav-bar {
    display: block;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: min(var(--content-width), calc(100% - 24px));
    padding: 10px 0 14px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-indicator {
    display: none;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .site-nav a.is-active {
    color: var(--green-dark);
    box-shadow: inset 3px 0 0 var(--green);
  }

  .quick-cards {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .trust-strip {
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-band,
  .coverage-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .services-bento {
    grid-template-columns: 1fr 1fr;
  }

  .service-card--featured {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .service-card--wide {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .service-card--wide .service-icon {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .quote-bar {
    flex-direction: column;
  }

  .quote-submit {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding-top: 36px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 118px;
  }

  .hero {
    min-height: clamp(460px, 88svh, 620px);
  }

  .hero-inner {
    width: min(var(--content-width), calc(100% - 20px));
    padding-bottom: 24px;
  }

  .hero-media img {
    object-position: 42% 35%;
  }

  .trust-strip {
    width: min(var(--content-width), calc(100% - 20px));
    padding-bottom: 32px;
  }

  .promo-band,
  .section {
    width: min(var(--content-width), calc(100% - 20px));
  }

  .cta-layout {
    width: min(var(--content-width), calc(100% - 20px));
  }

  .zone-list--grid,
  .zone-list--map {
    grid-template-columns: 1fr;
  }

  .service-card:hover,
  .advantage-grid article:hover {
    transform: none;
  }

  .float-whatsapp {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
  }

  .brand {
    gap: 12px;
  }

  .brand img,
  .brand-mark {
    width: 76px;
    height: 76px;
  }

  .brand-text {
    max-width: min(220px, 52vw);
  }

  .brand-name {
    font-size: clamp(1.2rem, 5.5vw, 1.55rem);
    line-height: 0.98;
  }

  .brand-zone {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .footer-brand span {
    font-size: 1.15rem;
  }

  .trust-strip,
  .services-bento {
    grid-template-columns: 1fr;
  }

  .service-card--featured,
  .service-card--wide {
    grid-column: 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Páginas legales */
.legal-body {
  background: #f4f6f8;
}

.legal-body .site-header {
  margin-bottom: 0;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: clamp(220px, 34vw, 340px);
}

.legal-hero-media {
  position: absolute;
  inset: -24px;
}

.legal-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: blur(6px);
  transform: scale(1.08);
}

.legal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 50, 35, 0.55) 0%,
    rgba(20, 50, 35, 0.82) 45%,
    rgba(20, 50, 35, 0.92) 100%
  );
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) 0;
  text-align: center;
}

.legal-hero h1 {
  margin: 0 0 10px;
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.legal-hero-domain {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-hero-domain a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-hero-domain a:hover {
  color: var(--white);
}

.legal-page {
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 48px 0 64px;
}

.legal-page-full {
  padding-top: 28px;
}

.legal-document {
  display: grid;
  gap: 20px;
}

.legal-page h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
}

.legal-page .legal-intro {
  margin: 0 0 28px;
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.legal-page .legal-box {
  padding: clamp(22px, 4vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.legal-page .legal-box p,
.legal-box ul {
  margin: 0 0 16px;
  color: var(--soft-ink);
  line-height: 1.65;
}

.legal-box h2 {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  color: var(--green-dark);
}

.legal-box h3 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  color: var(--ink);
}

.legal-toc-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--green-light) 100%);
}

.legal-toc {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 8px;
}

.legal-toc a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-toc a:hover {
  color: var(--green-dark);
}

.legal-data-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.legal-data-list li {
  padding: 12px 16px;
  background: var(--green-light);
  border-radius: var(--radius);
  color: var(--ink);
  line-height: 1.5;
}

.legal-data-list a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 8px 4px 0;
}

.legal-related a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-link-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.legal-link-list li {
  padding: 12px 16px;
  background: var(--green-light);
  border-radius: var(--radius);
  line-height: 1.5;
  word-break: break-word;
}

.legal-link-list a {
  color: var(--green);
  font-weight: 700;
}

.legal-box ul {
  padding-left: 1.2rem;
}

.legal-box li {
  margin-bottom: 6px;
}

.legal-box p:last-child,
.legal-box ul:last-child {
  margin-bottom: 0;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 640px) {
  .legal-hero-media img {
    filter: blur(4px);
  }

  .legal-related {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .legal-hero-media img {
    filter: blur(3px);
    transform: none;
  }
}

.legal-back:hover {
  color: var(--green-dark);
}

.legal-sitemap {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.legal-sitemap a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-box a {
  color: var(--green);
  font-weight: 700;
}

.site-footer-mini {
  margin-top: 0;
}

.site-footer-mini .footer-bottom {
  border-top: 0;
}

.site-footer-mini .footer-bottom a {
  color: var(--yellow);
  font-weight: 700;
}

/* Accesibilidad */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--soft-ink);
  line-height: 1.45;
}

.form-consent input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.form-consent a {
  color: var(--green);
  text-decoration: underline;
}

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

.form-status {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-status--success {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(26, 122, 74, 0.25);
}

.form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid rgba(153, 27, 27, 0.2);
}

.contact-form .button[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* Banner cookies */
.cookie-banner {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  right: auto;
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  width: min(400px, calc(100vw - 32px));
  max-width: 400px;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(26, 122, 74, 0.18);
  box-shadow: 0 20px 50px rgba(20, 50, 35, 0.16);
  overflow: hidden;
  animation: cookie-slide-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--yellow) 100%);
}

.cookie-banner[hidden] {
  display: none !important;
  animation: none;
}

@keyframes cookie-slide-in {
  from {
    opacity: 0;
    transform: translate(-10px, 18px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.cookie-banner-inner {
  padding: 22px 22px 20px;
}

.cookie-banner h2 {
  margin: 0 0 10px;
  padding-top: 4px;
  color: var(--green-dark);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
}

.cookie-banner p {
  margin: 0 0 18px;
  color: var(--soft-ink);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-banner p a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner p a:hover {
  color: var(--green-dark);
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(26, 122, 74, 0.35);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-dark);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-btn:hover {
  background: var(--green-light);
  border-color: rgba(26, 122, 74, 0.45);
}

.cookie-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* FAQ SEO */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(20, 40, 60, 0.05);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(26, 122, 74, 0.28);
  box-shadow: 0 12px 32px rgba(26, 122, 74, 0.1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: 18px 20px;
  list-style: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-item summary:hover {
  color: var(--green);
  background: var(--green-light);
}

.faq-item.is-open summary {
  color: var(--green-dark);
  background: var(--green-light);
}

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

.faq-item summary::after {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  content: "+";
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease;
}

.faq-item.is-open summary::after {
  content: "−";
  transform: rotate(180deg);
  background: var(--green);
  color: var(--white);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--soft-ink);
  line-height: 1.65;
}

/* Animaciones */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

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

.reveal-stagger .reveal-child {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible .reveal-child:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.is-visible .reveal-child:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger.is-visible .reveal-child:nth-child(3) {
  transition-delay: 0.19s;
}
.reveal-stagger.is-visible .reveal-child:nth-child(4) {
  transition-delay: 0.26s;
}

.promo-band.reveal.is-visible .promo-visual {
  animation: reveal-slide-left 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.promo-band.reveal.is-visible .promo-copy {
  animation: reveal-slide-right 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.promo-band--reverse.reveal.is-visible .promo-visual {
  animation: reveal-slide-right 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.promo-band--reverse.reveal.is-visible .promo-copy {
  animation: reveal-slide-left 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes reveal-slide-left {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes reveal-slide-right {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-hero,
  .reveal-stagger .reveal-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .promo-band.reveal.is-visible .promo-visual,
  .promo-band.reveal.is-visible .promo-copy {
    animation: none !important;
  }

  .faq-answer,
  .faq-answer-inner {
    transition: none;
  }

  .faq-item summary::after {
    transition: none;
  }

  .faq-item.is-open .faq-answer-inner {
    transition-delay: 0s;
  }

  .lang-switch-thumb,
  .nav-indicator {
    transition: none !important;
  }

  .cookie-banner {
    animation: none;
  }
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom, 12px));
    width: min(360px, calc(100vw - 24px));
  }

  .cookie-banner-inner {
    padding: 18px 18px 16px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }
}
