:root {
  --brand-purple: #3C23D7;
  --brand-blue: #3D68F6;
  --primary: #3D68F6;
  --page-bg: #f0f4ff;
  --hero-bg: #dde5ff;
  --surface: #ffffff;
  --text: #1f2937;
  --text-muted: #5b6472;
  --border: rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --radius-sm: 14px;
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 8px 32px rgba(60, 35, 215, 0.08);
  --shadow-btn: 0 10px 28px rgba(60, 35, 215, 0.22);
  --max: 920px;
  --max-wide: 1140px;
  --strip-bg-gray: #f5f7fa;
  --strip-bg-white: #ffffff;
  --strip-text-muted: #6b7280;
  --body-size: 1.0625rem;
  --heading-size: clamp(1.5rem, 2.8vw, 2.05rem);
}

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

html { scroll-behavior: smooth; font-size: 19px; }

body {
  font-family: var(--font);
  background: var(--page-bg);
  color: var(--text);
  font-size: var(--body-size);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-purple); }

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0.75rem;
  z-index: 50;
  margin: 0.75rem auto 0;
  width: min(100% - 1.5rem, calc(var(--max) + 80px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.site-nav .logo img { height: 34px; width: auto; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

.container-wide {
  width: min(100% - 2rem, var(--max-wide));
  margin-inline: auto;
}

/* Landing-style header (mandafacilusa.com) */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 72px;
  overflow: visible;
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.landing-logo img { height: 36px; width: auto; }

.landing-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 1.35rem);
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.landing-nav a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.88rem, 1.15vw, 1.02rem);
  white-space: nowrap;
}

.landing-nav a:hover { text-decoration: underline; }

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid rgba(45, 74, 154, 0.2);
  background: #fff;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-switch:hover {
  border-color: var(--brand-purple);
  box-shadow: 0 2px 8px rgba(45, 74, 154, 0.12);
}

.lang-switch-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.landing-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.88rem, 1.1vw, 1.02rem);
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.landing-nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 34px rgba(60, 35, 215, 0.28);
}

.landing-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
}

.landing-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
}

/* Landing hero */
.landing-hero {
  background: linear-gradient(135deg, #3d68f6 0%, #3c23d7 100%);
  color: #fff;
  padding: 3rem 0 3.5rem;
}

.landing-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
}

.landing-hero-media {
  margin: 0;
  position: relative;
}

.landing-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.felix-hero .landing-hero-media.felix-hero-collage img {
  aspect-ratio: auto;
  box-shadow: none;
  border-radius: 18px;
}

.btn-landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 56px;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.12rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, filter 0.16s ease;
}

.btn-landing-cta:hover {
  background: #1ebe57;
  filter: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.btn-landing-cta-icon {
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.landing-hero-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
}

.landing-hero h1 {
  font-size: clamp(1.95rem, 4.8vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  max-width: 18ch;
}

.landing-hero-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.96;
  max-width: 54ch;
  margin-bottom: 1.5rem;
}

.landing-hero-note {
  margin-top: 0.95rem;
  font-size: 0.92rem;
  opacity: 0.88;
}

.landing-hero-disclaimer,
.product-landing-price-note {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 54ch;
}

.landing-hero .landing-hero-disclaimer {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  line-height: 1.45;
  opacity: 1;
}

.landing-hero-trust {
  display: none;
}

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

  .landing-hero-media {
    order: -1;
    max-width: 520px;
  }
}

/* Geo story block */
.geo-story-section {
  padding: 3rem 0;
  background: #fff;
}

.geo-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.geo-kicker {
  color: var(--brand-purple);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.geo-story-copy h2 {
  font-size: var(--heading-size);
  line-height: 1.18;
  margin-bottom: 0.95rem;
}

.geo-story-lead {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  max-width: 54ch;
  font-size: 1.06rem;
  line-height: 1.65;
}

.geo-story-list {
  margin: 0 0 1.35rem 1.15rem;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.6;
}

.geo-story-list li { margin-bottom: 0.45rem; }

.geo-story-photo {
  margin: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.geo-story-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.geo-story-photo figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--page-bg);
}

/* Bridge maps + animation */
.geo-bridge-section {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, #f7f9ff 0%, #eef2ff 100%);
}

.geo-bridge-intro {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto 2rem;
}

.geo-bridge-intro h2 {
  font-size: var(--heading-size);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.geo-bridge-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.geo-bridge-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.geo-bridge-map {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.85rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.geo-bridge-map img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto;
}

.geo-bridge-map-label {
  display: block;
  margin-top: 0.55rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.geo-bridge-map-flag {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  font-size: 1.25rem;
}

.geo-bridge-path {
  position: relative;
  height: 220px;
  color: var(--brand-blue);
}

.geo-bridge-svg {
  width: 100%;
  height: 100%;
}

.geo-bridge-line {
  animation: bridgeDash 1.2s linear infinite;
}

@keyframes bridgeDash {
  to { stroke-dashoffset: -28; }
}

.geo-bridge-money,
.geo-bridge-product {
  position: absolute;
  font-size: 1.35rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
  animation: crossBridge 4.5s ease-in-out infinite;
}

.geo-bridge-money--1 { animation-delay: 0s; }
.geo-bridge-money--2 { animation-delay: 1.2s; }
.geo-bridge-money--3 { animation-delay: 2.4s; }
.geo-bridge-product--1 { animation-delay: 0.6s; font-size: 1.5rem; }
.geo-bridge-product--2 { animation-delay: 1.5s; font-size: 1.45rem; }
.geo-bridge-product--3 { animation-delay: 2.3s; font-size: 1.4rem; }
.geo-bridge-product--4 { animation-delay: 3.1s; font-size: 1.55rem; }

@keyframes crossBridge {
  0% { left: 8%; top: 58%; opacity: 0; transform: scale(0.7); }
  12% { opacity: 1; transform: scale(1); }
  50% { left: 46%; top: 42%; opacity: 1; }
  88% { opacity: 1; }
  100% { left: 82%; top: 58%; opacity: 0; transform: scale(0.85); }
}

.geo-bridge-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .geo-map-frame {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }
}

/* Collapse earlier so Contáctanos never clips on mid-width desktops */
@media (max-width: 1100px) {
  .landing-nav { display: none; }
  .landing-nav-cta { display: none; }
  .landing-nav-toggle { display: flex; }
  .landing-header.is-open .landing-nav,
  .landing-header.is-open .landing-nav-cta {
    display: flex;
  }
  .landing-header.is-open .landing-header-inner {
    flex-wrap: wrap;
  }
  .landing-header.is-open .landing-nav {
    order: 3;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0 1rem;
    align-items: flex-start;
  }
  .landing-header.is-open .landing-header-actions {
    order: 4;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  .landing-header.is-open .landing-nav-cta,
  .landing-header.is-open .lang-switch {
    width: 100%;
    justify-content: center;
  }
  .lang-switch-label { display: none; }
  .lang-switch {
    min-height: 40px;
    padding: 0.4rem 0.55rem;
  }
  .geo-story-grid { grid-template-columns: 1fr; }
  .geo-bridge-stage {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .geo-bridge-path {
    height: 120px;
    order: 2;
  }
  .geo-bridge-map--dest { order: 3; }
}

@media (prefers-reduced-motion: reduce) {
  .geo-bridge-line,
  .geo-bridge-money,
  .geo-bridge-product {
    animation: none;
  }
}

.hero-with-media {
  padding: 1.25rem 0 0.5rem;
}

.hero-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-media-card {
  margin: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-media-card figcaption {
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.geo-map-section {
  padding: 3.5rem 0 4rem;
  background: #f4f6f8;
}

.geo-map-section--prefooter {
  margin-top: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.geo-map-card {
  max-width: 920px;
  margin: 0;
}

.geo-map-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}

.geo-map-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  max-width: 22ch;
}

.geo-map-lead {
  margin: 0 0 1.5rem;
  max-width: 42rem;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

.geo-map-lead strong {
  color: #0f172a;
  font-weight: 700;
}

.geo-map-card p.geo-map-lead {
  margin-bottom: 1.5rem;
}

.geo-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #e2e8f0;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.geo-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.geo-map-link {
  margin: 1rem 0 0;
  font-size: 1rem;
}

.geo-map-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.geo-map-link a:hover {
  text-decoration: underline;
}

.geo-map-frame--compact {
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .hero-media-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero */
.hero {
  padding: 2.5rem 0 2rem;
}

.hero-card {
  background: linear-gradient(135deg, #e8eeff 0%, #f7f9ff 55%, #eef2ff 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(60, 35, 215, 0.08);
  color: var(--brand-purple);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.hero .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 62ch;
  margin-bottom: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.2;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease, background 0.16s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 34px rgba(60, 35, 215, 0.3);
}

.btn-secondary {
  background: #fff;
  color: var(--brand-purple);
  border: 2px solid rgba(60, 35, 215, 0.2);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(60, 35, 215, 0.35);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.34);
}

/* Sections */
.section {
  padding: 1.5rem 0 2.25rem;
}

.section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem 1.5rem;
  margin-bottom: 1.15rem;
}

.section-card h2 {
  font-size: var(--heading-size);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
}

.section-card p + p { margin-top: 0.85rem; }

/* How it works — accordion + video */
.hiw-module {
  padding: 2rem 0 1.5rem;
}

.hiw-container {
  width: min(100% - 2rem, 1080px);
}

.hiw-title {
  text-align: center;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  margin-bottom: 1.65rem;
}

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  gap: 1.5rem 2rem;
  align-items: start;
}

.hiw-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hiw-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hiw-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.05rem 1.2rem;
  border: none;
  background: #e8eeff;
  color: var(--brand-blue);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.15s ease;
}

.hiw-trigger:hover,
.hiw-item.is-open .hiw-trigger {
  background: #dce6ff;
}

.hiw-chevron {
  flex-shrink: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.2rem;
  transition: transform 0.2s ease;
}

.hiw-item.is-open .hiw-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.hiw-panel {
  background: #f7f9ff;
  border-top: 1px solid rgba(61, 104, 246, 0.12);
}

.hiw-panel-body {
  padding: 1.1rem 1.2rem 1.2rem;
  font-size: 1.03rem;
  color: var(--text);
  line-height: 1.65;
}

.hiw-panel-body p + p {
  margin-top: 0.65rem;
}

.hiw-panel-body .hiw-footnote {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hiw-step-icon {
  margin-right: 0.25rem;
}

.hiw-benefits-card {
  margin-top: 1.75rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(61, 104, 246, 0.15);
}

.hiw-benefits-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin: 0 0 0.95rem;
}

.hiw-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.hiw-benefits-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 1.02rem;
  line-height: 1.55;
}

.hiw-benefits-list li::before {
  content: "✓";
  color: var(--brand-blue);
  font-weight: 700;
  flex-shrink: 0;
}

.hiw-footer-note {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.hiw-footer-note + .hiw-footer-note {
  margin-top: 0.5rem;
}

.payment-methods-block {
  margin-top: 2rem;
  padding-top: 0.25rem;
  text-align: center;
}

.payment-methods-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--brand-blue);
  margin: 0 0 1.25rem;
}

