/* ==========================================================================
   INDEX CSS - IDENTIDAD CORPORATIVA MÁS VENDING
   Estilo: Warm Minimalist (Blanco Puro #FFFFFF y Cremas Suaves #FDFBF7 / #FAF8F5)
   Uso Estratégico del Color: Degradado Cálido Reservado Exclusivamente para CTAs
   Tipografía Unificada: Montserrat (Encabezados/Títulos) + Inter (Cuerpo/UI)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@500;600;700;800;900&display=swap');

:root {
  /* 1. Colores de Identidad Más Vending */
  --mv-red: #ED1C24;
  --mv-red-hover: #c9141b;
  --mv-red-soft: #fff1f2;

  --mv-orange: #F58220;
  --mv-orange-hover: #d96d11;
  --mv-orange-soft: #fff7ed;

  --mv-yellow: #FFC20E;
  --mv-yellow-hover: #e5ab00;
  --mv-yellow-soft: #fefce8;

  --mv-coffee: #421E09;
  --mv-coffee-light: #6B3510;

  /* 2. Gradiente Cálido de Marca (Reservado Exclusivamente para Botones CTA e Interacción Clave) */
  --mv-gradient-brand: linear-gradient(135deg, #F58220 0%, #ED1C24 100%);
  --mv-gradient-warm: linear-gradient(135deg, #F58220 0%, #ED1C24 100%);
  --mv-gradient-subtle: linear-gradient(135deg, #fff7ed 0%, #fff1f2 100%);

  /* 3. Fondos Predominantes con Marca de Agua Institucional Más Vending (~5% opacidad) */
  --bg-white: #FFFFFF;
  --bg-cream: #FFFFFF;
  --bg-warm-soft: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-subtle-border: #F1F5F9;
  --mv-pattern-watermark: url('/masvending/assets/img/fondos/patron-marca-agua.svg');
  --mv-pattern-bg: #FFFFFF url('/masvending/assets/img/fondos/patron-marca-agua.svg') repeat;

  /* 4. Textos de Alto Contraste y Jerarquía */
  --text-main: #0F172A;
  --text-dark: #020617;
  --text-muted: #64748B;
  --text-subtle: #94A3B8;

  /* 5. Bordes Limpios & Micro-Sombras */
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;
  --border-warm: #E2E8F0;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 10px 25px -4px rgba(15, 23, 42, 0.07), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --shadow-warm-button: 0 4px 14px rgba(237, 28, 36, 0.28);

  /* 6. Sistema Tipográfico Unificado */
  --font-heading: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family: var(--font-body);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--total-header-height, 114px);
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  background-image: var(--mv-pattern-watermark);
  background-repeat: repeat;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.showroom-hero-title,
.selector-card-title,
.pilar-title,
.tecnologia-title,
.logistica-feature-title,
.punto-venta-overlay-title,
.pv-info-title,
.solucion-title,
.producto-title,
.prefooter-map-title,
.slogan-text,
.section-eyebrow,
.metric-value,
.stat-number,
.tab-btn {
  font-family: var(--font-heading) !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* ==========================================================================
   SISTEMA DE BOTONES CTA WARM MINIMALIST (MÁS VENDING)
   ========================================================================== */
.btn-primary,
.btn-hero-primary {
  background: var(--mv-gradient-warm);
  color: #FFFFFF !important;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-warm-button);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary:hover,
.btn-hero-primary:hover {
  background: linear-gradient(135deg, #d96d11 0%, #c9141b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -2px rgba(237, 28, 36, 0.38);
  color: #FFFFFF !important;
}

.btn-hero-outline,
.btn-secondary {
  background: #FFFFFF;
  color: var(--text-main) !important;
  border: 1px solid var(--border-light);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-hero-outline:hover,
.btn-secondary:hover {
  border-color: #CBD5E1;
  color: var(--mv-red) !important;
  background: var(--bg-warm-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
  border-radius: 8px;
}

/* Encabezados y Contenedores */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 44px;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: #FFF1F2;
  color: var(--mv-red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  margin-bottom: 12px;
  border: 1px solid rgba(237, 28, 36, 0.15);
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.section-title span.highlight-warm {
  color: var(--mv-red);
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   SECCIÓN 1 – HERO WARM MINIMALIST (MÁS VENDING)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 560px;
  background-color: var(--bg-white);
  background-image: var(--mv-pattern-watermark);
  background-repeat: repeat;
  display: flex;
  align-items: center;
  padding: 56px 24px 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-bg-decoration {
  display: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-slogan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.slogan-pulse {
  width: 8px;
  height: 8px;
  background: var(--mv-red);
  border-radius: 50%;
}

.slogan-text {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #334155;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.hero-title span.accent-red {
  color: var(--mv-red);
}

.hero-title span.accent-orange {
  color: var(--mv-orange);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-feature-tags {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.hero-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-tag-item svg {
  color: var(--mv-red);
}

/* Columna Visual del Hero */
.hero-visual-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-image-wrap {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  position: relative;
  background-color: #FFFFFF;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-main-image-wrap:hover .hero-main-image {
  transform: scale(1.02);
}

/* Badges flotantes en el Hero */
.floating-badge {
  position: absolute;
  background: #FFFFFF;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-light);
  z-index: 3;
}

.floating-badge-1 {
  top: -12px;
  right: -12px;
}

.floating-badge-2 {
  bottom: 20px;
  left: -16px;
}

.badge-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #F8FAFC;
  color: var(--mv-red);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.badge-text-primary {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
}

.badge-text-secondary {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0px);
  }

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

/* ==========================================================================
   SECCIÓN 2 – CARRUSEL HORIZONTAL DE SERVICIOS (QUÉ HACE MÁS VENDING)
   ========================================================================== */
.carrusel-servicios-section {
  padding: 68px 24px 76px;
  background-color: var(--bg-white);
  background-image: var(--mv-pattern-watermark);
  background-repeat: repeat;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.carrusel-servicios-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.carrusel-servicios-intro {
  max-width: 700px;
}

.carrusel-controles-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carrusel-status-counter {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.04em;
}

.carrusel-status-counter .counter-current {
  color: var(--mv-red);
  font-weight: 800;
}

.carrusel-nav-buttons {
  display: flex;
  gap: 10px;
}

.carrusel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.carrusel-nav-btn:hover {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
  transform: scale(1.06);
  box-shadow: var(--shadow-md);
}

.carrusel-nav-btn:active {
  transform: scale(0.95);
}

.carrusel-nav-btn:disabled,
.carrusel-nav-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  background: #F1F5F9;
  border-color: #E2E8F0;
  color: #94A3B8;
  transform: none;
  box-shadow: none;
}

.carrusel-servicios-viewport {
  width: 100%;
  position: relative;
  overflow: visible;
}

.carrusel-servicios-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 24px 4px;
  scrollbar-width: none;
  user-select: none;
}

.carrusel-servicios-track::-webkit-scrollbar {
  display: none;
}

.carrusel-servicios-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.carrusel-servicio-card {
  flex: 0 0 360px;
  width: 360px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.carrusel-servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.servicio-card-img-wrap {
  position: relative;
  height: 195px;
  overflow: hidden;
  background-color: #F8FAFC;
}

.servicio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.carrusel-servicio-card:hover .servicio-card-img {
  transform: scale(1.05);
}

.servicio-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.70rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.servicio-card-overlay-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  background: #FFFFFF;
  color: var(--text-main);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border-light);
}

.servicio-card-body {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.servicio-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.servicio-card-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.servicio-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.feature-chip {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

.servicio-card-footer {
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
}

.btn-servicio-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  background: #F8FAFC;
  color: var(--text-main);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--border-light);
  transition: all 0.2s ease;
}

.btn-servicio-link svg {
  color: var(--mv-red);
  transition: transform 0.2s ease, color 0.2s ease;
}

.carrusel-servicio-card:hover .btn-servicio-link {
  background: var(--mv-gradient-warm);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(237, 28, 36, 0.25);
}

.carrusel-servicio-card:hover .btn-servicio-link svg {
  color: #FFFFFF;
  transform: translateX(4px);
}

.carrusel-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.carrusel-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.carrusel-dot:hover {
  background: #94A3B8;
}

.carrusel-dot.active {
  width: 28px;
  background: var(--mv-gradient-warm);
}

@media (max-width: 1024px) {
  .carrusel-servicio-card {
    flex: 0 0 300px;
    width: 300px;
  }
}

@media (max-width: 768px) {
  .carrusel-servicios-section {
    padding: 48px 16px 56px;
  }

  .carrusel-servicios-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
  }

  .carrusel-controles-wrapper {
    width: 100%;
    justify-content: space-between;
  }

  .carrusel-servicio-card {
    flex: 0 0 84%;
    width: 84%;
    min-width: 260px;
    max-width: 320px;
  }

  .carrusel-servicios-track {
    gap: 16px;
    padding: 6px 2px 20px 2px;
  }
}

/* ==========================================================================
   SECCIÓN 2 – SELECTOR DE NECESIDAD (WARM MINIMALIST)
   ========================================================================== */
.selector-necesidad-section {
  padding: 72px 24px;
  background-color: var(--bg-white);
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.selector-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-decoration: none;
}

.selector-card:hover {
  border-color: #CBD5E1;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.selector-card-img-wrap {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
}

.selector-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.selector-card:hover .selector-card-img {
  transform: scale(1.05);
}

.selector-icon-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: #FFFFFF;
  color: var(--mv-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.selector-card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.selector-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.selector-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.selector-card-arrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mv-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.selector-card:hover .selector-card-arrow {
  color: var(--mv-orange);
  gap: 8px;
}

/* ==========================================================================
   SECCIÓN 2 – NUESTRAS SOLUCIONES Y PUNTO DE ENCUENTRO (PILARES + SHOWROOM)
   ========================================================================== */
.soluciones-showroom-section {
  padding: 80px 24px;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.soluciones-showroom-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* Tarjeta Protagonista: Showroom */
.pilar-showroom-hero-card {
  grid-column: span 12;
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 12px;
}

.pilar-showroom-hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.showroom-hero-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--mv-gradient-warm);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(237, 28, 36, 0.25);
}

.showroom-hero-media {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background-color: #F8FAFC;
}

.showroom-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.pilar-showroom-hero-card:hover .showroom-hero-img {
  transform: scale(1.03);
}

.showroom-hero-glass-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
}

.showroom-hero-glass-tag strong {
  color: var(--mv-yellow);
}

.showroom-hero-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showroom-hero-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.25;
}

.showroom-hero-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.showroom-hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.perk-pill {
  background: var(--bg-warm-soft);
  border: 1px solid var(--border-light);
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.showroom-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Tarjetas Pilares Normales */
.soluciones-showroom-grid .pilar-card {
  grid-column: span 3;
}

@media (max-width: 1100px) {
  .pilar-showroom-hero-card {
    grid-template-columns: 1fr;
  }

  .showroom-hero-media {
    min-height: 240px;
  }

  .soluciones-showroom-grid .pilar-card {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .soluciones-showroom-grid .pilar-card {
    grid-column: span 12;
  }

  .showroom-hero-body {
    padding: 24px 18px;
  }

  .showroom-hero-title {
    font-size: 1.3rem;
  }
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pilar-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pilar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.pilar-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-warm-soft);
}

.pilar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pilar-card:hover .pilar-img {
  transform: scale(1.05);
}

.pilar-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--mv-red);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(237, 28, 36, 0.15);
}

.pilar-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pilar-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.35;
}

.pilar-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.pilar-btn {
  align-self: flex-start;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--mv-gradient-warm);
  color: #FFFFFF !important;
  box-shadow: 0 4px 10px rgba(237, 28, 36, 0.22);
}

.pilar-btn:hover {
  box-shadow: 0 6px 14px rgba(237, 28, 36, 0.35);
}

/* ==========================================================================
   SECCIÓN 4 – TECNOLOGÍA QUE SIMPLIFICA (WARM MINIMALIST)
   ========================================================================== */
.tecnologia-section {
  padding: 80px 24px;
  background-color: #FFFFFF;
}

.tecnologia-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tecnologia-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tecnologia-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--bg-cream);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.tecnologia-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background-color: #FFFFFF;
  border-color: #CBD5E1;
}

.tecnologia-icon-box {
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  color: var(--mv-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.tecnologia-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.tecnologia-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tecnologia-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 100%;
  min-height: 360px;
  display: flex;
  background: #F8FAFC;
}

.tecnologia-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tecnologia-media:hover .tecnologia-img {
  transform: scale(1.02);
}

.tecnologia-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.tecnologia-badge svg {
  color: #16a34a;
}

/* ==========================================================================
   SECCIÓN 4.5 – INFRAESTRUCTURA LOGÍSTICA & FLOTA PROPIA (WARM MINIMALIST)
   ========================================================================== */
.logistica-section {
  padding: 80px 24px;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.logistica-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 960px) {
  .logistica-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.logistica-header-wrap {
  margin-bottom: 24px;
}

.logistica-lead-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 20px;
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 3px solid var(--mv-red);
  box-shadow: var(--shadow-sm);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.logistica-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .logistica-grid-cards {
    grid-template-columns: 1fr;
  }
}

.logistica-feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.logistica-feature-card:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-md);
}

