﻿/**
 * ============================================================
 * PROYECTO : calamx.com.mx
 * ARCHIVO  : inicio.css
 * PROPÓSITO: Layout específico de la página de Inicio.
 *            Solo posición, tamaños y grids. Sin colores.
 *            Los componentes están en assets/css/components/
 *            Los colores están en assets/css/bases/variables.css
 * UBICACIÓN: assets/css/pages/
 * ------------------------------------------------------------
 * AUTOR DEV: DaKaInnova — contacto@dakainnova.com.mx
 * CLIENTE  : Cala MX Eventos — contacto@calamx.com
 * FECHA    : 17/04/2026
 * VERSIÓN  : 2.1
 * ============================================================
 */

/* ── Componentes usados en esta página ────────────────────── */
@import url('../components/hero.css');
@import url('../components/cards.css');
@import url('../components/forms.css');

/* ============================================================
   QUIÉNES SOMOS — Split layout
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-split__img-frame {
  position: relative;
}
.about-split__img-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}
.about-split__badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--color-gold);
  color: var(--color-dark-brown);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(230, 193, 50, 0.35);
}

.about-split__body {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ============================================================
   VALORES
   ============================================================ */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios-section {
  background: linear-gradient(
    160deg,
    var(--color-dark-brown-2) 0%,
    var(--color-dark-brown-3) 50%,
    var(--color-dark-brown) 100%
  );
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 4rem, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(5rem + 4rem);
}
/* Textura orgánica sutil */
.servicios-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(230, 193, 50, 0.02) 60px,
    rgba(230, 193, 50, 0.02) 61px
  );
  pointer-events: none;
}
/* Luces tipo reflectores dorados animados */
.servicios-section::after {
  content: '';
  position: absolute;
  inset: -20%;
  background-image: 
    radial-gradient(
      ellipse 300px 250px at 20% 30%,
      rgba(212, 168, 67, 0.55) 0%,
      rgba(212, 168, 67, 0.35) 25%,
      rgba(212, 168, 67, 0.18) 45%,
      rgba(212, 168, 67, 0.08) 60%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 550px 400px at 80% 70%,
      rgba(212, 168, 67, 0.48) 0%,
      rgba(212, 168, 67, 0.28) 25%,
      rgba(212, 168, 67, 0.14) 45%,
      rgba(212, 168, 67, 0.06) 60%,
      transparent 75%
    );
  background-size: 100% 100%;
  filter: blur(50px);
  opacity: 1;
  animation: spotlightMove1 15s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
/* Contenedor por encima de luces */
.servicios-section > .container {
  position: relative;
  z-index: 2;
}

/* Lista editorial: fila por servicio, separadas con línea dorada */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(212, 168, 67, 0.22);
}

/* Separador vertical — borde derecho en columna izquierda */
.svc-row:nth-child(odd)  { border-right: 1px solid rgba(212, 168, 67, 0.18); padding-right: 2rem; }
.svc-row:nth-child(even) { padding-left: 2rem; }

.svc-row {
  display: grid;
  grid-template-columns: 2.75rem 2.75rem 1fr auto;
  align-items: center;
  gap: 0 1.5rem;
  padding: 1.25rem 0.75rem 1.25rem 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.22);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.svc-row:hover {
  background: rgba(212, 168, 67, 0.05);
  border-bottom-color: rgba(212, 168, 67, 0.45);
}

/* Número decorativo */
.svc-row__num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(212, 168, 67, 0.35);
  letter-spacing: 0.06em;
  line-height: 1;
  user-select: none;
  transition: color 0.25s ease;
}
.svc-row:hover .svc-row__num { color: rgba(212, 168, 67, 0.75); }

/* Ícono circular */
.svc-row__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.10);
  border: 1px solid rgba(212, 168, 67, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.svc-row:hover .svc-row__icon {
  background: rgba(212, 168, 67, 0.18);
  border-color: rgba(212, 168, 67, 0.48);
}

/* Bloque de texto */
.svc-row__body { min-width: 0; }

.svc-row__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.25rem;
  line-height: 1.2;
  transition: color 0.25s ease;
}
.svc-row:hover .svc-row__title { color: var(--color-gold-light); }