.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.35rem;
  max-width: 920px;
  margin: 0 auto;
}

.payment-method-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-method-item img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.hiw-video {
  display: flex;
  justify-content: center;
}

.hiw-video-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 40px rgba(60, 35, 215, 0.18);
  border: 3px solid #fff;
}

.hiw-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hiw-local {
  margin-top: 1.35rem;
  text-align: center;
  font-size: 1.03rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.65;
}

@media (min-width: 640px) {
  .hiw-benefits-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .payment-method-item img {
    height: 44px;
    max-width: 130px;
  }
}

@media (max-width: 768px) {
  .hiw-grid {
    grid-template-columns: 1fr;
  }

  .hiw-video {
    order: -1;
  }

  .hiw-video-frame {
    max-width: 240px;
    margin-inline: auto;
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 0.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
}

.trust-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
  flex-shrink: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.category-card {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: #f8faff;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.category-card .icon {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.store-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.store-pill {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f3f4ff;
  border: 1px solid rgba(60, 35, 215, 0.12);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Logo strips — press carousel + stores (mandafacilusa.com) */
.logo-strip {
  padding: 2.25rem 1rem;
  background: var(--strip-bg-gray);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.logo-strip .strip-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-blue);
  text-align: center;
  margin-bottom: 1rem;
}

.logo-strip.press {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.logo-strip.press .logo-strip-press-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.logo-strip.press .strip-logos-carousel {
  overflow: hidden;
  width: 100%;
}

.logo-strip.press .strip-logos-track {
  display: flex;
  width: max-content;
  animation: press-scroll 45s linear infinite;
}

.logo-strip.press .strip-logos-track:hover {
  animation-play-state: paused;
}

.logo-strip.press .strip-logos-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1rem;
}

.logo-strip.press .strip-logos-press-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-strip.press .strip-logos-press-link img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.92;
}

@keyframes press-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-strip.press .strip-logos-track { animation: none; }
}

@media (min-width: 768px) {
  .logo-strip.press .strip-logos-press-link img {
    height: 56px;
    max-width: 180px;
  }
  .strip-logos-store-link img { height: 58px; max-width: 180px; }
}

/* Brands carousel */
.brands-module {
  padding: 2.75rem 0 2.25rem;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.brands-container {
  width: min(100% - 2rem, 960px);
  text-align: center;
}

.brands-title {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.brands-copy {
  color: var(--brand-blue);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 54rem;
  margin: 0 auto 0.95rem;
}

.brands-carousel {
  margin-top: 1.75rem;
}

.brands-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.brands-carousel-track {
  display: flex;
  gap: 10px;
  will-change: transform;
}

.brands-carousel-item {
  flex: 0 0 calc((100% - 40px) / 5);
  min-width: 0;
}

.brands-carousel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.5rem 0.75rem;
}

.brands-carousel-link img {
  width: 100%;
  max-width: 180px;
  height: 52px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .brands-carousel-item {
    flex-basis: calc((100% - 40px) / 5);
  }
}

@media (max-width: 767px) {
  .brands-carousel-item {
    flex-basis: calc((100% - 30px) / 4);
  }

  .brands-carousel-link img {
    height: 46px;
    max-width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands-carousel-track {
    transition: none !important;
  }
}

.brands-disclaimer {
  font-size: 0.75rem;
  color: var(--strip-text-muted);
  max-width: 42rem;
  margin: 1.5rem auto 0;
  line-height: 1.45;
  text-align: center;
}

/* Suggested products */
.hero-compact .hero-card {
  padding-bottom: 1.5rem;
}

.hero-meta,
.suggested-products-meta {
  font-size: 1rem;
  margin-top: 0.85rem;
}

.suggested-products-meta a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.suggested-products-meta a:hover {
  text-decoration: underline;
}

.suggested-products-section {
  padding: 3rem 0 3.25rem;
  background: linear-gradient(180deg, #fff 0%, #f3f7ff 100%);
}

.suggested-products-container {
  width: min(100% - 2rem, 1120px);
}

.suggested-products-header {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2rem;
}

.suggested-products-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.suggested-products-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

.suggested-products-lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.suggested-product-grid {
  margin-top: 0.25rem;
}

.suggested-products-header h2 {
  margin-bottom: 0.75rem;
}

.suggested-products-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-popular-products {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: min(100%, 24rem);
  min-height: 58px;
  padding: 1.05rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.btn-popular-count {
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.92;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-sort-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 1rem;
}

.product-sort-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted, #5c6570);
}

.product-sort-select {
  min-width: 12rem;
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface, #fff);
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.product-card[hidden],
.category-hub-card[hidden],
.product-search-empty[hidden],
.product-search-live-results[hidden] {
  display: none !important;
}

.product-image-link {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.product-image-link img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  box-sizing: border-box;
}

.product-store-badge {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 1.25rem);
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.16);
}

.product-image-link--fallback img {
  object-fit: contain;
  object-position: center;
  padding: 2rem 1.5rem;
  opacity: 0.92;
}

.product-store-badge img {
  display: block;
  width: auto;
  height: 36px;
  max-width: 120px;
  max-height: 36px;
  object-fit: contain;
  padding: 0;
}

.movilidad-product-card .product-store-badge {
  padding: 0.3rem;
  width: 2.75rem;
  height: 2.75rem;
  justify-content: center;
}

.movilidad-product-card .product-store-badge img {
  width: 2.1rem;
  height: 2.1rem;
  max-width: 2.1rem;
  max-height: 2.1rem;
}

.product-store-badge-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
}

.product-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.product-title {
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 600;
}

.product-title a {
  color: var(--text);
  text-decoration: none;
}

.product-title a:hover {
  color: var(--brand-purple);
}

.product-category-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-top: -0.15rem;
}