.logistica-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FFF1F2;
  color: var(--mv-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
  border: 1px solid rgba(237, 28, 36, 0.15);
}

.logistica-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.logistica-feature-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.logistica-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.logistica-media-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  min-height: 380px;
  display: flex;
  background: #F8FAFC;
}

.logistica-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.logistica-media-box:hover .logistica-img {
  transform: scale(1.02);
}

.logistica-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logistica-badge-top {
  top: 16px;
  left: 16px;
}

.logistica-badge-bottom {
  bottom: 16px;
  right: 16px;
}

.logistica-badge-icon {
  font-size: 1.3rem;
}

.logistica-badge-text-primary {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
}

.logistica-badge-text-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   SECCIÓN 4.8 – PUNTO DE VENTA, VENTA DIRECTA & MÉTODOS DE PAGO
   ========================================================================== */
.punto-venta-section {
  padding: 80px 24px;
  background-color: #FFFFFF;
  position: relative;
}

.punto-venta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 960px) {
  .punto-venta-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.punto-venta-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  min-height: 440px;
  display: flex;
  background: #F8FAFC;
}

.punto-venta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.punto-venta-media:hover .punto-venta-img {
  transform: scale(1.02);
}

.punto-venta-overlay-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.punto-venta-overlay-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mv-yellow);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.punto-venta-overlay-desc {
  font-size: 0.84rem;
  color: #CBD5E1;
  line-height: 1.45;
  margin: 0;
}