.svc-row__text {
  font-size: 0.85rem;
  color: rgba(250, 246, 236, 0.60);
  line-height: 1.55;
  max-width: 52ch;
  transition: color 0.25s ease;
}
.svc-row:hover .svc-row__text { color: rgba(250, 246, 236, 0.80); }

/* Enlace */
.svc-row__link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}
.svc-row:hover .svc-row__link { opacity: 1; }

/* Contenedor de botones CTA */
.servicios-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

/* ============================================================
   FRANJA DE PRECIOS DESTACADA (dentro de servicios)
   Compacto, dramático, con animación de botón
   ============================================================ */
.precio-highlight {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem;
  margin: 2rem auto 1.5rem;
  max-width: 900px;
  background: linear-gradient(
    135deg,
    rgba(230, 193, 50, 0.12) 0%,
    rgba(230, 193, 50, 0.08) 50%,
    rgba(230, 193, 50, 0.12) 100%
  );
  border: 1.5px solid rgba(230, 193, 50, 0.35);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 
    0 4px 16px rgba(230, 193, 50, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Efecto de brillo animado en el fondo */
.precio-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Título del banner */
.precio-highlight__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--color-white);
  text-align: center;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.precio-highlight__title i {
  font-size: 1.15rem;
  color: var(--color-gold);
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { 
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% { 
    opacity: 0.7;
    transform: scale(1.1) rotate(180deg);
  }
}

/* Contenedor de precio y botón */
.precio-highlight__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Precio destacado */
.precio-highlight__amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-heading);
  color: var(--color-white);
}

.precio-highlight__desde {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.precio-highlight__price {
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--color-gold);
  text-shadow: 0 2px 8px rgba(230, 193, 50, 0.4);
  letter-spacing: -0.02em;
}

.precio-highlight__por {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

/* Botón de descarga con animación */
.precio-highlight__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    #d4a843 100%
  );
  color: var(--color-dark-brown);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(230, 193, 50, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: buttonPulse 2s ease-in-out infinite;
}

/* Animación de pulso del botón */
@keyframes buttonPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 4px 12px rgba(230, 193, 50, 0.4),
      0 2px 4px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 
      0 6px 16px rgba(230, 193, 50, 0.6),
      0 3px 6px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

.precio-highlight__btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 8px 20px rgba(230, 193, 50, 0.6),
    0 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: none;
}

.precio-highlight__btn:active {
  transform: translateY(0) scale(1);
}

.precio-highlight__btn i {
  font-size: 1rem;
  animation: downloadBounce 1.5s ease-in-out infinite;
}

@keyframes downloadBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.precio-highlight__btn:hover i {
  animation: downloadBounce 0.5s ease-in-out infinite;
}

/* Efecto de brillo en hover del botón */
.precio-highlight__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.precio-highlight__btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

/* ============================================================
   MISIÓN Y VISIÓN — Flip Cards 3D con imágenes
   ============================================================ */
.mv-flip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Contenedor de tarjeta flip */
.flip-card {
  perspective: 1000px;
  height: 420px;
  cursor: pointer;
  position: relative;
  overflow: visible;
  contain: layout style;
}

.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
}

.flip-card.flipped .flip-card__inner {
  transform: rotateY(180deg);
}

/* Caras comunes */
.flip-card__front,
.flip-card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(39, 18, 7, 0.15), 0 2px 8px rgba(39, 18, 7, 0.08);
}

/* ======== FRENTE ======== */
.flip-card__front {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.flip-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.flip-card:hover .flip-card__bg {
  transform: scale(1.05);
}

.flip-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(39, 18, 7, 0.85) 0%,
    rgba(26, 23, 16, 0.75) 50%,
    rgba(53, 92, 79, 0.65) 100%
  );
  z-index: 1;
}

.flip-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.flip-card__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4a843 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-white);
  box-shadow: 
    0 8px 24px rgba(230, 193, 50, 0.4),
    0 2px 8px rgba(230, 193, 50, 0.2),
    inset 0 -2px 8px rgba(0, 0, 0, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: transform 0.4s ease;
}

.flip-card:hover .flip-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.flip-card__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.flip-card__hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-style: italic;
}

.flip-card__hint i {
  font-size: 1rem;
  animation: rotateHint 2s ease-in-out infinite;
}