.product-installments,
.product-shipping {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-pricing {
  margin-top: auto;
}

.product-price-ml {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-price-usd {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.25rem;
}

.product-price-usd .label {
  font-size: 0.75rem;
  color: var(--brand-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-price-usd strong {
  font-size: 1.25rem;
  color: var(--brand-purple);
}

.product-price-monthly .label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-purple);
}

.product-price-monthly-detail,
.product-price-total {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.category-grid-hub {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.category-hub-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.category-hub-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.category-hub-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  box-sizing: border-box;
}

.category-hub-image--fallback img {
  padding: 1.25rem 1.5rem;
  opacity: 0.95;
}

.category-hub-image .product-store-badge {
  left: 0.65rem;
  bottom: 0.65rem;
}

.category-hub-card h2,
.category-hub-card p,
.category-hub-count,
.category-hub-from,
.category-hub-from-note {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.category-hub-card h2 {
  margin-top: 1rem;
}

.category-hub-from-note {
  margin-bottom: 1.25rem;
}

.category-hub-card:hover {
  border-color: rgba(60, 35, 215, 0.25);
  transform: translateY(-2px);
}

.category-hub-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.category-hub-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--brand-blue);
}

.category-hub-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.category-hub-count {
  margin-top: 0.65rem;
  font-weight: 600;
  color: var(--text);
}

.category-hub-from {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-purple);
}

.price-footnote-marker {
  font-size: 0.85em;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 0.1em;
}

.suggested-products-disclaimer .price-footnote-marker {
  margin-right: 0.25rem;
}

.category-hub-from-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.usa-hub-states-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.usa-hub-states-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.state-hub-grid {
  margin-top: 0.5rem;
}

.state-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
  min-height: 7rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.state-hub-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.state-hub-seal {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  border: 1px solid rgba(45, 74, 154, 0.08);
}

.state-hub-seal--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
}

.state-hub-card-copy {
  min-width: 0;
  flex: 1;
}

.state-hub-card-copy h2 {
  font-size: 1.12rem;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.state-hub-card-copy h2 a {
  color: var(--brand-blue);
  text-decoration: none;
}

.state-hub-card-copy h2 a:hover {
  text-decoration: underline;
}

.state-hub-card-copy p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
}

.state-hub-card-copy p a {
  color: inherit;
  text-decoration: none;
}

.state-hub-card-copy p a:hover {
  color: var(--brand-blue);
  text-decoration: underline;
}

.state-hub-cities {
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

.state-hub-cities-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.state-hub-city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
}

.state-hub-city-list a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand-purple);
  text-decoration: none;
}

.state-hub-city-list a:hover {
  text-decoration: underline;
}

.state-hub-card-footer {
  margin: 0.75rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

.state-hub-ver-ciudades {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-decoration: none;
}

.state-hub-ver-ciudades:hover {
  text-decoration: underline;
}

.state-cities-section {
  padding: 2.5rem 0;
  background: #f6f7f9;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.state-cities-section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.state-cities-lead {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  max-width: 42rem;
  line-height: 1.6;
}

.state-cities-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
}

.state-cities-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 74, 154, 0.18);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.state-cities-list a:hover {
  border-color: rgba(45, 74, 154, 0.35);
  text-decoration: underline;
}

/* legacy selectors kept for older builds */
.state-hub-card-flag {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.state-hub-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.state-hub-card p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.geo-city-location .geo-city-lead {
  margin: 0 0 1rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.product-search-wrap {
  margin-bottom: 1.5rem;
}

.product-search-toolbar {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}

.product-search-toolbar .product-search-field {
  flex: 1;
  min-width: 0;
}

.btn-categories-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-shrink: 0;
  min-height: 48px;
  padding: 0.65rem 1rem;
  border: 1.5px solid rgba(45, 74, 154, 0.18);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn-categories-toggle:hover {
  border-color: var(--brand-purple);
  background: rgba(60, 35, 215, 0.04);
}

.btn-categories-toggle[aria-expanded="true"] {
  border-color: var(--brand-purple);
  background: rgba(60, 35, 215, 0.08);
  box-shadow: 0 0 0 3px rgba(60, 35, 215, 0.1);
}

.btn-categories-toggle-icon {
  font-size: 1rem;
  line-height: 1;
}

.btn-categories-chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s;
}

.btn-categories-toggle[aria-expanded="true"] .btn-categories-chevron {
  transform: rotate(-135deg) translateY(1px);
}

.categories-panel {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.categories-panel[hidden] {
  display: none !important;
}

.categories-panel--always-visible {
  margin-top: 1.25rem;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.categories-panel-grid {
  margin-bottom: 0;
}

.categories-panel-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.55rem;
}

.categories-panel-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.categories-panel-chip:hover {
  border-color: rgba(60, 35, 215, 0.35);
  box-shadow: 0 4px 14px rgba(45, 74, 154, 0.08);
  transform: translateY(-1px);
}

.categories-panel-chip.is-active {
  border-color: var(--brand-purple);
  background: rgba(60, 35, 215, 0.06);
}

.categories-panel-chip-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.categories-panel-chip-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-blue);
}

.categories-panel-chip-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .product-search-toolbar {
    flex-direction: column;
  }

  .btn-categories-toggle {
    width: 100%;
  }

  .categories-panel-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.product-search-field {
  position: relative;
}

.product-search-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-search-input:focus {
  outline: none;
  border-color: rgba(60, 35, 215, 0.45);
  box-shadow: 0 0 0 3px rgba(60, 35, 215, 0.12);
}

.product-search-hint {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-search-suggestions {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 320px;
  overflow: auto;
}

.product-search-option {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-search-option:hover,
.product-search-option.is-active {
  background: rgba(60, 35, 215, 0.06);
}

.product-search-option-icon {
  font-size: 1.25rem;
  line-height: 1.2;
}

.product-search-option-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.product-search-option-body strong {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.3;
}

.product-search-option-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-search-empty {
  margin-top: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.product-search-live-results {
  margin-top: 1rem;
}

.product-search-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.product-search-live-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
}

.product-search-live-card:hover {
  border-color: var(--primary);
}

.product-search-live-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-search-live-card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.3;
}

.product-search-live-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.product-price-breakdown {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.product-actions .btn-primary,
.product-actions .btn-secondary,
.product-actions .btn-whatsapp {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.suggested-products-disclaimer,
.suggested-products-source,
.product-financing-disclaimer {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

details.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.9rem;
}

details.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.03rem;
  padding: 0.95rem 0;
  list-style: none;
  line-height: 1.45;
}

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

details.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand-purple);
  font-weight: 700;
}

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

details.faq-item .answer {
  padding: 0 0 1.05rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Content strips — Andafacil-style alternating SEO blocks */
.content-strip-module {
  margin: 0;
}

.content-strip {
  padding: clamp(2.75rem, 5vw, 3.75rem) 0;
  background: #fff;
}

.content-strip--alt {
  background: #f6f7f9;
}

.content-strip-inner {
  max-width: 920px;
}

.content-strip h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #0f172a;
  max-width: 34ch;
}

.content-strip p {
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.15rem);
  line-height: 1.75;
  color: #475569;
  max-width: 52rem;
}

/* Product landing page */
.product-landing-viewport {
  display: block;
}

.product-landing-page .product-landing-hero {
  padding: 1.5rem 0 1rem;
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.product-landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

.product-landing-media {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: start;
  width: 100%;
}

.product-landing-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  margin-inline: auto;
}

.product-landing-store-logo {
  display: block;
  margin-top: 0.65rem;
  max-height: 28px;
  width: auto;
  height: auto;
  max-width: 120px;
  object-fit: contain;
  align-self: center;
  flex-shrink: 0;
}

.product-landing-copy {
  min-width: 0;
}

.product-landing-copy .eyebrow {
  font-size: 0.78rem;
  line-height: 1.35;
}

.product-landing-copy h1 {
  font-size: clamp(1.25rem, 2.4vw, 1.95rem);
  line-height: 1.15;
  margin: 0.25rem 0 0.45rem;
}

.product-landing-viewport .product-installments,
.product-landing-viewport .product-shipping {
  display: none;
}

.product-landing-price-card {
  margin: 0.55rem 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 74, 154, 0.14);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-landing-viewport .product-landing-price-note {
  display: none;
}

.product-landing-desde-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-landing-desde {
  margin: 0.25rem 0 0.1rem;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
}