.punto-venta-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .punto-venta-info-grid {
    grid-template-columns: 1fr;
  }
}

.pv-info-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px;
  transition: all 0.2s ease;
}

.pv-info-card:hover {
  border-color: #CBD5E1;
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pv-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pv-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--mv-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.pv-info-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.pv-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pv-info-list li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 12px;
}

.pv-info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--mv-red);
  font-weight: 700;
  font-size: 1rem;
}

.payment-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-main);
}

.payment-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}

/* ==========================================================================
   SECCIÓN 5 – SOLUCIONES POR ESPACIO (WARM MINIMALIST)
   ========================================================================== */
.soluciones-espacio-section {
  padding: 80px 24px;
  background-color: var(--bg-warm-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.soluciones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

@media (max-width: 1200px) {
  .soluciones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .soluciones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.solucion-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.solucion-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-md);
}

.solucion-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background-color: #f8fafc;
}

.solucion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solucion-card:hover .solucion-img {
  transform: scale(1.05);
}

.solucion-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solucion-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
  min-height: 38px;
  display: flex;
  align-items: center;
}

.solucion-btn {
  width: 100%;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--mv-gradient-warm);
  color: #FFFFFF !important;
  text-align: center;
  box-shadow: 0 3px 8px rgba(237, 28, 36, 0.22);
  transition: all 0.2s ease;
}

