/* ===========================================
   RESET, VARIABLES & BRAND TOKENS – MACVASQUEZ
=========================================== */
:root {
  /* TOKENS DE MARCA (estáticos) */
  --mv-primary:        #1A1446;
  --mv-secondary:      #332C6E;
  --mv-accent:         #FF6B00;
  --mv-accent-soft:    #FFB347;

  /* Alias / compatibilidad con estilos anteriores */
  --mv-blue-dark: var(--mv-primary);
  --mv-blue:      #19527f;
  --mv-blue-soft: #246a9d;
  --mv-blue-bg:   #1d6f9c;
  --mv-blue-pale: #e3f1fb;

  --mv-orange:       var(--mv-accent);
  --mv-orange-deep:  #e75a12;
  --mv-purple-soft:  #c08af5;
  --mv-node-pink:    #f48bdc;

  --mv-text:      #0f172a;
  --mv-text-soft: #6b7280;
  --mv-white:     #ffffff;

  --radius-lg:   24px;
  --radius-md:   18px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --max-width:   1120px;
}

/* ===========================================
   UTILIDADES DE DEGRADADOS (HÍBRIDO)
=========================================== */

/* Base lineal reutilizable */
.mv-gradient {
  background-image: linear-gradient(
    var(--mv-grad-direction, to right),
    var(--mv-grad-c1, var(--mv-primary)),
    var(--mv-grad-c2, var(--mv-secondary)),
    var(--mv-grad-c3, var(--mv-accent))
  );
}

/* Direcciones */
.mv-grad-to-right         { --mv-grad-direction: to right; }
.mv-grad-to-left          { --mv-grad-direction: to left; }
.mv-grad-to-bottom        { --mv-grad-direction: to bottom; }
.mv-grad-to-top           { --mv-grad-direction: to top; }
.mv-grad-to-bottom-right  { --mv-grad-direction: to bottom right; }
.mv-grad-to-top-left      { --mv-grad-direction: to top left; }