.product-landing-desde-detail,
.product-landing-total,
.product-landing-breakdown {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  line-height: 1.4;
  font-size: 0.88rem;
}

.product-landing-total strong {
  color: var(--text);
}

.product-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-landing-viewport .product-landing-actions .btn-primary,
.product-landing-viewport .product-landing-actions .btn-whatsapp,
.product-landing-viewport .product-landing-actions .btn-secondary {
  padding: 0.62rem 0.95rem;
  font-size: 0.92rem;
}

.product-landing-viewport .product-value-strip.felix-features-strip {
  margin-top: 0;
  padding: 0.85rem 0;
}

.product-landing-viewport .felix-features-strip-inner {
  gap: 0.65rem 1rem;
}

.product-landing-viewport .felix-features-item {
  max-width: none;
  gap: 0.55rem;
}

.product-landing-viewport .felix-features-item img {
  width: 22px;
  height: 22px;
}

.product-landing-viewport .felix-features-item p {
  font-size: clamp(0.72rem, 1.6vw, 0.92rem);
  line-height: 1.25;
}

.product-financing-section {
  padding: 2.5rem 0;
  background: #f6f7f9;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.product-financing-section h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.product-financing-lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.product-financing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.product-financing-grid:has(> :only-child) {
  grid-template-columns: minmax(200px, 320px);
}

.product-financing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.product-financing-card--recommended {
  border-color: rgba(45, 74, 154, 0.35);
  box-shadow: 0 8px 24px rgba(45, 74, 154, 0.12);
}

.product-financing-badge {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.product-financing-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.3;
}

.product-financing-payment {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.product-financing-detail {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.product-financing-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.product-financing-calculator {
  margin-top: 1.75rem;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-financing-calculator-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.product-financing-calculator-total {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.product-financing-calculator-note {
  margin: 0 0 1.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.product-financing-calculator-controls {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .product-financing-calculator-controls {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    align-items: end;
    gap: 1.25rem;
  }
}

.product-financing-calculator-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.product-financing-select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.product-financing-apr-range {
  width: 100%;
  accent-color: var(--brand-blue);
}

.product-financing-apr-bounds {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-financing-calculator-result {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.product-financing-calculator-result-label {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-financing-calculator-result-amount {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.1;
}

.product-financing-calculator-result-detail {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.product-financing-field--apr[hidden],
.product-financing-calculator-field--apr[hidden] {
  display: none;
}

.product-marketplace-section {
  padding: 2.5rem 0 2rem;
}

.product-marketplace-section h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.product-marketplace-lead {
  margin: 0 0 1rem;
  color: var(--text-muted);
  max-width: 46rem;
}

.store-listing-preview {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  max-width: 920px;
}

.store-listing-preview-chrome {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 0.75rem 1.1rem;
  background: #f6f7f9;
  border-bottom: 1px solid var(--border);
}

.store-listing-preview-logo {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.store-listing-preview-store {
  font-weight: 700;
  color: var(--text);
}

.store-listing-preview-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.store-listing-preview-body {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.35rem 1.25rem 1.1rem;
}

.store-listing-preview-media {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  padding: 0.75rem;
}

.store-listing-preview-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.store-listing-preview-details h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
  color: var(--text);
}

.store-listing-preview-price {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.store-listing-preview-meta {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.store-listing-preview-store-btn {
  display: inline-block;
  margin-top: 1rem;
  text-align: center;
}

.store-listing-preview-note {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36rem;
}

@media (max-width: 760px) {
  .store-listing-preview-body {
    grid-template-columns: 1fr;
  }

  .store-listing-preview-badge {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .product-landing-page .product-landing-hero {
    padding: 0.85rem 0 0.65rem;
  }

  .product-landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
    text-align: center;
  }

  .product-landing-media {
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 1rem;
    align-self: stretch;
  }

  .product-landing-image {
    width: 100%;
    max-height: min(52vw, 300px);
  }

  .product-landing-store-logo {
    display: block;
    margin-top: 0.75rem;
  }

  .product-landing-copy {
    width: 100%;
    text-align: center;
  }

  .product-landing-copy h1 {
    font-size: clamp(1.1rem, 4.5vw, 1.45rem);
  }

  .product-landing-price-card {
    width: min(100%, 28rem);
    margin-inline: auto;
    text-align: center;
  }

  .product-landing-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 28rem);
    margin-inline: auto;
  }

  .product-landing-viewport .product-landing-actions .btn-primary,
  .product-landing-viewport .product-landing-actions .btn-whatsapp,
  .product-landing-viewport .product-landing-actions .btn-secondary {
    width: 100%;
  }

  .product-landing-viewport .felix-features-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: stretch;
  }

  .product-landing-viewport .felix-features-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-landing-viewport .felix-features-item img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 860px) and (max-height: 700px) {
  .product-landing-image {
    max-height: min(46vw, 240px);
  }

  .product-landing-desde {
    font-size: 1.25rem;
  }

  .product-landing-viewport .product-value-strip.felix-features-strip {
    padding: 0.55rem 0;
  }
}

/* Long content */
.longform p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.longform p + p { margin-top: 0.95rem; }

/* Testimonials — mandafacilusa.com */
.testimonials-module {
  background: #f7f9fb;
  padding: 3rem 1rem 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonials-module .section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.testimonials-module .section-title strong,
.testimonials-module .section-title span.brand {
  color: var(--brand-blue);
}

.testimonials-module .section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 1.85rem;
  line-height: 1.6;
}

.testimonials-carousel-wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.testimonial-card {
  flex: 0 0 calc(100% - 0.5rem);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  min-height: 220px;
}

.testimonial-card::after {
  content: "\201D";
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  font-size: 3rem;
  line-height: 1;
  color: rgba(61, 104, 246, 0.15);
  font-family: Georgia, serif;
}

.testimonial-card .stars {
  color: #f5b301;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.testimonial-card .quote {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.testimonial-card .author {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.testimonial-card .testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .testimonial-card { flex: 0 0 calc(50% - 0.5rem); }
}

@media (min-width: 1024px) {
  .testimonial-card { flex: 0 0 calc(33.333% - 0.7rem); }
}

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

/* Site footer — mandafacilusa.com */
.site-footer {
  font-family: var(--font);
  background: #3D68F6;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  padding: 3rem 0 2rem;
  margin: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

.footer-grid {
  display: grid;
  gap: 2rem 1.5rem;
  margin-bottom: 2.5rem;
  grid-template-columns: 1fr;
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-brand .footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-links-icons a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-legal-block p {
  margin: 0 0 0.85rem;
}

.footer-legal-block p:last-child {
  margin-bottom: 0;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.footer-heading {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.35rem; }

.footer-legal {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.85;
}

.footer-legal p { margin: 0; }

.footer-legal a { color: inherit; text-decoration: underline; }

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
}

.footer-bottom span {
  margin: 0 0.5rem;
  opacity: 0.6;
}

.footer-icon,
.footer-social-icon {
  display: block;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.section-card.footer-cta {
  background: linear-gradient(135deg, rgba(60, 35, 215, 0.06), rgba(61, 104, 246, 0.08));
  border-color: rgba(60, 35, 215, 0.12);
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  text-decoration: none;
}

.floating-wa img {
  filter: brightness(0) invert(1);
}

.floating-lang {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-lang:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.34);
}

.floating-lang-flag {
  font-size: 1.55rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .hero-card { padding: 2.5rem 2rem; }
  .section-card { padding: 1.5rem 1.6rem; }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    max-width: 1100px;
  }
}

/* Felix Pago city landing pages */
.felix-hero .landing-hero-eyebrow a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.felix-hero .landing-hero-eyebrow a:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

.felix-hero .btn-felix-cta {
  background: linear-gradient(135deg, #00a650 0%, #008744 100%);
}

.felix-hero h1 {
  max-width: 22ch;
}

.felix-hero-logo {
  display: block;
  width: min(220px, 70%);
  height: auto;
  margin-bottom: 1.25rem;
}

.felix-hero-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  position: relative;
  padding: 0.35rem;
}

.felix-hero-collage .felix-hero-collage-tile,
.felix-hero-collage .felix-hero-collage-badge {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.felix-hero-collage .felix-hero-collage-tile {
  aspect-ratio: 1;
}

.felix-hero-collage .felix-hero-collage-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(46%, 180px);
  aspect-ratio: auto;
  background: #fff;
  padding: 0.55rem 0.75rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.felix-features-strip {
  background: #0f2d1f;
  color: #fff;
  padding: 1.35rem 0;
}

.felix-features-strip-inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

@media (min-width: 768px) {
  .felix-features-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.felix-features-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 280px;
}

.felix-features-item img {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.felix-features-item p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.product-value-strip.felix-features-strip {
  background: linear-gradient(135deg, #3d68f6 0%, #3c23d7 100%);
}

.felix-state-map-section {
  padding: 2.5rem 0;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.felix-state-map-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .felix-state-map-grid {
    grid-template-columns: 1fr minmax(260px, 420px);
  }
}

.felix-state-map-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.65rem;
}

.felix-state-map-copy h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 0 0 0.85rem;
  color: #0f2d1f;
}

.felix-state-map-copy p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 1.02rem;
}

.felix-state-map-media {
  margin: 0;
}

.felix-state-map-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.felix-testimonials-module {
  background: #d6d3cb;
  padding: 3rem 0 3.25rem;
}

.felix-testimonials-title {
  text-align: center;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 700;
  color: #0f2d1f;
  margin: 0 0 1.75rem;
}

.felix-testimonials-carousel-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.felix-testimonials-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0 0.5rem;
  scrollbar-width: none;
}

.felix-testimonials-track::-webkit-scrollbar {
  display: none;
}

.felix-testimonial-card {
  flex: 0 0 min(320px, calc(100% - 2rem));
  scroll-snap-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.felix-testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.felix-testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
}

.felix-testimonial-star {
  color: #00a650;
  font-size: 1.1rem;
}

.felix-testimonial-author {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: #111827;
}

.felix-testimonial-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.felix-testimonial-quote {
  margin: 0;
  color: #374151;
  line-height: 1.55;
  font-size: 0.96rem;
}

.felix-video-module {
  padding: 2.5rem 0 3rem;
  background: #fff;
}

.felix-video-module-inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.felix-video-module-title {
  text-align: center;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #0f2d1f;
  margin: 0;
}

.felix-hiw-module {
  padding: 3rem 0 3.5rem;
  background: #eceae4;
}

.felix-hiw-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .felix-hiw-layout {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 2.5rem;
  }

  .felix-hiw-sidebar {
    position: sticky;
    top: 1.5rem;
  }
}

.felix-hiw-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.15;
  color: #0f2d1f;
  margin: 0 0 0.65rem;
}

.felix-hiw-subtitle {
  margin: 0 0 1.35rem;
  color: #4b5563;
  font-size: 1.05rem;
}

.btn-felix-hiw-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: #0f2d1f;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
}

.btn-felix-hiw-cta:hover {
  filter: brightness(1.08);
}

.felix-hiw-steps {
  display: grid;
  gap: 1.1rem;
}

.felix-hiw-step-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.felix-hiw-step-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.felix-hiw-step-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f2d1f;
  line-height: 1;
}

.felix-hiw-step-header h3 {
  margin: 0.15rem 0 0;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #111827;
}

.felix-hiw-step-media {
  margin: 0 0 1rem;
}

.felix-hiw-step-media img {
  display: block;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  height: auto;
}

.felix-hiw-step-video {
  margin: 0 0 1rem;
}

.felix-hiw-step-video-inner {
  position: relative;
  width: min(100%, 280px);
  margin-inline: auto;
}

.felix-hiw-step-video-el {
  position: absolute;
  z-index: 2;
  top: 1.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 89%;
  height: 97%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  background: #000;
}

.felix-hiw-step-video-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.felix-hiw-step-card > p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.felix-youtube-lazy {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 1rem;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #111827 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='10 8 16 12 10 16 10 8' fill='%23ffffff'/%3E%3C/svg%3E") center / 72px no-repeat;
}

.felix-youtube-lazy iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.felix-youtube-play {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 45, 31, 0.35);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.felix-youtube-lazy[data-loaded="1"] .felix-youtube-play {
  display: none;
}

.felix-youtube-lazy.felix-youtube-lazy--wide {
  max-width: 900px;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  background-color: #111827;
}

.felix-benefits-strip {
  background: #f0fdf4;
  border-block: 1px solid #bbf7d0;
  padding: 1.25rem 0;
}

.felix-benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.felix-benefits-list li {
  font-weight: 600;
  color: #166534;
  font-size: 0.95rem;
}

.felix-benefits-list li::before {
  content: "✓ ";
}

.felix-steps-grid {
  display: grid;
  gap: 1.25rem;
  margin-block: 1.5rem 2rem;
}

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

.felix-step-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.felix-step-card h3 {
  font-size: 1.05rem;
  margin: 0.5rem 0 0.65rem;
}

.felix-step-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.55;
}

.felix-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
}

.felix-cta-row,
.felix-footer-actions,
.felix-compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.felix-why-section,
.felix-compare-section {
  padding: 3rem 0;
}

.felix-compare-section {
  background: #f8fafc;
}

.felix-compare-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .felix-compare-grid {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

.felix-compare-lead {
  font-size: 1.05rem;
  color: #374151;
}

.felix-footer-cta {
  text-align: center;
  padding: 3rem 0 4rem;
}

.felix-footer-cta h2 {
  margin-bottom: 1.25rem;
}

.felix-hub-sections {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .felix-hub-sections {
    grid-template-columns: repeat(3, 1fr);
  }
}

.felix-hub-section h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.felix-hub-meta {
  color: #4b5563;
  margin-bottom: 1rem;
}

.felix-hub-search-wrap {
  display: block;
  margin-bottom: 1.25rem;
}

.felix-hub-search {
  width: 100%;
  max-width: 420px;
  padding: 0.65rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
}

.felix-state-grid {
  align-items: start;
}

.felix-state-card summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.25rem 0;
}

.felix-state-card summary::-webkit-details-marker {
  display: none;
}

.felix-state-name {
  font-weight: 700;
  flex: 1;
}

.felix-state-count {
  color: #6b7280;
  font-size: 0.9rem;
}

.felix-city-list {
  max-height: 280px;
  overflow-y: auto;
  margin-top: 0.75rem;
}

.felix-hub-back {
  margin-top: 1rem;
}

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

/* /guias/ editorial pages */
.guia-section-title {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text);
}

.guia-comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.guia-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.guia-comparison-table th,
.guia-comparison-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.guia-comparison-table thead th {
  background: var(--surface-muted, #f8fafc);
  font-weight: 600;
}

.guia-comparison-table tbody th {
  font-weight: 600;
  color: var(--text);
  width: 22%;
}

.guia-comparison-table td:last-child {
  color: var(--brand-purple);
  font-weight: 500;
}

.guia-related-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.guia-related-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.guia-hub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  gap: 2rem;
}

@media (min-width: 768px) {
  .guia-hub-list {
    columns: 3;
  }
}

.guia-hub-list li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
}