.solucion-btn:hover {
  box-shadow: 0 6px 14px rgba(237, 28, 36, 0.35);
}

/* ==========================================================================
   SECCIÓN 6 – VITRINA COMERCIAL (PRODUCTOS DESTACADOS)
   ========================================================================== */
.productos-section {
  padding: 80px 24px;
  background-color: #FFFFFF;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.producto-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.producto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.producto-badge-promo {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--mv-gradient-warm);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(237, 28, 36, 0.25);
}

.producto-img-wrap {
  width: 100%;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #f8fafc;
}

.producto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.producto-card:hover .producto-img {
  transform: scale(1.04);
}

.producto-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mv-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  display: block;
}

.producto-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.35;
  min-height: 38px;
}

.producto-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.producto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  margin-top: auto;
}

.producto-precio {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--mv-red);
}

.precio-old {
  font-size: 0.78rem;
  color: var(--text-subtle);
  text-decoration: line-through;
  font-weight: 500;
  display: block;
}

/* ==========================================================================
   SECCIÓN 7 – CLIENTES FELICES (WARM MINIMALIST)
   ========================================================================== */
.confianza-section {
  padding: 80px 24px;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonio-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.testimonio-img-wrap {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.testimonio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonio-logo-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.tag-logo-img {
  width: 14px;
  height: 14px;
}

.testimonio-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.stars-rating {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testimonio-text {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 18px;
  flex-grow: 1;
}

.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.autor-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.autor-avatar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFF1F2;
  color: var(--mv-red);
  border: 1px solid rgba(237, 28, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.autor-nombre {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.autor-cargo {
  font-size: 0.75rem;
  color: var(--text-subtle);
  display: block;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #16a34a;
  margin-top: 2px;
}

/* ==========================================================================
   SECCIÓN 8 – PREGUNTAS FRECUENTES & CTA DE CIERRE (WARM MINIMALIST)
   ========================================================================== */
.faq-section {
  padding: 80px 24px;
  background-color: #FFFFFF;
}

.faq-accordion-grid {
  max-width: 900px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #CBD5E1;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
}

.faq-icon-tag {
  color: var(--mv-red);
  font-size: 0.82rem;
  font-weight: 700;
}

.faq-question-text {
  flex-grow: 1;
}

.faq-arrow {
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px 48px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--mv-red);
}

/* Banner de Cierre Warm Minimalist */










.btn-faq-wa svg {
  color: #FFFFFF;
}



.btn-faq-cotizar {
  background: var(--mv-gradient-warm);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(237, 28, 36, 0.28);
  transition: all 0.2s ease;
}

.btn-faq-cotizar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(237, 28, 36, 0.38);
}

/* ==========================================================================
   SECCIÓN BLOQUE PRE-FOOTER – MAPA Y PUNTO DE VENTA FÍSICO (WARM MINIMALIST)
   ========================================================================== */
.prefooter-map-section {
  padding: 72px 24px;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
}

.prefooter-map-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 992px) {
  .prefooter-map-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.prefooter-map-info {
  display: flex;
  flex-direction: column;
}

.prefooter-map-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.25;
}

.prefooter-map-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.prefooter-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .prefooter-details-grid {
    grid-template-columns: 1fr;
  }
}

.pfd-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: border-color 0.2s ease;
}