/* Versión hasta 6 colores */
.mv-gradient-6 {
  background-image: linear-gradient(
    var(--mv-grad-direction, to right),
    var(--mv-grad-c1, var(--mv-primary)),
    var(--mv-grad-c2, var(--mv-secondary)),
    var(--mv-grad-c3, #4B3C9E),
    var(--mv-grad-c4, var(--mv-accent)),
    var(--mv-grad-c5, var(--mv-accent-soft)),
    var(--mv-grad-c6, #FFFFFF)
  );
}

/* Radial / circular reutilizable */
.mv-gradient-radial {
  background-image: radial-gradient(
    var(--mv-grad-shape, circle) at var(--mv-grad-position, center),
    var(--mv-grad-c1, var(--mv-primary)),
    var(--mv-grad-c2, var(--mv-secondary)),
    var(--mv-grad-c3, var(--mv-accent))
  );
}

/* Posiciones de centro radial */
.mv-grad-center        { --mv-grad-position: center; }
.mv-grad-top-left      { --mv-grad-position: top left; }
.mv-grad-top-right     { --mv-grad-position: top right; }
.mv-grad-bottom-left   { --mv-grad-position: bottom left; }
.mv-grad-bottom-right  { --mv-grad-position: bottom right; }

/* Texto en degradado */
.mv-text-gradient {
  background-image: linear-gradient(
    var(--mv-txt-direction, to right),
    var(--mv-txt-c1, var(--mv-accent)),
    var(--mv-txt-c2, var(--mv-accent-soft)),
    var(--mv-txt-c3, #ffffff)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mv-text-to-right  { --mv-txt-direction: to right; }
.mv-text-to-left   { --mv-txt-direction: to left; }
.mv-text-to-bottom { --mv-txt-direction: to bottom; }
.mv-text-to-top    { --mv-txt-direction: to top; }
/* Degradado morado → naranja tipo PayPhone */
.mv-text-payphone {
  --mv-txt-direction: to right;
  --mv-txt-c1: #8b5cf6;  /* morado */
  --mv-txt-c2: #ec4899;  /* fucsia intermedio */
  --mv-txt-c3: #f97316;  /* naranja */
}

/* ===========================================
   RESET GLOBAL
=========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #2e7fb0 0, #053254 45%, #021627 100%);
  color: var(--mv-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ===========================================
   NAVBAR
=========================================== */
/* NAV base: casi transparente sobre el hero */
/* NAV base: TRANSPARENTE sobre el hero (estilo PayPhone) */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;

  background: transparent;          /* sin color al inicio */
  backdrop-filter: none;            /* sin blur al inicio */
  border-bottom: 1px solid transparent;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 42px;              /* un poco más grande para tu logo */
  height: 42px;
  border-radius: 999px;
  overflow: hidden;         /* recorta perfectamente el logo */
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;  /* quitamos el degradado antiguo */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* mantiene proporción del logo */
  padding: 4px;              /* centrado visual */
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text span:first-child {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.brand-text span:last-child {
  font-size: 11px;
  color: #a3b9d4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 0;
  color: #9fb5d1;
  position: relative;
  font-weight: 500;
  transition: color 0.18s ease;
}
/* ================================
   NAV – ESTADO TRANSPARENTE
================================ */
/* NAV – ESTADO TRANSPARENTE (solo cuando NO tiene .scrolled) */
.nav-payphone:not(.scrolled) .brand-text span:first-child,
.nav-payphone:not(.scrolled) .brand-text span:last-child,
.nav-payphone:not(.scrolled) .nav-links a {
  color: #ffffff;
}

/* Hover sigue funcionando igual */
.nav-payphone .nav-links a:hover {
  color: #ffffff;
}

.nav-payphone .nav-links a:hover::after {
  width: 100%;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mv-orange), #ffd7a9);
  transition: width 0.18s ease;
}

.nav-links a:hover {
  color: var(--mv-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Estado nav scrolled (para páginas claras) */
.nav-payphone.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #d5e3f2;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.nav-payphone.scrolled .brand-text span:first-child,
.nav-payphone.scrolled .brand-text span:last-child,
.nav-payphone.scrolled .nav-links a {
  color: #0f172a;
}

.nav-payphone.scrolled .btn-outline {
  border-color: #d2e4f5;
  color: #0f172a;
  background: #f3f7fd;
}

/* ===========================================
   BOTONES
=========================================== */
.btn {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Azul principal marca */
.btn-primary {
  background: linear-gradient(135deg, var(--mv-blue-soft), var(--mv-blue-dark));
  color: var(--mv-white);
  box-shadow: 0 14px 32px rgba(0, 69, 110, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0, 69, 110, 0.7);
}

/* Botón contorno */
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: #dbe7f7;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

/* Botón fantasma claro para tarjetas en fondos blancos */
.btn-ghost {
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid #cde3f8;
  background: #f5f9ff;
  color: #13507a;
}

.btn-ghost:hover {
  background: #e5f1ff;
  border-color: #9dc3ec;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

/* Botón con flecha */
.btn-arrow {
  position: relative;
  padding-right: 2.4rem;
}

.btn-arrow::after {
  content: "➜";
  font-size: 0.85rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Botón especial checkout (naranja) */
.btn-checkout {
  background: linear-gradient(135deg, var(--mv-orange), var(--mv-orange-deep));
  border-color: var(--mv-orange-deep);
  color: var(--mv-white);
  box-shadow: 0 14px 32px rgba(244, 116, 42, 0.6);
}

.btn-checkout:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(244, 116, 42, 0.8);
}

/* ===========================================
   NAV RESPONSIVE
=========================================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6px 14px 14px;
}

.nav-mobile-inner a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: #e2ebf5;
}

.nav-mobile-inner a:hover {
  color: #ffffff;
}

.nav-mobile-inner .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .nav-inner {
    padding-inline: 14px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ===========================================
   SECCIONES GENERALES
=========================================== */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 18px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.section-subtitle {
  font-size: 13px;
  color: #9fb3cf;
  margin-bottom: 16px;
}

/* ===========================================
   HERO FULL (con imagen de fondo variable)
=========================================== */
.hero-full {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 5.2rem 0 5rem;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(192, 138, 245, 0.4) 0, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.65) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
  color: var(--mv-white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px;
}

.hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cfdcf5;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(3rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 3px 12px rgba(1, 10, 21, 0.6);
}

/* Highlight estándar (naranja/macvasquez) */
.hero-highlight {
  color: var(--mv-orange);
}

/* Variante para usar sobre fondos naranjas (texto oscuro) */
.hero-highlight-dark {
  color: #111827;
}

/* Subtítulo hero */
.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
  color: #d0d9eb;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.trust-label {
  font-size: 0.86rem;
  color: #b6c4dd;
}

.trust-pill {
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(5, 53, 94, 0.92);
  color: #e5f2ff;
}

/* Hero imagen (cuando se use) */
.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* ===========================================
   GRID & CARDS
=========================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  border-radius: var(--radius-md);
  background: #031322;
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 14px 14px 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9fb3cf;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
}

.card-body {
  font-size: 13px;
  color: #9fb3cf;
}

.card-footer-link {
  margin-top: 4px;
  font-size: 12px;
  color: var(--mv-orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ===========================================
   PRODUCTOS OSCUROS (product-card)
=========================================== */
.product-card {
  border-radius: var(--radius-md);
  background: #031021;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.85);
  padding: 18px 18px 16px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.product-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9fb3cf;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-body {
  font-size: 13px;
  color: #9fb3cf;
  margin-bottom: 8px;
}

.product-features {
  font-size: 12px;
  color: #9fb3cf;
  margin-bottom: 10px;
}

.product-features li {
  margin-left: 16px;
  margin-bottom: 2px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.price-pill {
  font-size: 13px;
  background: rgba(244, 116, 42, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--mv-orange);
}

/* ===========================================
   PÁGINAS CLARAS (secciones tipo landing)
=========================================== */
.page-payphone {
  background: #e6f2fb;
  color: var(--mv-text);
}

/* Beneficios – fondo claro */
.beneficios-payphone {
  padding: 4rem 0;
  background: #edf4fc;
  border-bottom: 1px solid #d3e4f7;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: center;
}

.beneficios-image {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.section-title-light {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.section-subtitle-light {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.beneficios-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.beneficio-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  font-size: 0.92rem;
}

/* PARA QUIÉN ES */
.para-quien-payphone {
  padding: 4rem 0;
  background: #ffffff;
  border-top: 1px solid #dbe4f1;
  border-bottom: 1px solid #dbe4f1;
}

.section-header-center {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}

.kicker-small {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--mv-blue-soft);
  margin-bottom: 0.35rem;
}

.section-title-strong {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.section-subtitle-center {
  font-size: 0.98rem;
  color: #4b5563;
}

.para-quien-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.para-quien-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
}

.para-quien-image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.para-quien-body {
  padding: 1.2rem 1.4rem 1.4rem;
  font-size: 0.95rem;
}

/* Productos claros (cards) */
.productos-payphone {
  padding: 4rem 0;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card-light {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

/* Chips claros */
.card-chip {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #e3f1ff;
  color: #1d4f75;
  margin-bottom: 0.5rem;
}

/* ===========================================
   CARRUSEL LOGOS CLIENTES
=========================================== */
.clientes-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #ffffff;
  overflow: hidden;
  border-top: 1px solid #dbe4f1;
  border-bottom: 1px solid #dbe4f1;
}

.clientes-section .logos-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.logo-item {
  flex: 0 0 auto;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  opacity: 0.92;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.logo-item img {
  width: 90px;
  height: 32px;
  object-fit: cover;
  border-radius: 999px;
}

.logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  opacity: 1;
}

/* ===========================================
   VALORES (Cards en degradado azul)
=========================================== */
.valores-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, #0b4f7a 0, #0b6fa3 45%, #2f7fb0 100%);
  color: var(--mv-white);
  overflow: hidden;
}

.valores-section .section-title-strong,
.valores-section .section-subtitle-center {
  color: var(--mv-white);
}

.valores-section .productos-grid {
  gap: 1.7rem;
}

.valores-section .card-light {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #e5f3ff 0, #ffffff 40%, #cfe6ff 100%);
  border-radius: 20px;
  border: 1px solid #b9d5ff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  transform: translateY(0);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.valores-section .card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.3);
  border-color: var(--mv-orange);
}

/* ===========================================
   CARRUSEL NEGOCIOS (business-carousel)
=========================================== */
.business-carousel-section {
  padding: 4rem 0;
  background: #ffffff;
}

.business-carousel-header {
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  padding: 0 18px;
}

.business-carousel-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.business-carousel-header p {
  font-size: 0.98rem;
  color: #4b5563;
}

.business-carousel {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px;
  overflow: hidden;
  background: transparent !important; /* <-- quita el fondo plomo */
}

.business-carousel-track {
  display: flex;
  gap: 1.5rem;
  animation: businessCarouselSlide 32s linear infinite;
  background: transparent !important; /* por si acaso */
}

.business-card {
  flex: 0 0 320px;
  background: #ffffff;
  border-radius: 22px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.business-card-title {
  font-weight: 600;
  font-size: 1.02rem;
  color: #0f172a;
}

.business-card-meta {
  font-size: 0.82rem;
  color: #4b5563;
}

.business-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0.75rem;
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

@keyframes businessCarouselSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===========================================
   EFECTO HOVER EN IMÁGENES (img-hover-tilt)
=========================================== */
.img-hover-tilt {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.img-hover-tilt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  transform-origin: center center;
}

.img-hover-tilt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
    rgba(255, 255, 255, 0.45) 0,
    transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.img-hover-tilt:hover img {
  transform: scale(1.06) translateY(-4px);
  filter: brightness(1.03);
}

.img-hover-tilt:hover::after {
  opacity: 1;
}

/* ===========================================
   HOVER EN CARDS GENERALES
=========================================== */
.card,
.card-light,
.beneficio-card,
.para-quien-card,
.product-card,
.business-card {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.card:hover,
.card-light:hover,
.beneficio-card:hover,
.para-quien-card:hover,
.product-card:hover,
.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.2);
}

/* ===========================================
   FAQ – Preguntas frecuentes
=========================================== */
.faq-section {
  width: 100%;
  background: #f3f6fb;
  padding: 4rem 0;
}

.faq-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 3rem;
}

.faq-eyebrow {
  font-size: 0.9rem;
  color: var(--mv-blue-soft);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.faq-title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.faq-description {
  font-size: 0.98rem;
  color: #4b5563;
}

.faq-list {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 0.4rem 0.6rem;
}

.faq-item + .faq-item {
  border-top: 1px solid #e5e7ef;
}

.faq-item {
  padding: 0.75rem 0.9rem;
}

.faq-question {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  color: #111827;
}

.faq-toggle-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #cbd5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #4b5563;
}

.faq-answer {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 0.5rem;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* FAQ responsive */
@media (max-width: 900px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   SECCIONES FULLWIDTH & FONDOS
=========================================== */
.section-fullwidth {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 4rem 0;
}

.section-solid-white {
  background: #ffffff;
}

.section-solid-cream {
  background: #edf4fc;
}

.section-solid-soft {
  background: #e3f1fb;
}

/* Degradado naranja-azul marca */
.section-gradient-orange {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 22%, transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.12) 20%, transparent 60%),
    linear-gradient(135deg, #ffb969 0%, #ff8a2a 35%, var(--mv-orange) 70%, var(--mv-orange-deep) 100%);
  color: #111827;
}

/* Degradado azul profundo marca */
.section-gradient-purple {
  background: linear-gradient(135deg, #0b2140 0, #0b4f7a 40%, #2f7fb0 100%);
  color: #e5f2ff;
}

/* ===========================================
   FOOTER OSCURO
=========================================== */
.footer-payphone {
  background: #020b15;
  border-top: 1px solid #102135;
  color: #9fb5d1;
}

.footer-payphone .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.2rem 18px 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.footer-brand h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 18rem;
}
.footer-logo {
  width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
  margin-bottom: 0.8rem;
}
.footer-links-group h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li + li {
  margin-top: 0.25rem;
}

.footer-links-list a {
  font-size: 0.86rem;
  color: #cbd5f5;
  transition: color 0.16s ease, transform 0.16s ease;
}

.footer-links-list a:hover {
  color: var(--mv-orange);
  transform: translateX(2px);
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  font-size: 0.8rem;
  border-top: 1px solid #101827;
  padding-top: 0.8rem;
}

.footer-bottom-slogan {
  color: #cbd5f5;
}

@media (max-width: 720px) {
  .footer-layout {
    flex-direction: column;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================================
   RESPONSIVE HERO & GRIDS
=========================================== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-image-wrapper {
    order: -1;
  }
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
  .para-quien-grid {
    grid-template-columns: 1fr;
  }
  .productos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .productos-grid {
    grid-template-columns: 1fr;
  }
  .beneficios-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   UTILITARIOS EXTRA
=========================================== */
.text-purple { color: var(--mv-secondary); }
.text-orange { color: var(--mv-orange); }
.text-muted  { color: #6b7280; }

.heading-highlight-purple {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.08;
}
.heading-highlight-purple span {
  color: var(--mv-secondary);
}

/* Ajustes de contraste específicos para la sección #cobra-desde
   cuando el fondo es naranja completo */
#cobra-desde .hero-title {
  color: #ffffff;
}
#cobra-desde .hero-highlight {
  color: #151515 !important;
}
#cobra-desde .hero-subtitle {
  color: #2b1300;
}
/* ===========================================
   PRODUCTOS – Card con imagen 100% y overlay
=========================================== */
.product-card-overlay {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background-image: var(--product-img);
  background-size: cover;
  background-position: center;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  color: #ffffff;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.92) 0%,
    rgba(15, 23, 42, 0.65) 40%,
    rgba(15, 23, 42, 0.25) 75%,
    rgba(15, 23, 42, 0.05) 100%
  );
}

.product-card-overlay:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.25);
}

/* Contenido sobre la imagen */
.product-overlay-inner {
  position: relative;
  padding: 1.3rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

/* Chip sobre fondo de vidrio */
.card-chip-soft {
  background: rgba(255, 255, 255, 0.18);
  color: #e5f2ff;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
}

/* Ajuste de textos en overlay */
.product-card-overlay .card-title {
  color: #ffffff;
  font-size: 1.05rem;
}

.product-card-overlay .card-body {
  color: #dbeafe;
  font-size: 0.9rem;
}

/* Botón un poco más claro sobre fondo oscuro */
.product-card-overlay .btn-primary {
  background: linear-gradient(135deg, var(--mv-orange), var(--mv-orange-deep));
  box-shadow: 0 12px 30px rgba(244, 116, 42, 0.75);
}