.guia-hub-list a {
  color: var(--brand-blue);
  text-decoration: none;
}

.guia-hub-list a:hover {
  text-decoration: underline;
}

.guia-hub-benefits {
  max-width: 54ch;
  margin: 0 0 1.15rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted, #4a5568);
}

.landing-hero .guia-hub-benefits {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.5;
  opacity: 1;
}

.landing-hero.guia-hub-hero h1 {
  max-width: none;
}

.landing-hero.guia-hub-hero .landing-hero-lead {
  margin-bottom: 0.85rem;
}

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

/* Motos geo landing pages */
.motos-geo-hero .landing-hero-copy h1 {
  max-width: 22ch;
}

.motos-hero-media {
  margin: 0;
}

.motos-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  object-fit: cover;
  aspect-ratio: 1200 / 628;
}

.motos-hiw-video-block {
  width: 100%;
  margin: 2rem 0 0;
}

.motos-hiw-video-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.motos-hiw-video-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.motos-hiw-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.motos-featured-grid {
  grid-template-columns: 1fr;
}

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

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

.motos-featured-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.motos-featured-cta .btn-primary,
.motos-featured-cta .btn-secondary {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.motos-featured-cta .btn-secondary {
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .motos-geo-hero .landing-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* Coches geo landing pages */
.coches-geo-hero .landing-hero-copy h1 {
  max-width: 24ch;
}

.coches-hero-media {
  margin: 0;
}

.coches-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  object-fit: cover;
  aspect-ratio: 1200 / 628;
}

.coches-currency-bar {
  position: sticky;
  top: 72px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}

.coches-currency-bar--inline {
  position: static;
  top: auto;
  z-index: auto;
  justify-content: flex-end;
  padding: 0;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  box-shadow: none;
}

.coches-showcase-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.coches-showcase-toolbar .coches-home-search {
  flex: 1 1 280px;
  margin-bottom: 0;
}

.coches-catalog-toolbar .coches-currency-bar--inline {
  margin-left: auto;
}

.coches-model-hero .coches-currency-bar--inline {
  justify-content: flex-start;
  margin: 0.75rem 0 1rem;
}

.coches-currency-bar.is-scrolled {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.coches-currency-label {
  font-size: 0.82rem;
  color: var(--text-muted, #4a5568);
}

.coches-currency-toggle {
  display: inline-flex;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.coches-currency-btn {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted, #4a5568);
}

.coches-currency-btn.is-active {
  background: var(--brand-blue, #1d4ed8);
  color: #fff;
}

.coches-catalog-section {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.coches-catalog-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.coches-catalog-lead {
  color: var(--text-muted, #4a5568);
  line-height: 1.6;
}

.coches-catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.coches-catalog-filters {
  position: sticky;
  top: 130px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.coches-filters-close,
.coches-filters-open {
  display: none;
}

.coches-filters-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

.coches-filter-group {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.coches-filter-group select,
.coches-filter-group input {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font: inherit;
}

.coches-price-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.35rem;
  align-items: center;
}

.coches-catalog-toolbar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.coches-catalog-search-wrap {
  grid-column: 1 / -1;
}

.coches-catalog-search {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
}

.coches-catalog-count {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted, #4a5568);
}

.coches-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.coches-catalog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.coches-card-image-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #eef2ff;
}

.coches-card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coches-card-image-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 2rem;
}

.coches-card-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.coches-card-body {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem;
}

.coches-card-family {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted, #4a5568);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.coches-card-title {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
}

.coches-card-monthly {
  margin: 0;
  font-size: 0.92rem;
}

.coches-card-monthly-label {
  color: var(--text-muted, #4a5568);
}

.coches-card-list,
.coches-card-plan-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted, #4a5568);
}

.coches-card-cta {
  margin-top: 0.35rem;
  width: 100%;
  text-align: center;
}

.coches-catalog-empty {
  text-align: center;
  color: var(--text-muted, #4a5568);
  padding: 2rem 1rem;
}

.coches-catalog-disclaimer {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted, #4a5568);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .coches-catalog-layout {
    grid-template-columns: 1fr;
  }

  .coches-catalog-filters {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(88vw, 320px);
    max-height: 100vh;
    overflow: auto;
    transform: translateX(-110%);
    transition: transform 0.2s ease;
    z-index: 120;
    top: 0;
    border-radius: 0;
  }

  .coches-catalog-filters.is-open {
    transform: translateX(0);
  }

  .coches-filters-open,
  .coches-filters-close {
    display: inline-flex;
  }

  .coches-filters-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    font-size: 1.2rem;
    cursor: pointer;
  }

  .coches-catalog-toolbar {
    grid-template-columns: 1fr;
  }
}

/* Coches landing showcase (soyahorrador home style) */
.coches-showcase-section {
  padding: 3rem 0;
  background: #fff;
}

.coches-showcase-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.coches-showcase-lead {
  color: var(--text-muted, #4a5568);
  line-height: 1.6;
}

.coches-home-search {
  display: flex;
  align-items: stretch;
  max-width: 640px;
  margin: 0 auto 2rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.coches-home-search-input {
  flex: 1;
  border: none;
  border-radius: 0;
  padding: 0.95rem 1.15rem;
  font: inherit;
  min-width: 0;
  background: transparent;
}

.coches-home-search-input:focus {
  outline: none;
}

.coches-home-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  padding: 0 1rem;
  border: none;
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
  background: var(--primary, #2563eb);
  color: #fff;
  cursor: pointer;
}

.coches-home-search-btn:hover {
  background: #1d4ed8;
}

.floating-preapproval {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--primary, #2563eb);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
  text-decoration: none;
}

.preapproval-summary {
  text-align: left;
  white-space: pre-wrap;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
  font: inherit;
  line-height: 1.5;
  max-height: 320px;
  overflow: auto;
}

.preapproval-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-preapproval-cta {
  background: var(--primary, #2563eb);
}

.coches-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.coches-showcase-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
}

.coches-showcase-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #eef2ff;
}

.coches-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coches-showcase-image-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 2rem;
}

.coches-showcase-body {
  padding: 0.85rem;
  display: grid;
  gap: 0.35rem;
  flex: 1;
}

.coches-showcase-title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
}

.coches-showcase-price {
  margin: 0;
  font-size: 1rem;
}

.coches-showcase-note {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-muted, #4a5568);
}

.coches-showcase-details {
  margin-top: auto;
  text-align: center;
}

.coches-showcase-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.coches-showcase-disclaimer {
  margin: 1.25rem auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted, #4a5568);
  line-height: 1.5;
}

.coches-catalog-back {
  margin: 0 0 0.75rem;
}

.coches-catalog-back a {
  color: var(--brand-blue, #1d4ed8);
  text-decoration: none;
  font-weight: 600;
}

.coches-catalog-page-section .coches-catalog-header h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

/* Coches model detail page */
.coches-model-page main {
  padding-top: 1rem;
}

.coches-model-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 3rem;
}

.coches-model-hero img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.coches-model-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #4a5568);
}

.coches-model-title {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.coches-model-price {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.coches-model-list-price,
.coches-model-plan-note {
  color: var(--text-muted, #4a5568);
  margin: 0.35rem 0;
}

.coches-model-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.coches-model-plan-box {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.coches-model-plan-box h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.coches-model-plan-box ul {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .coches-model-hero {
    grid-template-columns: 1fr;
  }
}

/* Gamified pre-approval wizard */
.coches-preapproval-page {
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  min-height: 100vh;
}

.coches-preapproval-shell {
  max-width: 680px;
  margin: 0 auto;
  padding: 6rem 1rem 3rem;
}

.preapproval-progress-wrap {
  margin-bottom: 1.5rem;
}

.preapproval-progress-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.preapproval-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #3d68f6, #3c23d7);
  transition: width 0.25s ease;
}

.preapproval-progress-text {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted, #4a5568);
  text-align: center;
}

.preapproval-step-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  min-height: 360px;
}

.preapproval-step-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  line-height: 1.2;
}

.preapproval-subtitle {
  color: var(--text-muted, #4a5568);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.preapproval-options {
  display: grid;
  gap: 0.75rem;
}

.preapproval-option {
  border: 2px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  text-align: left;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.preapproval-option:hover {
  border-color: rgba(61, 104, 246, 0.35);
  transform: translateY(-1px);
}

.preapproval-option.is-selected {
  border-color: #3d68f6;
  background: #f0f4ff;
}

.preapproval-option-label {
  display: block;
  font-weight: 600;
}

.preapproval-option-desc {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--text-muted, #4a5568);
  line-height: 1.4;
}

.preapproval-section {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d68f6;
}

.preapproval-footnote {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted, #4a5568);
}

.preapproval-other-input {
  margin-top: 0.75rem;
}

.preapproval-select {
  width: 100%;
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font: inherit;
  font-size: 1rem;
  background: #fff;
}

.preapproval-phone-row {
  display: grid;
  grid-template-columns: minmax(120px, 38%) 1fr;
  gap: 0.75rem;
}

.preapproval-country-select {
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  padding: 1rem 0.75rem;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.preapproval-phone-input {
  min-width: 0;
}

.preapproval-error {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.92rem;
  text-align: center;
}

.preapproval-input {
  width: 100%;
  border: 2px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font: inherit;
  font-size: 1.1rem;
}

.preapproval-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.preapproval-intro-card {
  text-align: center;
}

.preapproval-intro-image {
  width: min(100%, 420px);
  border-radius: 16px;
  margin-bottom: 1rem;
}

.preapproval-intro-kicker {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  color: var(--text-muted, #4a5568);
}

.preapproval-intro-price {
  font-size: 1.15rem;
  margin: 0.75rem 0;
}

.preapproval-success {
  text-align: center;
  padding: 1rem 0;
}

.preapproval-success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #dcfce7;
  color: #15803d;
  font-size: 2rem;
  font-weight: 700;
}

.preapproval-success-icon--muted {
  background: #e0e7ff;
  color: #3730a3;
}

/* ── Mobility (Andafacil) hub + geo pages ── */
.movilidad-eyebrow {
  color: #1d4ed8;
  font-weight: 700;
}

.movilidad-hero,
.movilidad-geo-hero {
  background: linear-gradient(180deg, #f0f7ff 0%, #fff 55%, #f8fafc 100%);
  color: #0f2744;
}

/* Override .landing-hero white text — mobility geo uses a light Andafacil-style hero */
.landing-hero.movilidad-geo-hero,
.landing-hero.movilidad-hero {
  color: #0f2744;
}

.landing-hero.movilidad-geo-hero .landing-hero-eyebrow,
.landing-hero.movilidad-hero .landing-hero-eyebrow {
  color: #1d4ed8;
  opacity: 1;
}

.landing-hero.movilidad-geo-hero h1,
.landing-hero.movilidad-hero h1 {
  color: #0f2744;
  max-width: 22ch;
  font-weight: 800;
}

.landing-hero.movilidad-geo-hero .landing-hero-lead,
.landing-hero.movilidad-hero .landing-hero-lead {
  color: #475569;
  opacity: 1;
}

.landing-hero.movilidad-geo-hero .landing-hero-note,
.landing-hero.movilidad-geo-hero .landing-hero-disclaimer,
.landing-hero.movilidad-hero .landing-hero-note,
.landing-hero.movilidad-hero .landing-hero-disclaimer {
  color: #64748b;
  opacity: 1;
}

.movilidad-hero-media img,
.movilidad-geo-hero .movilidad-hero-media img {
  object-fit: contain;
  max-height: min(520px, 70vh);
  background: #fff;
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.08);
}

.movilidad-hub-search-section,
.movilidad-catalog-section {
  padding: 2.5rem 0 3rem;
  background: #f8fafc;
}

.movilidad-search-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.movilidad-product-search {
  display: flex;
  gap: 0.5rem;
  max-width: 42rem;
}

.movilidad-product-search-input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 1rem;
}

.movilidad-product-search-btn {
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 12px;
  background: #1d4ed8;
  color: #fff;
  cursor: pointer;
}

.movilidad-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.movilidad-cat-btn {
  padding: 0.45rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  font-size: 0.88rem;
  cursor: pointer;
}

.movilidad-cat-btn.is-active {
  background: #1e3a5f;
  border-color: #1e3a5f;
  color: #fff;
}

.movilidad-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.movilidad-featured-grid {
  margin-top: 1rem;
}

.movilidad-results-count {
  font-size: 0.92rem;
  color: #64748b;
  margin: 0 0 1rem;
}

.movilidad-catalog-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
}

.movilidad-guides-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .movilidad-guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.movilidad-guide-card {
  padding: 1.15rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
}

.movilidad-guide-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.movilidad-guide-card p {
  margin: 0 0 0.75rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}

.movilidad-guide-link {
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
}

.product-price-compare {
  font-size: 0.85rem;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
}

.movilidad-product-card[hidden] {
  display: none !important;
}

/* Top search bar (Andafacil-style) */
.movilidad-top-search-wrap {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 1.25rem;
}

.movilidad-top-search {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.movilidad-top-search input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-size: 1rem;
}

.movilidad-top-search input[type="search"]:focus {
  outline: 2px solid #1d4ed8;
  outline-offset: 1px;
  border-color: #1d4ed8;
}

.movilidad-top-search-btn {
  border: 0;
  border-radius: 999px;
  background: #1e3a5f;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.35rem;
  cursor: pointer;
}

/* Andafacil-style hub hero + Don Andy carousel */
.movilidad-af-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 1.25rem clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(180deg, #f0f7ff 0%, #fff 55%, #f8fafc 100%);
}

.movilidad-af-hero-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .movilidad-af-hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.movilidad-af-hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f2744;
  line-height: 1.08;
  max-width: 16ch;
}

.movilidad-af-hero-lead {
  margin: 0 0 1.25rem;
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  line-height: 1.65;
  color: #475569;
  max-width: 38rem;
}

.movilidad-af-trust {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.movilidad-af-trust li {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dbeafe;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e3a5f;
}

.movilidad-af-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.movilidad-af-hero-visual {
  min-width: 0;
  max-width: min(100%, 34rem);
  margin: 0 auto;
  width: 100%;
}

.movilidad-af-hero-carousel-viewport {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: min(560px, 68vh);
  width: 100%;
}

.movilidad-af-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.movilidad-af-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.movilidad-af-hero-slide img {
  width: 100%;
  height: auto;
  max-height: min(560px, 68vh);
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .movilidad-af-hero-slide { transition: none; }
}

@media (max-width: 899px) {
  .movilidad-af-hero-copy { text-align: center; }
  .movilidad-af-trust,
  .movilidad-af-hero-actions { justify-content: center; }
  .movilidad-af-hero-copy h1 { max-width: none; margin-left: auto; margin-right: auto; }
  .movilidad-af-hero-visual { order: -1; max-width: min(100%, 26rem); }
}

/* Product guide page — mirror Andafacil guía hero (1080px, 14ch title, clean image) */
.movilidad-breadcrumbs {
  padding: 0.85rem 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

.movilidad-breadcrumbs a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.movilidad-product-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 1.25rem clamp(2.5rem, 6vw, 4rem);
  background: #fff;
}

.movilidad-product-hero-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
  width: 100%;
  min-width: 0;
}

@media (min-width: 900px) {
  .movilidad-product-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }
}

.movilidad-product-copy {
  min-width: 0;
}

.movilidad-breadcrumb {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: #64748b;
}

.movilidad-breadcrumb a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.movilidad-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.movilidad-product-copy .movilidad-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
}

/* Pixel sizes match Andafacil guías (their rem assumes ~16px root; ours is 19px) */
.movilidad-product-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(33.6px, 5.5vw, 53.6px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a2540;
  line-height: 1.08;
  max-width: 14ch;
}

.movilidad-price-label {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.movilidad-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0 0 0.55rem;
}

.movilidad-price-current {
  font-size: clamp(34.4px, 5.5vw, 48px);
  font-weight: 800;
  color: #1d4ed8;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.movilidad-price-was,
.movilidad-price-monthly {
  font-size: clamp(15.2px, 2.4vw, 17.6px);
  font-style: italic;
  font-weight: 500;
  color: #64748b;
  line-height: 1.25;
}

.movilidad-price-mxn {
  margin: 0 0 1rem;
  color: #64748b;
  font-size: 0.95rem;
}

.movilidad-price-was-inline {
  text-decoration: line-through;
  font-style: italic;
}

.movilidad-price-clarity {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #ecfdf5 0%, #e8f5ef 100%);
  border: 2px solid #6ee7b7;
}

.movilidad-price-clarity-title {
  margin: 0 0 0.75rem;
  font-size: clamp(16.8px, 2.8vw, 19.2px);
  font-weight: 800;
  color: #065f46;
  line-height: 1.25;
}

.movilidad-price-clarity-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.movilidad-price-clarity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: clamp(16.3px, 2.6vw, 17.9px);
  line-height: 1.45;
  color: #064e3b;
}

.movilidad-price-clarity-list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #059669;
}

.movilidad-hero-lead {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #475569;
}

.movilidad-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: center;
}