.pfd-item:hover {
  border-color: #CBD5E1;
}

.pfd-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.pfd-item strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.pfd-item span {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.prefooter-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.prefooter-map-embed {
  width: 100%;
}

.map-embed-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.map-embed-card iframe {
  display: block;
  width: 100%;
}

.map-embed-footer {
  padding: 10px 16px;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
}

.map-embed-footer a {
  font-weight: 700;
  color: var(--mv-red);
}

.map-embed-footer a:hover {
  color: var(--mv-orange);
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVIDAD & MOBILE-FIRST
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-main-image-wrap {
    height: 360px;
  }

  .selector-grid,
  .pilares-grid,
  .soluciones-grid,
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .tecnologia-wrapper {
    grid-template-columns: 1fr;
  }




}

@media (max-width: 640px) {

  .selector-grid,
  .pilares-grid,
  .soluciones-grid,
  .productos-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .floating-badge {
    position: static;
    margin-top: 10px;
  }
}

/* ==========================================================================
   SECCIÓN 2.5 – QUÉ ESTÁS BUSCANDO (NAVEGACIÓN RÁPIDA)
   ========================================================================== */
.buscando-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.buscando-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.buscando-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.buscando-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.buscando-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--mv-red-soft);
  color: var(--mv-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.buscando-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.buscando-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  flex-grow: 1;
}

.buscando-btn {
  width: 100%;
}

@media (max-width: 960px) {
  .buscando-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}


/* ==========================================================================
   BARRA SUPERIOR INFORMATIVA (TOP NOTICE BAR)
   ========================================================================== */
.top-notice-bar {
  background-color: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.top-notice-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-notice-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-notice-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-notice-item strong {
  color: var(--text-main);
  font-weight: 600;
}

.top-notice-divider {
  width: 1px;
  height: 14px;
  background-color: #CBD5E1;
}

.notice-icon {
  color: var(--mv-red);
}

.top-notice-right {
  display: flex;
  align-items: center;
}

.top-notice-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--mv-red);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.top-notice-link:hover {
  color: var(--mv-red-hover);
}

.notice-icon-link {
  color: currentColor;
}

@media (max-width: 900px) {
  .top-notice-container {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .top-notice-left {
    justify-content: center;
  }

  .top-notice-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .top-notice-left {
    flex-direction: column;
    gap: 8px;
  }
}


/* ==========================================================================
   SECCIÓN 7.5 - BANNER DE ASESORÍA COMERCIAL (CTA DIRECTO)
   ========================================================================== */
.asesoria-cta-section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.asesoria-cta-card {
  max-width: 1020px;
  margin: 0 auto;
  background: var(--bg-light);
  /* Off-white / Cream */
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.asesoria-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(135deg, var(--mv-red), var(--mv-orange));
}

.asesoria-cta-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFF4E5;
  color: var(--mv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.asesoria-cta-text {
  flex-grow: 1;
}

.asesoria-cta-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--mv-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.asesoria-cta-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.asesoria-cta-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
}

.asesoria-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  min-width: 240px;
}

@media (max-width: 960px) {
  .asesoria-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .asesoria-cta-card::before {
    width: 100%;
    height: 6px;
  }

  .asesoria-cta-text p {
    margin: 0 auto;
  }

  .asesoria-cta-actions {
    width: 100%;
  }

  .asesoria-cta-actions button,
  .asesoria-cta-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* Botón WhatsApp */
.btn-whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF !important;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp-action:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  color: #FFFFFF !important;
}

.btn-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}