@keyframes rotateHint {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

/* ======== REVERSO ======== */
.flip-card__back {
  transform: rotateY(180deg);
  background: linear-gradient(
    135deg,
    var(--color-cream) 0%,
    var(--color-white) 50%,
    var(--color-cream-dark) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  text-align: center;
  z-index: 1;
}

.flip-card__back::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(230, 193, 50, 0.02) 10px,
    rgba(230, 193, 50, 0.02) 20px
  );
  pointer-events: none;
}

.flip-card__back-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, #c9a142 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(230, 193, 50, 0.3);
}

.flip-card__back-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-dark-brown);
  margin-bottom: 1.25rem;
}

.flip-card__back-text {
  font-size: 1.05rem;
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.flip-card__back-text strong {
  font-weight: 600;
  color: var(--color-dark-brown);
}

.flip-card__back-hint {
  font-size: 0.8rem;
  color: rgba(39, 18, 7, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-style: italic;
}

.flip-card__back-hint i {
  font-size: 0.9rem;
}

/* ============================================================
   CTA COTIZACIÓN — ELIMINADA (no estaba en requisitos)
   ============================================================ */
/* Sección eliminada el 21/04/2026 — formulario movido a contacto.html */
/*
.cta-cotizacion { ... }
.cta-cotizacion__bg { ... }
.cta-cotizacion__overlay { ... }
.cta-cotizacion::after { ... }
.cta-cotizacion__inner { ... }
.cta-cotizacion__title { ... }
.cta-cotizacion__subtitle { ... }
.cta-cotizacion__benefits { ... }
*/

/* ============================================================
   TIPOS DE EVENTOS — Grid fotográfico
   ============================================================ */
.tipos-section {
  background: linear-gradient(
    180deg,
    var(--color-cream) 0%,
    var(--color-cream-dark) 100%
  );
  clip-path: polygon(0 0, 100% 3.5rem, 100% 100%, 0 calc(100% - 4rem));
  padding-top: calc(5rem + 3.5rem);
  padding-bottom: calc(5rem + 4rem);
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ============================================================
   CTA FINAL — dark elegante
   ============================================================ */
.cta-final {
  background: linear-gradient(
    160deg,
    var(--color-dark-brown) 0%,
    var(--color-dark-brown-2) 60%,
    var(--color-green-deep) 100%
  );
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 4rem, 100% 100%, 0 100%);
  padding-top: calc(6rem + 4rem);
}
/* Textura orgánica sutil */
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    ellipse at 20% 50%,
    rgba(230, 193, 50, 0.06) 0%,
    transparent 60%
  ),
  radial-gradient(
    ellipse at 80% 50%,
    rgba(53, 92, 79, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}
/* Luces tipo reflectores dorados animados */
.cta-final::after {
  content: '';
  position: absolute;
  inset: -20%;
  background-image: 
    radial-gradient(
      ellipse 380px 320px at 15% 60%,
      rgba(212, 168, 67, 0.60) 0%,
      rgba(212, 168, 67, 0.38) 25%,
      rgba(212, 168, 67, 0.20) 45%,
      rgba(212, 168, 67, 0.10) 60%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 320px 380px at 85% 40%,
      rgba(212, 168, 67, 0.52) 0%,
      rgba(212, 168, 67, 0.32) 25%,
      rgba(212, 168, 67, 0.16) 45%,
      rgba(212, 168, 67, 0.08) 60%,
      transparent 75%
    );
  background-size: 100% 100%;
  filter: blur(55px);
  opacity: 1;
  animation: spotlightMove2 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.cta-final__inner { position: relative; z-index: 2; }

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta-final__subtitle {
  font-size: 1rem;
  color: rgba(255, 251, 243, 0.65);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-final__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .valores-grid            { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .services-list           { grid-template-columns: 1fr; }
  .svc-row:nth-child(odd)  { border-right: none; padding-right: 1rem; }
  .svc-row:nth-child(even) { padding-left: 0; }
  .svc-row                 { gap: 0 1.25rem; }
  .tipos-grid              { grid-template-columns: repeat(2, 1fr); }
  .about-split             { grid-template-columns: 1fr; gap: 2.5rem; }
  /* .cta-cotizacion__inner   { grid-template-columns: 1fr; gap: 2.5rem; } */
  
  .mv-flip-grid { grid-template-columns: 1fr; gap: 2rem; }
  .flip-card { height: 380px; }
  
  /* ── Franja de precios ── */
  .precio-highlight__title {
    font-size: 1.15rem;
  }
  
  .precio-highlight__content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .precio-highlight__price {
    font-size: 1.65rem;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {

  /* ── Secciones generales ── */
  .section { padding: 3rem 0; }

  /* ── Diagonales reducidas en móvil ── */
  .servicios-section {
    clip-path: polygon(0 1.75rem, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(3rem + 1.75rem);
  }
  .tipos-section {
    clip-path: polygon(0 0, 100% 1.75rem, 100% 100%, 0 calc(100% - 2rem));
    padding-top: calc(3rem + 1.75rem);
    padding-bottom: calc(3rem + 2rem);
  }
  /* .cta-cotizacion {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), 0 100%);
    padding-bottom: calc(3rem + 2rem);
    padding-top: 3rem;
  } */
  .cta-final {
    clip-path: polygon(0 0, 100% 1.75rem, 100% 100%, 0 100%);
    padding-top: calc(3rem + 1.75rem);
    padding-bottom: 3.5rem;
  }

  /* ── Grids y layouts ── */
  .valores-grid   { grid-template-columns: 1fr; }
  .tipos-grid     { grid-template-columns: 1fr; }
  /* .cta-cotizacion__inner { gap: 2rem; } */
  
  .mv-flip-grid { gap: 1.5rem; }
  .flip-card { height: 360px; }
  .flip-card__title { font-size: 2rem; }
  .flip-card__icon { width: 75px; height: 75px; font-size: 2rem; }
  .flip-card__back { padding: 2.5rem 2rem; }
  .flip-card__back-text { font-size: 1rem; }

  /* ── Servicios ── */
  .svc-row {
    grid-template-columns: 2.5rem 2.5rem 1fr;
    grid-template-rows: auto auto;
    gap: 0 0.75rem;
    row-gap: 0.6rem;
    align-items: start;
    padding: 1rem 0.5rem;
  }

  .servicios-cta-group {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .servicios-cta-group .btn {
    width: 100%;
  }
  
  /* ── Franja de precios ── */
  .precio-highlight {
    padding: 1.25rem 1rem;
    margin: 1.5rem auto 1rem;
  }
  
  .precio-highlight__title {
    font-size: 1rem;
    flex-direction: column;
    gap: 0.35rem;
  }
  
  .precio-highlight__title i {
    font-size: 1.25rem;
  }
  
  .precio-highlight__content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .precio-highlight__amount {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
  }
  
  .precio-highlight__price {
    font-size: 1.5rem;
  }
  
  .precio-highlight__btn {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.7rem 1.25rem;
  }
  
  .svc-row:nth-child(odd)  { border-right: none; padding-right: 0.5rem; }
  .svc-row:nth-child(even) { padding-left: 0; }
  .svc-row__num   { align-self: center; font-size: 1rem; }
  .svc-row__icon  { align-self: center; width: 2.2rem; height: 2.2rem; font-size: 0.8rem; }
  .svc-row__body  { grid-column: 1 / 4; }
  .svc-row__link  { grid-column: 1 / 4; opacity: 1; }

  /* ── About ── */
  .about-split__badge { position: static; margin-top: 1rem; display: inline-flex; }
  .about-split__img-frame img { aspect-ratio: 16/9; }

  /* ── CTA final ── */
  .cta-final__title   { font-size: 2rem; }
  .cta-final__actions { flex-direction: column; align-items: center; }

  /* ── Reflectores: desactivar en móvil por rendimiento ── */
  .servicios-section::after,
  /* .cta-cotizacion::after, */
  .cta-final::after { display: none; }
}

/* ============================================================
   ANIMACIONES — Luces tipo reflectores
   ============================================================ */
@keyframes spotlightMove1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(10%, -8%) scale(1.1);
  }
  50% {
    transform: translate(-8%, 12%) scale(0.95);
  }
  75% {
    transform: translate(6%, -5%) scale(1.05);
  }
  100% {
    transform: translate(-4%, 6%) scale(1);
  }
}

@keyframes spotlightMove2 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-10%, 10%) rotate(3deg) scale(1.12);
  }
  50% {
    transform: translate(12%, -10%) rotate(-3deg) scale(0.92);
  }
  75% {
    transform: translate(-6%, 8%) rotate(2deg) scale(1.08);
  }
  100% {
    transform: translate(5%, -6%) rotate(-1deg) scale(1);
  }
}