.movilidad-hero-actions .btn-primary,
.movilidad-hero-actions .btn-secondary {
  padding: 0.95rem 1.65rem;
  font-size: 1.05rem;
  min-height: 48px;
  border-radius: 10px;
}

.movilidad-hero-secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.movilidad-hero-secondary-links a {
  color: #1d4ed8;
  text-decoration: none;
}

.movilidad-hero-secondary-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.movilidad-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.movilidad-trust-row li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.35;
  max-width: 11rem;
}

.movilidad-trust-row svg {
  flex-shrink: 0;
  color: #1d4ed8;
}

.movilidad-hero-img {
  min-width: 0;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Only the product photo */
.movilidad-hero-img > img {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: min(480px, 65vh);
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

@media (max-width: 899px) {
  .movilidad-product-copy h1 {
    max-width: none;
  }
}

.movilidad-gallery-section h2 {
  text-align: center;
  margin: 0 0 0.5rem;
}

.movilidad-gallery-lead {
  text-align: center;
  color: #64748b;
  margin: 0 0 1.35rem;
}

.movilidad-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.movilidad-gallery-item {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fafafa;
  padding: 0.5rem;
  overflow: hidden;
  cursor: zoom-in;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.movilidad-gallery-item:hover {
  box-shadow: 0 8px 24px rgba(15, 39, 68, 0.1);
  transform: translateY(-2px);
}

.movilidad-gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.movilidad-lightbox {
  border: none;
  border-radius: 16px;
  padding: 0;
  max-width: min(92vw, 720px);
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 39, 68, 0.28);
}

.movilidad-lightbox::backdrop {
  background: rgba(15, 39, 68, 0.55);
}

.movilidad-lightbox img {
  width: 100%;
  height: auto;
  display: block;
  padding: 1.5rem;
}

.movilidad-lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #0f2744;
}

.movilidad-feature-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .movilidad-feature-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.movilidad-feature-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.movilidad-feature-list li {
  position: relative;
  padding-left: 1.35rem;
  line-height: 1.55;
  color: #334155;
}

.movilidad-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #1d4ed8;
}

.movilidad-feature-media img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.movilidad-testimonials-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .movilidad-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.movilidad-testimonial-card {
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.movilidad-testimonial-tag {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1d4ed8;
}

.movilidad-testimonial-quote {
  margin: 0 0 0.75rem;
  line-height: 1.55;
  color: #334155;
}

.movilidad-testimonial-meta {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

.movilidad-videos-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .movilidad-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.movilidad-video-wrap {
  margin: 0;
}

.movilidad-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
}

.movilidad-video-frame iframe,
.movilidad-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.movilidad-video-caption {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
}

.movilidad-video-caption a {
  color: #1d4ed8;
  word-break: break-all;
}

/* Pre-checkout (before Stripe) */
.movilidad-precheckout {
  padding: clamp(2rem, 5vw, 3.5rem) 0 3.5rem;
  background: linear-gradient(180deg, #f0f7ff 0%, #fff 40%);
}

.movilidad-precheckout-inner {
  max-width: 720px;
}

.movilidad-precheckout h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: #0f2744;
  font-weight: 800;
}

.movilidad-precheckout-product {
  margin: 0 0 1.5rem;
  color: #475569;
  font-size: 1.05rem;
}

.movilidad-precheckout-card {
  margin: 0 0 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 39, 68, 0.06);
}

.movilidad-precheckout-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  color: #0f2744;
}

.movilidad-precheckout-list,
.movilidad-precheckout-bullets {
  margin: 0;
  padding-left: 1.25rem;
  color: #334155;
  line-height: 1.55;
}

.movilidad-precheckout-list li + li,
.movilidad-precheckout-bullets li + li {
  margin-top: 0.45rem;
}

.movilidad-precheckout-note {
  margin: 1rem 0 0;
  color: #475569;
  line-height: 1.55;
  font-size: 0.98rem;
}

.movilidad-precheckout-validity {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.95rem;
}

.movilidad-precheckout-video {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 360px;
  margin: 1rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 12px 36px rgba(15, 39, 68, 0.18);
}

.movilidad-precheckout-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.movilidad-precheckout-video-hint {
  text-align: center;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.movilidad-precheckout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.movilidad-precheckout-actions .btn-primary,
.movilidad-precheckout-actions .btn-secondary,
.movilidad-precheckout-actions .btn-whatsapp {
  min-height: 48px;
  padding: 0.9rem 1.5rem;
}

.movilidad-hero-secondary-links .movilidad-wa-text-link,
a.movilidad-wa-text-link {
  color: #128c7e;
  font-weight: 700;
}

.movilidad-hero-secondary-links .movilidad-wa-text-link:hover,
a.movilidad-wa-text-link:hover {
  color: #075e54;
}

/* WhatsApp nav CTA when header action opens WhatsApp */
.landing-nav-cta.btn-whatsapp,
a.landing-nav-cta[href*="wa.me"],
a.landing-nav-cta[href*="whatsapp.com"],
a.landing-nav-cta[href*="api.whatsapp.com"] {
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}

.landing-nav-cta.btn-whatsapp:hover,
a.landing-nav-cta[href*="wa.me"]:hover,
a.landing-nav-cta[href*="whatsapp.com"]:hover,
a.landing-nav-cta[href*="api.whatsapp.com"]:hover {
  background: #1ebe57;
  color: #fff;
  filter: none;
}

/* —— Acerca de MandaFacil —— */
.acerca-video-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #1a1d24;
}

.acerca-video-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.acerca-video-hero-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.acerca-video-hero-poster {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acerca-video-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 28, 0.55) 0%, rgba(12, 16, 28, 0.72) 100%);
  z-index: 1;
}

.acerca-video-hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4.5rem 1.25rem;
  max-width: 52rem;
}

.acerca-video-hero-copy .landing-hero-eyebrow {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.acerca-video-hero-copy h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.acerca-video-hero-copy .landing-hero-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 0 auto 1.5rem;
  max-width: 38rem;
}

.acerca-video-hero-copy .btn-landing-cta {
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .acerca-video-hero-iframe {
    display: none;
  }

  .acerca-video-hero-poster {
    display: block;
  }
}

.acerca-page .acerca-kicker {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.acerca-story {
  padding: 3.25rem 0;
  background: var(--surface);
}

.acerca-story--alt {
  background: var(--strip-bg-gray);
}

.acerca-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.acerca-story--flip .acerca-story-grid {
  grid-template-columns: 1fr 1.05fr;
}

.acerca-story--flip .acerca-story-media {
  order: 2;
}

.acerca-story--flip .acerca-story-copy {
  order: 1;
}

.acerca-story-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.acerca-story-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 770 / 514;
  object-fit: cover;
}

.acerca-story-copy h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  margin-bottom: 0.9rem;
  color: var(--text);
}

.acerca-story-copy p:last-child {
  color: var(--text-muted);
  max-width: 38rem;
}

.acerca-founder {
  background: linear-gradient(180deg, #e8eeff 0%, var(--page-bg) 100%);
}

.acerca-founder-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2.5rem;
  align-items: center;
}

.acerca-founder-media {
  margin: 0;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.acerca-founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acerca-founder-lead {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.acerca-founder-copy p {
  color: var(--text-muted);
}

.acerca-founder-copy h2,
.acerca-founder-lead {
  color: var(--text);
}

.acerca-founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.acerca-founder-social {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 104, 246, 0.1);
  color: var(--brand-blue);
  text-decoration: none;
  transition: background 0.16s ease, transform 0.16s ease;
}

.acerca-founder-social:hover {
  background: rgba(61, 104, 246, 0.18);
  transform: translateY(-1px);
  text-decoration: none;
}

.acerca-founder-social-icon {
  display: block;
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: var(--fa-icon) center / contain no-repeat;
  mask: var(--fa-icon) center / contain no-repeat;
}

.acerca-founder-links a,
.acerca-text-link {
  font-weight: 700;
  text-decoration: none;
}

.acerca-text-link:hover {
  text-decoration: underline;
}

.acerca-investor {
  background: var(--surface);
}

.acerca-investor-inner {
  max-width: 46rem;
}

.acerca-investor-inner h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin-bottom: 1rem;
}

.acerca-investor-inner p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.acerca-investor-inner .acerca-text-link {
  display: inline-block;
  margin-top: 0.35rem;
}

.acerca-section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  margin-bottom: 0.5rem;
}

.acerca-section-lead {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.acerca-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.acerca-press-card {
  background: var(--strip-bg-gray);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.acerca-press-logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 64px;
  margin-bottom: 0.55rem;
}

.acerca-press-logo {
  max-width: 200px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.acerca-press-outlet {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.acerca-press-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.9rem;
  font-weight: 600;
  flex: 1;
}

.acerca-press-card a {
  font-weight: 700;
  text-decoration: none;
}

.acerca-press-card a:hover {
  text-decoration: underline;
}

.acerca-press-more {
  margin-top: 1.5rem;
  text-align: center;
}

.acerca-press-more a {
  font-weight: 700;
  text-decoration: none;
}

.acerca-press-more a:hover {
  text-decoration: underline;
}

.acerca-related {
  padding-top: 0.5rem;
}

@media (max-width: 900px) {
  .acerca-story-grid,
  .acerca-story--flip .acerca-story-grid,
  .acerca-founder-grid {
    grid-template-columns: 1fr;
  }

  .acerca-story--flip .acerca-story-media,
  .acerca-story--flip .acerca-story-copy {
    order: initial;
  }

  .acerca-founder-media {
    max-width: 280px;
    margin-inline: auto;
  }

  .acerca-press-grid {
    grid-template-columns: 1fr;
  }
}


