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

/* Escala toda la pagina al 90%, como si el navegador tuviera el zoom en 90% en vez de 100%. */
html {
  zoom: 0.9;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #141414;
  color: #fff;
  overflow-x: hidden;
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loading-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* ===== MALLA MICRO, PLANA Y UNIFORME ===== */
.mesh-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.mesh-grid::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  animation: meshDrift 12s linear infinite;
}

/* oscurece las esquinas para reforzar el look "cuadricula oscura" */
.mesh-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
}

@keyframes meshDrift {
  0% { background-position: 0 0; }
  100% { background-position: 24px 24px; }
}

.loading-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

#loading-logo {
  width: min(240px, 45vw);
  height: auto;
  filter: drop-shadow(0 0 0 rgba(255, 20, 30, 0));
  opacity: 0;
  transform: translateY(-120vh);
  will-change: transform;
}

/* Entrada: el logo cae y salta como una pelota, con rebotes cada vez mas pequeños */
#loading-logo.drop-in {
  animation: logoDrop 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes logoDrop {
  0% {
    transform: translateY(-120vh) scale(0.9);
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(255, 20, 30, 0));
  }
  45% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(255, 20, 30, 0.6));
  }
  /* primer salto */
  60% { transform: translateY(-34px) scale(1.02); }
  72% { transform: translateY(0) scale(0.98); }
  /* segundo salto, mas pequeño */
  82% { transform: translateY(-14px) scale(1.01); }
  90% { transform: translateY(0) scale(0.99); }
  /* tercer micro salto, casi quieto */
  95% { transform: translateY(-4px); }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(255, 20, 30, 0.6));
  }
}

/* Crecimiento: el logo se agranda progresivamente hasta tapar toda la pantalla */
#loading-logo.zoom-out {
  animation: logoBlast 1.1s ease-in forwards;
}

@keyframes logoBlast {
  0%   { transform: scale(1);   opacity: 1; filter: drop-shadow(0 0 30px rgba(255, 20, 30, 0.6)); }
  15%  { transform: scale(1.4); opacity: 1; filter: drop-shadow(0 0 40px rgba(255, 20, 30, 0.7)); }
  35%  { transform: scale(2.2); opacity: 1; filter: drop-shadow(0 0 50px rgba(255, 20, 30, 0.8)); }
  55%  { transform: scale(4);   opacity: 1; filter: drop-shadow(0 0 55px rgba(255, 20, 30, 0.85)); }
  75%  { transform: scale(9);   opacity: 1; filter: drop-shadow(0 0 60px rgba(255, 20, 30, 0.9)); }
  90%  { transform: scale(20);  opacity: 1; filter: drop-shadow(0 0 60px rgba(255, 20, 30, 0.5)); }
  100% { transform: scale(45);  opacity: 1; filter: drop-shadow(0 0 0 rgba(255, 20, 30, 0)); }
}

/* Flash blanco en el instante del impacto */
#loading-screen.flash::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 5;
  opacity: 0;
  animation: flashHit 0.3s ease-out forwards;
  pointer-events: none;
}

@keyframes flashHit {
  0% { opacity: 0; }
  40% { opacity: 0.9; }
  100% { opacity: 0; }
}

#loading-screen.fade-out {
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

/* ===== SITE CONTENT ===== */
#site-content {
  min-height: 100vh;
  position: relative;
}

/* ===== NAV — estilo underground / need for speed ===== */
.site-nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  height: 56px;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
  /* sin fondo ni contenedor: cada hijo flota por separado, pegado a los bordes */
}

.site-nav.is-scrolled {
  top: 0;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 18px 6px 6px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.nav-menu-btn:hover,
.nav-menu-btn[aria-expanded="true"] {
  background: rgba(255, 25, 35, 0.22);
  border-color: rgba(255, 25, 35, 0.5);
  transform: translateY(-1px);
}

/* ===== BARRA SUPERIOR (direccion) — solo escritorio ===== */
.nav-top-bar {
  display: none;
}

/* ===== MENU HORIZONTAL EN LINEA — solo escritorio ===== */
.nav-menu-inline {
  display: none;
}

@media (min-width: 1101px) {
  .nav-top-bar {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 499;
    height: 34px;
    padding: 0 18px;
    background: rgba(10, 10, 12, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav-top-bar .nav-address {
    display: flex;
    height: auto;
    padding: 0;
    background: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-top-bar .nav-address-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
  }

  .nav-top-bar .nav-address svg {
    width: 13px;
    height: 13px;
  }

  .site-nav,
  .site-nav.is-scrolled {
    top: 34px;
  }

  .nav-menu-btn {
    display: none;
  }

  .nav-menu-inline {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .nav-menu-inline-link {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .nav-menu-inline-link:hover {
    color: #ff1923;
  }

  .nav-menu-dropdown {
    position: relative;
  }

  .nav-menu-dropdown-btn svg {
    transition: transform 0.2s ease;
  }

  .nav-menu-dropdown:hover .nav-menu-dropdown-btn svg {
    transform: rotate(180deg);
  }

  .nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    display: flex;
    flex-direction: column;
    min-width: 220px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(14, 14, 16, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-menu-dropdown:hover .nav-dropdown-panel,
  .nav-menu-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown-panel a {
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .nav-dropdown-panel a:hover {
    background: rgba(255, 25, 35, 0.12);
    color: #ff1923;
  }
}


.nav-address {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-address:hover {
  border-color: rgba(255, 25, 35, 0.5);
  color: #fff;
}

.nav-address svg {
  flex-shrink: 0;
  color: #ff1923;
}

.nav-address-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .nav-address { display: none; }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(255, 25, 35, 0.1);
  border: 1px solid rgba(255, 25, 35, 0.3);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-phone:hover {
  background: rgba(255, 25, 35, 0.25);
  border-color: #ff1923;
}

.nav-phone svg {
  flex-shrink: 0;
  color: #ff1923;
}

.nav-phone span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .nav-phone span { display: none; }
  .nav-phone { padding: 0 10px; }
}

.dots-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #101012;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  align-items: center;
  justify-items: center;
  padding: 8px;
  flex-shrink: 0;
}

.dots-icon i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ff1923;
  display: block;
}

.nav-menu-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  perspective: 600px;
}

.nav-logo img {
  height: 70px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
  transform-style: preserve-3d;
}

.nav-logo img.nav-logo-compact {
  display: none;
}

@media (max-width: 768px) {
  .nav-logo img.nav-logo-full { display: none; }
  .nav-logo img.nav-logo-compact { display: block; height: 46px; }
}

/* Giro unico: se dispara al cargar y luego cada 30s via JS (clase spin-once) */
.nav-logo img.spin-once {
  animation: logoSpin3D 0.65s cubic-bezier(0.45, 0, 0.2, 1);
}

@keyframes logoSpin3D {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.nav-social-btn:hover {
  background: rgba(255, 25, 35, 0.22);
  border-color: rgba(255, 25, 35, 0.5);
  transform: translateY(-1px);
}

.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.nav-lang-btn:hover {
  background: rgba(255, 25, 35, 0.22);
  border-color: rgba(255, 25, 35, 0.5);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border-radius: 10px;
  background: #ff1923;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 25, 35, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: #fff;
  color: #141414;
  transform: translateY(-1px);
}

.nav-cta svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-social-btn { display: none; }
  .nav-lang-btn span:last-child { display: none; }
}

.nav-arrow-btn:hover {
  background: #fff;
  color: #ff1923;
  transform: rotate(45deg);
}

@media (max-width: 640px) {
  .nav-menu-label,
  .nav-logo-sub { display: none; }
  .nav-logo-main { font-size: 12px; }
  .nav-cta { padding: 0 14px; font-size: 11px; }
}

/* ===== HERO — card flotante (por debajo del nav, sin solaparse) ===== */
#site-content {
  background: #141414;
  padding: 128px 20px 20px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 148px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.55) 100%);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.hero-rating {
  position: absolute;
  z-index: 3;
  bottom: 72px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(10, 10, 12, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hero-rating:hover {
  border-color: #ff1923;
  transform: translateY(-2px);
}

.hero-rating-stars {
  display: flex;
  gap: 2px;
  color: #ff1923;
}

.hero-rating-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.hero-rating-text strong {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #fff;
}

@media (max-width: 640px) {
  .hero { flex-direction: column; align-items: stretch; }
  .hero-content { order: 1; }
  .hero-rating {
    position: static;
    order: 2;
    align-self: flex-end;
    margin: 14px 24px 28px;
    padding: 10px 12px;
  }
  .hero-rating-text { font-size: 11px; }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px 90px 200px;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 560px) {
  .hero-content { padding-left: 28px; }
}

.hero-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #ff1923;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 7.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.hero-title-accent {
  color: #ff1923;
}

.hero-sub {
  margin-top: 22px;
  max-width: 560px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-wrap: balance;
}

/* ===== FILA DE SERVICIOS — minimalista, una sola linea ===== */
.hero-services {
  margin-top: 36px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  list-style: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hero-services::-webkit-scrollbar {
  display: none;
}

.hero-services li {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  height: 40px;
  padding: 0 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
}

.hero-services li svg {
  color: #ff1923;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .hero-services { margin-top: 26px; }
  .hero-services li { height: 36px; padding: 0 14px; font-size: 13px; }
}

/* ===== MENU LATERAL — panel blanco, profesional, animado desde la izquierda ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(5, 5, 6, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 950;
  width: min(400px, 86vw);
  background: #141414;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 30px 0 60px rgba(0, 0, 0, 0.6);
}

.menu-panel-watermark-wrap {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 130px;
  overflow: hidden;
  pointer-events: none;
}

.menu-panel-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 52px;
  width: auto;
  max-width: none;
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0.16;
}

.menu-panel-head,
.menu-list,
.menu-panel-foot {
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .menu-panel-watermark-wrap { width: 100px; }
  .menu-panel-watermark { height: 40px; }
}

.menu-panel.open {
  transform: translateX(0);
}

.menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-panel-logo {
  height: 34px;
  width: auto;
}

.menu-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.menu-close-btn:hover {
  background: #ff1923;
  border-color: #ff1923;
  color: #fff;
  transform: rotate(90deg);
}

.menu-list {
  display: flex;
  flex-direction: column;
  padding: 18px 12px;
  flex: 1;
  overflow-y: auto;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-24px);
  transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.menu-panel.open .menu-item {
  animation: menuItemIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.menu-panel.open .menu-item:nth-child(1) { animation-delay: 0.08s; }
.menu-panel.open .menu-item:nth-child(2) { animation-delay: 0.13s; }
.menu-panel.open .menu-item:nth-child(3) { animation-delay: 0.18s; }
.menu-panel.open .menu-item:nth-child(4) { animation-delay: 0.23s; }
.menu-panel.open .menu-item:nth-child(5) { animation-delay: 0.28s; }
.menu-panel.open .menu-item:nth-child(6) { animation-delay: 0.33s; }

@keyframes menuItemIn {
  to { opacity: 1; transform: translateX(0); }
}

.menu-item:hover {
  background: rgba(255, 25, 35, 0.12);
  color: #fff;
  padding-left: 20px;
}

.menu-item:hover .menu-item-index {
  color: #ff1923;
}

.menu-item-index {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.menu-panel-foot {
  padding: 22px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: 10px;
  background: #ff1923;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-cta:hover {
  background: #fff;
  color: #141414;
  transform: translateY(-1px);
}

.menu-social-row {
  display: flex;
  gap: 10px;
}

.menu-social-row a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-social-row a:hover {
  background: #ff1923;
  color: #fff;
  border-color: #ff1923;
}

.menu-address {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .menu-item { font-size: 19px; }
}

/* ===== SCROLL REVEAL estilo Framer ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up:nth-child(2) { transition-delay: 0.08s; }
.reveal-up:nth-child(3) { transition-delay: 0.16s; }
.reveal-up:nth-child(4) { transition-delay: 0.24s; }

/* ===== FOOTER — grande, video de fondo, muy alto ===== */
.site-footer {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #000;
  border-radius: 28px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.55;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.95) 100%);
}

.footer-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.footer-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.footer-top {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 20px;
}

.footer-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: #ff1923;
  margin-bottom: 20px;
}

.footer-cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.footer-cta-btn {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 30px;
  border-radius: 100px;
  background: #ff1923;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.footer-cta-btn:hover {
  background: #fff;
  color: #141414;
  transform: translateY(-2px);
}

.footer-callback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  margin-bottom: 50px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-callback-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}

.footer-callback-text p {
  margin-top: 6px;
  max-width: 380px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-callback-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 420px;
  max-width: 560px;
}

.footer-callback-form input {
  flex: 1 1 160px;
  height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.footer-callback-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-callback-form input:focus {
  outline: none;
  border-color: #ff1923;
}

.footer-callback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  background: #ff1923;
  border: none;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-callback-btn:hover {
  background: #cc1119;
}

.footer-callback-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.footer-callback-msg {
  width: 100%;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
}

.footer-callback-msg.is-success {
  color: #3fbd6e;
}

.footer-callback-msg.is-error {
  color: #ff1923;
}

@media (max-width: 700px) {
  .footer-callback { flex-direction: column; align-items: stretch; }
  .footer-callback-form { flex: 0 1 auto; max-width: 100%; }
}

@media (max-width: 560px) {
  .footer-callback { padding: 22px 20px; gap: 16px; }
  .footer-callback-text h3 { font-size: 1.1rem; }
  .footer-callback-text p { font-size: 13.5px; }
  .footer-callback-form { flex-wrap: nowrap; gap: 8px; }
  .footer-callback-form input[name="name"] { display: none; }
  .footer-callback-form input[name="phone"] { flex: 1 1 auto; min-width: 0; }
  .footer-callback-btn { flex-shrink: 0; padding: 0 16px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a,
.footer-static {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff1923;
  margin-bottom: 4px;
}

.footer-col-brand {
  gap: 22px;
  align-items: center;
  text-align: center;
}

.footer-logo {
  height: 84px;
  width: auto;
  flex-shrink: 0;
}

.footer-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
  line-height: 1.5;
}

.footer-social-row {
  display: flex;
  gap: 10px;
}

.footer-social-row a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social-row a:hover {
  background: #ff1923;
  border-color: #ff1923;
}

.footer-wordmark {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.06);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
}

.footer-wordmark-accent {
  color: rgba(255, 25, 35, 0.15);
  -webkit-text-stroke: 1px rgba(255, 25, 35, 0.35);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: #ff1923;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ff1923;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 70px 20px 30px; gap: 60px; }
}

/* ===== VIDEO SHOWCASE — fila de videos sin texto, entre mapa y footer ===== */
.video-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.video-showcase video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .video-showcase { grid-template-columns: repeat(2, 1fr); }
  .video-showcase video { height: 220px; }
}

@media (max-width: 560px) {
  .video-showcase { display: none; }
}

/* ===== MAP CARD — card flotante antes del footer, mapa a ancho completo ===== */
.map-card {
  position: relative;
  min-height: 560px;
  margin-top: 20px;
  overflow: hidden;
  background: #000;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.35) invert(0.92) contrast(0.9);
}

/* panel de info flotante, compacto, arriba a la derecha del mapa */
.map-info {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  max-width: 280px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.map-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #ff1923;
  margin-bottom: 8px;
}

.map-address {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.map-directions-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  width: fit-content;
  border-radius: 10px;
  background: #ff1923;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 25, 35, 0.35);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.map-directions-btn:hover {
  background: #fff;
  color: #141414;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .map-card { min-height: 460px; }
  .map-info { left: 14px; right: 14px; top: 14px; max-width: none; padding: 18px 20px; }
}

/* ===== SECCIONES CON GRID DE VIDEO (Merch / Blog) ===== */
.section-block {
  padding: 90px 20px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-eyebrow {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #ff1923;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.section-sub {
  margin-top: 16px;
  max-width: 520px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== SERVICIOS — video showcase + lista editorial ===== */
.services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

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

.services-video-card {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #0c0c0e;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.services-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.15) 0%, rgba(10, 10, 12, 0.55) 55%, rgba(10, 10, 12, 0.92) 100%);
}

.services-video-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.services-video-body {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.services-video-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 10px;
}

.services-video-body p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  max-width: 380px;
  margin-bottom: 18px;
}

.services-video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #ff1923;
  transition: gap 0.2s ease;
}

.services-video-card:hover .services-video-link {
  gap: 12px;
}

.services-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-line {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: padding-left 0.25s ease, border-color 0.25s ease;
}

.services-lines .service-line:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-line:hover {
  padding-left: 12px;
  border-color: rgba(255, 25, 35, 0.4);
}

.service-line-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.25s ease, color 0.25s ease;
}

.service-line:hover .service-line-icon {
  background: rgba(255, 25, 35, 0.15);
  color: #ff1923;
}

.service-line-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.service-line-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.service-line-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.service-line-price {
  flex-shrink: 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
  white-space: nowrap;
  margin-right: 6px;
}

.service-line-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-line:hover .service-line-arrow {
  background: #ff1923;
  color: #fff;
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .services-showcase { grid-template-columns: 1fr; }
  .services-video-card { min-height: 320px; }
}

@media (max-width: 560px) {
  .service-line-desc { display: none; }
  .service-line-price { display: none; }
}

/* ===== EXTRA SERVICES — Lavados / Wraps / Detailing, tiles tipograficos ===== */
.extra-services {
  background: #141414;
  padding: 90px 0;
}

.extra-services-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.extra-services-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.extra-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  background: #141414;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease;
}

.extra-tile-num {
  position: absolute;
  top: -18px;
  right: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  transition: color 0.3s ease;
  pointer-events: none;
}

.extra-tile-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  margin-bottom: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}

.extra-tile h3 {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.extra-tile p {
  position: relative;
  z-index: 1;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.extra-tile-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease, gap 0.2s ease;
}

.extra-tile:hover {
  background: #120708;
}

.extra-tile:hover .extra-tile-num {
  color: rgba(255, 25, 35, 0.1);
}

.extra-tile:hover .extra-tile-icon {
  background: #ff1923;
  color: #fff;
}

.extra-tile:hover .extra-tile-link {
  color: #ff1923;
  gap: 12px;
}

@media (max-width: 860px) {
  .extra-services-grid { grid-template-columns: 1fr; }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

/* ===== SHOP — cards de producto reales (imagen + precio), tienda ===== */
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.section-head-row .spec-sheet-head-merch {
  padding: 0;
  margin: 0;
  max-width: none;
}

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

.shop-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
}

.shop-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #111113;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.shop-card-share {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.shop-card-share:hover,
.shop-card-share.copied {
  background: #ff1923;
}

.shop-card-body {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.shop-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.shop-card-price {
  flex-shrink: 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #ff1923;
  white-space: nowrap;
}

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

/* ===== SHOP VERTICAL — cards tipo tienda real, mas altas ===== */
.shop-card-vertical .shop-card-media {
  aspect-ratio: 4 / 5;
  display: block;
}

.shop-card-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 100px;
  background: #ff1923;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.06em;
}

.shop-card-vertical .shop-card-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 16px;
}

.shop-card-name-link {
  text-decoration: none;
}

.shop-card-vertical .shop-card-body h3 {
  font-size: 15.5px;
  line-height: 1.3;
}

.shop-card-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.shop-card-vertical .shop-card-price {
  font-size: 16px;
}

.shop-card-price-compare {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.shop-card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.shop-card-sizes span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.55);
}

.shop-card-buy-btn {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 10px;
  background: #ff1923;
  color: #fff;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.shop-card-buy-btn:hover {
  background: #cc1119;
  transform: translateY(-1px);
}

.shop-grid-full {
  max-width: 1400px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}

.shop-empty {
  grid-column: 1 / -1;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 60px 0;
}

.shop-hero {
  padding: 140px 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.shop-hero-inner .section-sub {
  margin-top: 12px;
}

/* ===== PAGE HERO MINI — card flotante bajo el nav, para tienda/producto/carrito ===== */
.page-hero-mini {
  position: relative;
  height: clamp(140px, 22vw, 220px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
  margin-bottom: 36px;
}

.page-hero-mini-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.page-hero-mini-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(100deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.3) 100%);
}

.page-hero-mini-content {
  position: relative;
  z-index: 3;
  padding: 0 40px;
}

.page-hero-mini-content h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.page-hero-mini-content p {
  margin-top: 10px;
  max-width: 480px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 560px) {
  .page-hero-mini-content { padding: 0 22px; }
  .page-hero-mini-content p { display: none; }
}

/* la mini-hero ya ocupa el espacio bajo el nav: el bloque siguiente no necesita el padding-top pensado para paginas sin hero */
.page-hero-mini + .section-block,
.page-hero-mini + .product-detail,
.page-hero-mini + .cart-page {
  padding-top: 0;
}

/* ===== CARRITO FLOTANTE ===== */
.cart-fab {
  position: fixed;
  z-index: 400;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ff1923;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 25, 35, 0.4);
  transition: transform 0.2s ease;
}

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

.wpp-fab {
  position: fixed;
  z-index: 400;
  bottom: 90px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ff1923;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 25, 35, 0.4);
  transition: transform 0.2s ease;
}

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

.cart-fab-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 100px;
  background: #141414;
  border: 2px solid #fff;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 11px;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ===== PAGINA DE PRODUCTO ===== */
.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 100px;
}

/* ===== BLOG POST ===== */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 20px 100px;
}

.blog-post-tag {
  display: inline-block;
  margin-top: 24px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 25, 35, 0.12);
  color: #ff1923;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
}

.blog-post-title {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}

.blog-post-cover {
  margin-top: 32px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

.blog-post-body {
  margin-top: 36px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}

.blog-post-body h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.blog-post-body p {
  margin-bottom: 16px;
}

.blog-post-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  background: #ff1923;
  color: #fff;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.blog-post-cta:hover {
  background: #cc1119;
  transform: translateY(-1px);
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-back:hover {
  color: #fff;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-zoom {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #111113;
  cursor: zoom-in;
}

.product-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.15s ease;
}

.product-zoom-hint {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(8px);
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.product-info h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}

.product-price {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #ff1923;
  margin-bottom: 20px;
}

.product-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.product-qty {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.product-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.product-qty-control button {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.product-qty-control button:hover {
  background: rgba(255, 25, 35, 0.15);
  color: #ff1923;
}

.product-qty-control span {
  width: 40px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
}

.product-variant-group {
  margin-bottom: 20px;
}

.product-variant-label {
  display: block;
  margin-bottom: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.product-variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-variant-btn {
  min-width: 44px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.product-variant-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.product-variant-btn.is-active {
  background: #ff1923;
  border-color: #ff1923;
}

.product-variant-btn-color {
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 0;
  border-radius: 50%;
  background: var(--vc, rgba(255, 255, 255, 0.08));
  font-size: 0;
}

.product-variant-btn-color.is-active {
  box-shadow: 0 0 0 2px #141414, 0 0 0 4px #ff1923;
  background: var(--vc, rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.16);
}

.product-variant-error {
  display: none;
  margin: -8px 0 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: #ff1923;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.product-buy-now-btn,
.product-add-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  margin-bottom: 0;
}

.product-buy-now-btn {
  background: #ff1923;
  border: none;
  color: #fff;
}

.product-buy-now-btn:hover {
  background: #cc1119;
  transform: translateY(-1px);
}

.product-add-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.product-add-btn:hover {
  border-color: #fff;
  transform: translateY(-1px);
}

.product-add-btn.is-added {
  background: #1f7a3d;
  border-color: #1f7a3d;
}

@media (max-width: 420px) {
  .product-actions { flex-direction: column; }
}

.product-wpp-link {
  display: block;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

/* ===== PAGINA DE SERVICIO — descripcion, precios, sub-servicios ===== */
.service-detail-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-detail-intro {
  max-width: 820px;
}

.service-detail-intro .section-title {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.15;
}

.service-detail-desc {
  margin-top: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.service-detail-intro .spec-cta {
  display: inline-flex;
  margin-top: 28px;
}

.service-pricing-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.service-pricing-group-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff1923;
  margin: 32px 0 14px;
}

.service-pricing-group-title:first-of-type {
  margin-top: 0;
}

.service-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-price-row:last-child {
  border-bottom: none;
}

.service-price-row-head {
  flex: 1 1 320px;
  min-width: 0;
}

.service-price-row-head h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.service-price-row-head p {
  margin-top: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
}

.service-price-row-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-price-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 108px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-price-chip span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.service-price-chip strong {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #ff1923;
}

.service-ppf-zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.service-ppf-zone-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-ppf-zone-chip span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.service-ppf-zone-chip strong {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #ff1923;
  white-space: nowrap;
}

.service-pricing-note {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  max-width: 760px;
}

@media (max-width: 640px) {
  .service-price-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== PAGINA DE CARRITO ===== */
.cart-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 100px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.cart-items-card {
  padding: 28px;
  border-radius: 16px;
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-items-card h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
}

.cart-empty-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 48px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.cart-empty-msg a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 100px;
  background: #ff1923;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s ease;
}

.cart-empty-msg a:hover {
  background: #cc1119;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cart-item-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
}

.cart-item-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.cart-item-variant {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 25, 35, 0.85);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
}

.cart-item-qty button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #fff;
  cursor: pointer;
}

.cart-item-qty button:hover {
  background: rgba(255, 25, 35, 0.2);
  color: #ff1923;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.cart-item-remove:hover {
  color: #ff1923;
}

.cart-summary {
  padding: 28px;
  border-radius: 16px;
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.cart-summary-note {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.checkout-form input,
.checkout-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: #ff1923;
}

.checkout-submit-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  border-radius: 10px;
  background: #ff1923;
  border: none;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.checkout-submit-btn:hover {
  background: #cc1119;
  transform: translateY(-1px);
}

.checkout-submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 800px) {
  .cart-layout { grid-template-columns: 1fr; }
}

.video-card {
  position: relative;
  grid-column: span 1;
  border-radius: 20px;
  overflow: hidden;
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: block;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  border-color: rgba(255, 25, 35, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.video-card-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.video-card video,
.video-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.video-card > img {
  filter: grayscale(0.45) brightness(0.6);
}

.video-card:hover video,
.video-card:hover > img {
  transform: scale(1.06);
}

.video-card:hover > img {
  filter: grayscale(0.2) brightness(0.5);
}

.video-card-share {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.video-card-share:hover {
  background: #ff1923;
  border-color: #ff1923;
  transform: scale(1.08);
}

.video-card-share.copied::after {
  content: "¡Copiado!";
  position: absolute;
  top: 38px;
  right: 0;
  padding: 4px 10px;
  border-radius: 6px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%);
}

.video-card-tag {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ff1923;
}

.video-card-body {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 18px;
}

.video-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 10px;
}

.video-card-lg .video-card-body h3 {
  font-size: 22px;
}

.video-card-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  max-width: 420px;
  margin-bottom: 12px;
}

.video-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease, gap 0.2s ease;
}

.video-card:hover .video-card-link {
  color: #ff1923;
  gap: 10px;
}

@media (max-width: 1100px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card-lg { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 620px) {
  .video-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .video-card-lg { grid-column: span 1; grid-row: span 1; }
  .section-block { padding: 60px 16px 10px; }

  /* Blog: scroll lateral de cards en vez de apiladas, solo en movil */
  #blog .video-grid,
  #blog-all .video-grid {
    display: flex;
    grid-auto-rows: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    margin: 0 -16px;
    padding: 4px 16px 12px;
  }

  #blog .video-grid::-webkit-scrollbar,
  #blog-all .video-grid::-webkit-scrollbar {
    display: none;
  }

  #blog .video-grid .video-card,
  #blog-all .video-grid .video-card {
    flex: 0 0 78vw;
    width: 78vw;
    height: 260px;
    scroll-snap-align: start;
  }

  #blog .video-grid .video-card-lg,
  #blog-all .video-grid .video-card-lg {
    flex: 0 0 78vw;
    width: 78vw;
  }
}

/* ===== MERCH — bloque "proximamente" ===== */
.merch-soon {
  position: relative;
  min-height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-soon video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.merch-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 100%);
}

.merch-soon-body {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 520px;
  padding: 40px 24px;
}

.merch-soon-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255, 25, 35, 0.15);
  border: 1px solid rgba(255, 25, 35, 0.4);
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #ff1923;
  margin-bottom: 22px;
}

.merch-soon-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 14px;
}

.merch-soon-body p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.merch-soon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  border-radius: 10px;
  background: #ff1923;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.merch-soon-btn:hover {
  background: #fff;
  color: #141414;
  transform: translateY(-2px);
}

/* ===== PRODUCT GRID — estilo ecommerce, cards con borde ===== */
.product-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.product-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  border-color: rgba(255, 25, 35, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.product-grid-note {
  margin: -6px 0 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== BOTON "VER TODOS" al final de una seccion de grid ===== */
.section-footer-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.section-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 28px;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.section-footer-btn:hover {
  background: #ff1923;
  border-color: #ff1923;
  transform: translateY(-2px);
}

.product-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111114;
  color: rgba(255, 255, 255, 0.85);
}

.product-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.55);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.08);
  filter: grayscale(0.2) brightness(0.4);
}

.product-card-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 25, 35, 0.12) 0%, rgba(10, 10, 12, 0.75) 100%);
}

.product-card-media svg,
.product-card-media > * {
  position: relative;
  z-index: 1;
}

.product-card:hover .product-card-media {
  color: #ff1923;
}

.product-card-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(10, 10, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ff1923;
}

.product-card-body {
  padding: 14px 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card-body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-bottom: 6px;
}

.product-card-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.product-card-share {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-card-share:hover {
  background: #ff1923;
  border-color: #ff1923;
  transform: scale(1.08);
}

.product-card-share.copied::after {
  content: "¡Copiado!";
  position: absolute;
  top: 36px;
  right: 0;
  padding: 4px 10px;
  border-radius: 6px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

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

@media (max-width: 560px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== FAQ — acordeon + promo lateral ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.faq-promo {
  align-self: stretch;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.faq-promo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-promo { max-height: 380px; }
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  color: #ff1923;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
}

.faq-answer p {
  padding: 0 4px 24px;
  max-width: 700px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== CONFIANZA — marquee infinito de linea delgada ===== */
.testi-card {
  position: relative;
  background: #141414;
  margin-top: 70px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

/* ===== GALERIA — card ancha tipo la de Confianza, foto grande + miniaturas ===== */
.gallery-section {
  margin-top: 70px;
  padding: 0 20px;
}

.gallery-card {
  padding: 20px;
  border-radius: 28px;
  background: #141414;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.gallery-title {
  text-align: center;
  padding: 24px 20px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
}

.gallery-title-accent {
  color: #ff1923;
}

.gallery-main {
  position: relative;
  height: min(460px, 52vh);
  border-radius: 18px;
  overflow: hidden;
}

.gallery-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(220px, 40%);
  height: auto;
  opacity: 0.28;
  pointer-events: none;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.gallery-thumbs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb:hover {
  opacity: 0.85;
}

.gallery-thumb.is-active {
  opacity: 1;
  border-color: #ff1923;
}

@media (max-width: 900px) {
  .gallery-main { height: min(320px, 45vh); }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ===== GALERIA DE CLIENTES — grid, con lightbox ===== */
.client-gallery-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.client-gallery-track {
  display: flex;
  width: max-content;
  animation: clientGalleryScroll 70s linear infinite;
}

.client-gallery-set {
  display: flex;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}

.client-gallery-block {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.client-gallery-block-small {
  display: grid;
  grid-template-columns: repeat(2, 153px);
  grid-template-rows: repeat(2, 203px);
  gap: 14px;
}

.client-gallery-item {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  border: none;
  cursor: zoom-in;
  background: #111113;
}

.client-gallery-block-small .client-gallery-item {
  width: 153px;
  height: 203px;
}

.client-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.client-gallery-item:hover img {
  transform: scale(1.06);
}

.client-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.client-gallery-item:hover::after {
  opacity: 1;
}

@keyframes clientGalleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .client-gallery-track { animation: none; }
}

@media (max-width: 900px) {
  .client-gallery-item { width: 240px; height: 315px; }
  .client-gallery-block-small { grid-template-columns: repeat(2, 113px); grid-template-rows: repeat(2, 150px); }
  .client-gallery-block-small .client-gallery-item { width: 113px; height: 150px; }
}

@media (max-width: 560px) {
  .client-gallery-item { width: 190px; height: 250px; }
  .client-gallery-block-small { grid-template-columns: repeat(2, 88px); grid-template-rows: repeat(2, 118px); }
  .client-gallery-block-small .client-gallery-item { width: 88px; height: 118px; }
}

.client-gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.client-gallery-lightbox.is-open {
  display: flex;
}

.client-gallery-lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.client-gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.client-gallery-lightbox-close:hover {
  background: rgba(255, 25, 35, 0.25);
}

.testi-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.testi-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.75), rgba(10, 10, 12, 0.9));
}

.testi-card-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 20px 60px;
}

.trust-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.trust-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: trustMarqueeScroll 42s linear infinite;
}

.trust-marquee:hover .trust-marquee-track {
  animation-play-state: paused;
}

@keyframes trustMarqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  width: 300px;
  padding: 24px 22px;
  border-radius: 16px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-card-stars {
  display: flex;
  gap: 2px;
}

.trust-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
}

.trust-card p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

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

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

/* ===== INVITACION A RESEÑAR ===== */
.testi-invite {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 36px;
  border-radius: 20px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testi-invite-floating {
  margin-top: 36px;
  padding: 0;
  border: none;
  background: transparent;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.testi-invite-text {
  max-width: 480px;
}

.testi-invite h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 6px;
}

.testi-invite p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

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

.testi-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  background: #fff;
  color: #141414;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.testi-btn:hover {
  background: #ff1923;
  color: #fff;
  transform: translateY(-2px);
}

.testi-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testi-btn-outline:hover {
  background: #ff1923;
  border-color: #ff1923;
}

@media (max-width: 640px) {
  .testi-invite { padding: 28px 22px; }
}

/* ===== BRANDS — franja de marcas de PPF/polarizado, scroll infinito ===== */
.brands-strip {
  overflow: hidden;
  background: #141414;
  padding: 26px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: brandsScroll 54s linear infinite;
}

.brands-set {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  flex-shrink: 0;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.25s ease;
}

.brand-badge:hover {
  opacity: 1;
}

.brand-badge-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #fff;
}

.brand-badge-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.brand-logo {
  height: 40px;
  width: auto;
  filter: grayscale(1) brightness(0) invert(1) opacity(0.4);
  transition: filter 0.25s ease;
}

.brand-logo:hover {
  filter: grayscale(1) brightness(0) invert(1) opacity(0.85);
}

@keyframes brandsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; }
}

/* ===== ACTIONS — franja blanca de accesos rapidos, debajo del hero ===== */
.actions-section {
  background: #141414;
  padding: 46px 20px;
}

.actions-grid.actions-grid-hidden {
  display: none;
}

.actions-giant-title {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 10px;
  text-align: center;
}

.actions-giant-title-left {
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
  padding: 44px 0 10px;
}

.actions-giant-title h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 7.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.actions-giant-title-accent {
  color: #ff1923;
}

.actions-giant-title p {
  margin-top: 18px;
  max-width: 640px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

.actions-grid {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  box-sizing: border-box;
}

.actions-grid-wide {
  grid-template-columns: repeat(2, 1fr);
}

.actions-grid-wide .action-card {
  padding: 34px 30px;
}

.actions-grid-wide .action-card p {
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .actions-grid-wide { grid-template-columns: 1fr; }
}

.action-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 22px;
  border-radius: 16px;
  background: #161618;
  border: 1px solid rgba(255, 25, 35, 0.4);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.action-card-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.action-card-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.action-card-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(6, 6, 7, 0.78);
}

.action-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  border-color: #ff1923;
}

.action-card-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  height: 44px;
  padding: 0 20px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid #ff1923;
  color: #ff1923;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.action-card-outline-btn:hover {
  background: #ff1923;
  color: #fff;
}

/* ===== MODAL COTIZADOR — paso a paso ===== */
.quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 8, 10, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.quote-modal-overlay.is-open {
  display: flex;
}

body.quote-modal-lock {
  overflow: hidden;
}

.quote-modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 32px;
  border-radius: 24px;
  background: #161618;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.quote-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.quote-modal-close:hover {
  background: rgba(255, 25, 35, 0.25);
}

.quote-modal-steps {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  padding-right: 40px;
}

.quote-modal-step {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
}

.quote-modal-step.is-active {
  color: #ff1923;
}

.quote-modal-step.is-done {
  color: rgba(255, 255, 255, 0.65);
}

.quote-modal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.quote-modal-back:hover {
  color: #fff;
}

.quote-modal-panel {
  display: none;
}

.quote-modal-panel.is-active {
  display: block;
}

.quote-modal-panel h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 18px;
}

.quote-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quote-service-card {
  height: 64px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.quote-service-card:hover {
  border-color: #ff1923;
  background: rgba(255, 25, 35, 0.08);
}

.quote-item-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 4px;
}

.quote-item-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-item-card-head h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.quote-item-card-head p {
  margin-top: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.quote-item-card-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quote-price-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 100px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.quote-price-btn:hover {
  border-color: #ff1923;
  background: rgba(255, 25, 35, 0.1);
}

.quote-price-btn span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.quote-price-btn strong {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #ff1923;
}

.quote-modal-note {
  margin-top: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.quote-modal-empty {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.quote-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
}

.quote-summary-row span {
  color: rgba(255, 255, 255, 0.5);
}

.quote-summary-row strong {
  color: #fff;
  font-weight: 700;
  text-align: right;
}

.quote-summary-row-price strong {
  color: #ff1923;
  font-size: 17px;
}

.quote-summary-phone-label {
  display: block;
  margin: 14px 0 16px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.quote-summary-phone-input {
  display: block;
  width: 100%;
  height: 46px;
  margin-top: 8px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.quote-summary-phone-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.quote-summary-phone-input:focus {
  outline: none;
  border-color: #ff1923;
}

.quote-summary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #ff1923;
  color: #fff;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s ease;
}

.quote-summary-cta:hover {
  background: #cc1119;
}

.quote-summary-reset {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.quote-summary-reset:hover {
  color: #fff;
}

@media (max-width: 560px) {
  .quote-service-grid { grid-template-columns: 1fr; }
  .quote-modal { padding: 24px; }
}

/* ===== FORMULARIO PROGRAMAR CITA / CONTACTO ===== */
.appointment-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.appointment-form label,
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.appointment-form input,
.appointment-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.appointment-form input,
.appointment-form select,
.contact-form input,
.contact-form select {
  height: 46px;
}

.contact-form textarea {
  padding: 12px 14px;
  resize: vertical;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.appointment-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='none' stroke='%23ffffff88' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.appointment-form select option {
  background: #161618;
  color: #fff;
}

.appointment-form input:focus,
.appointment-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff1923;
}

.appointment-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.appointment-form-error {
  display: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #ff1923;
}

.appointment-form-error.is-visible {
  display: block;
}

.quote-summary-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 560px) {
  .appointment-form-row { grid-template-columns: 1fr; }
}

.action-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141414;
  border: 1px solid #ff1923;
  color: #ff1923;
}

.action-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.action-card p {
  margin-top: -6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.action-card-wpp {
  padding: 16px 22px;
  background: #ff1923;
  border-color: #ff1923;
}

.action-card-wpp:hover {
  background: #e5121c;
  border-color: #fff;
}

.action-card-wpp h3 {
  color: #fff;
}

.action-card-wpp p {
  color: rgba(255, 255, 255, 0.8);
}

.action-icon-wpp {
  background: #141414;
  border-color: #141414;
  color: #fff;
}

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

@media (max-width: 560px) {
  .actions-grid { grid-template-columns: 1fr; }
  .actions-section { padding: 30px 16px; }
}

/* ===== BLOQUE BLANCO — placeholder, contenido por definir ===== */
.white-block {
  background: #fff;
  padding: 36px 20px;
  margin-top: 20px;
  border-radius: 28px;
  border: 1px solid rgba(10, 10, 12, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

/* ===== SPEC SHEET — Polarizado vs PPF, cards de producto ===== */
.spec-sheet-dark {
  background: #141414;
  padding: 90px 0;
  margin-top: 20px;
}

.spec-sheet-head {
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 0 20px;
}

.spec-sheet-head h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 7.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.spec-sheet-head-accent {
  color: #ff1923;
}

.spec-sheet-head p {
  margin-top: 18px;
  max-width: 640px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

.spec-products {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spec-product {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #111113;
  border: 1px solid rgba(255, 25, 35, 0.4);
  border-radius: 20px;
}

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

.spec-product-head {
  margin-bottom: 20px;
}

.spec-product-head h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.spec-product-head p {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.5);
}

.spec-product-specs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 25, 35, 0.35);
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.spec-item-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff1923;
  margin-top: 1px;
}

.spec-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.spec-item-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.spec-item-value {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  color: #fff;
}

.spec-product-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.spec-cta-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.spec-cta-outline:hover {
  background: #fff;
  border-color: #fff;
  color: #141414;
}

.spec-products > .spec-product-video {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #141414;
  text-decoration: none;
}

.spec-product-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-product-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.1) 0%, rgba(10, 10, 12, 0.85) 100%);
}

.spec-product-video-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.spec-product-video-tag {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.spec-product-video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
}

.spec-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #ff1923;
  color: #ff1923;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.spec-cta:hover {
  background: #ff1923;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .spec-products { grid-template-columns: 1fr; }
  .spec-product { padding: 24px; }
}

.vehicle-select {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  transition: opacity 0.25s ease;
}

.vehicle-select.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.vehicle-option {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 6px;
  background: #f4f4f5;
  border: 1px solid rgba(10, 10, 12, 0.1);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vehicle-option:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 25, 35, 0.4);
}

.vehicle-option.is-active {
  background: #141414;
  border-color: #141414;
}

.vehicle-option.is-active span:last-child,
.vehicle-option.is-active .vehicle-icon {
  color: #fff;
}

.vehicle-icon {
  position: relative;
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-icon-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  color: #ff1923;
}

/* ===== VISOR 3D ===== */
.viewer-wrap {
  max-width: 1400px;
  margin: 36px auto 0;
  padding: 0 20px;
}

.viewer-3d {
  position: relative;
  height: min(757px, 74vh);
  cursor: grab;
}

.viewer-3d:active {
  cursor: grabbing;
}

.viewer-3d canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.viewer-top-controls {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: -4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.viewer-circle-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(10, 10, 12, 0.15);
  color: rgba(10, 10, 12, 0.55);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(10, 10, 12, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.viewer-circle-btn:hover {
  background: rgba(255, 25, 35, 0.08);
  border-color: rgba(255, 25, 35, 0.4);
  color: #ff1923;
  transform: translateY(-1px);
}

.viewer-circle-btn.is-active {
  background: #ff1923;
  border-color: #ff1923;
  color: #fff;
}

.viewer-circle-btn-photo {
  width: 52px;
  height: 52px;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(10, 10, 12, 0.25);
}

.viewer-circle-btn-icon-only {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: rgba(10, 10, 12, 0.6);
}

.viewer-circle-btn-icon-only:hover {
  color: #ff1923;
}

.viewer-circle-btn-photo:hover {
  border-color: #ff1923;
  transform: translateY(-1px) scale(1.04);
}

.viewer-circle-btn-photo.is-active {
  border-color: #ff1923;
  box-shadow: 0 0 0 3px rgba(255, 25, 35, 0.25);
}

.viewer-circle-btn-photo.is-disabled {
  opacity: 0.4;
  filter: grayscale(1);
  cursor: not-allowed;
  pointer-events: none;
}

.viewer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  width: fit-content;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #ff1923;
  color: #ff1923;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.viewer-cta:hover {
  background: #ff1923;
  color: #fff;
  transform: translateY(-2px);
}

.viewer-cta-wrap {
  height: 38px;
  padding: 0 18px;
  font-size: 12px;
}

.viewer-ppf-hotspots {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.ppf-hotspot {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}

.ppf-hotspot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff1923;
  box-shadow: 0 0 0 4px rgba(255, 25, 35, 0.22);
  transition: transform 0.2s ease;
  animation: ppfHotspotPulse 2s ease-in-out infinite;
}

.ppf-hotspot:hover .ppf-hotspot-dot,
.ppf-hotspot.is-open .ppf-hotspot-dot {
  transform: scale(1.15);
  animation-play-state: paused;
}

@keyframes ppfHotspotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 25, 35, 0.22); }
  50% { box-shadow: 0 0 0 8px rgba(255, 25, 35, 0.1); }
}

.ppf-card {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 232px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(10, 10, 12, 0.1);
  box-shadow: 0 12px 28px rgba(10, 10, 12, 0.18);
  text-align: left;
  cursor: default;
}

.ppf-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #141414;
}

.ppf-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(10, 10, 12, 0.65);
}

.ppf-card-price {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #ff1923;
}

.ppf-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  background: #ff1923;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ppf-card-cta:hover {
  background: #cc1119;
  transform: translateY(-1px);
}

.viewer-top-right-controls {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.viewer-move-hint {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(10, 10, 12, 0.15);
  box-shadow: 0 4px 14px rgba(10, 10, 12, 0.1);
  color: rgba(10, 10, 12, 0.55);
  pointer-events: none;
}

.viewer-move-hint svg {
  width: 18px;
  height: 18px;
}

.viewer-zoom {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  background: rgba(10, 10, 12, 0.06);
  border: 1px solid rgba(10, 10, 12, 0.1);
  overflow: hidden;
}

.viewer-zoom-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(10, 10, 12, 0.7);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.viewer-zoom-btn:hover {
  background: rgba(255, 25, 35, 0.12);
  color: #ff1923;
}

.viewer-zoom-divider {
  width: 100%;
  height: 1px;
  background: rgba(10, 10, 12, 0.1);
}

.viewer-move-hint svg {
  animation: viewerMoveHintPulse 1.8s ease-in-out infinite;
}

@keyframes viewerMoveHintPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.12); opacity: 1; }
}

.viewer-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(10, 10, 12, 0.5);
  background: #fff;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.viewer-loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.viewer-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 25, 35, 0.25);
  border-top-color: #ff1923;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.viewer-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.tint-select,
.paint-select {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 100%;
  transition: opacity 0.25s ease;
}

.tint-select-row,
.paint-select-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 100%;
}

.tint-select.is-disabled,
.paint-select.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.tint-select.is-disabled::after {
  content: "Este modelo no tiene vidrios identificables para polarizar";
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(10, 10, 12, 0.5);
}

.paint-select.is-disabled::after {
  content: "Este modelo no tiene carrocería identificable para aplicar wrap";
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(10, 10, 12, 0.5);
}

.tint-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #141414;
}

.tint-swatches {
  display: flex;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 2px;
}

.tint-swatches::-webkit-scrollbar {
  display: none;
}

@media (max-width: 640px) {
  .tint-swatches {
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
  }
}

.tint-swatch {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sw);
  border: 2px solid rgba(10, 10, 12, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tint-swatch-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.tint-swatch[data-opacity="0"] {
  border-color: rgba(10, 10, 12, 0.35);
  box-shadow: inset 0 0 0 1px rgba(10, 10, 12, 0.08);
}

.tint-swatch[data-opacity="0"] .tint-swatch-label {
  color: #141414;
  text-shadow: none;
}

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

.tint-swatch.is-active {
  border-color: #ff1923;
}

.paint-swatch {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sw);
  border: 2px solid rgba(10, 10, 12, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.paint-swatch.is-active {
  border-color: #ff1923;
}

.viewer-credit {
  margin-top: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(10, 10, 12, 0.4);
}

.viewer-credit a {
  color: rgba(10, 10, 12, 0.6);
}

@media (max-width: 640px) {
  .viewer-3d { height: min(473px, 55.5vh); }
  .white-block { padding-left: 10px; padding-right: 10px; }
  .viewer-wrap { padding-left: 6px; padding-right: 6px; }
}

.vehicle-option span:last-child {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #141414;
}

/* ===== SOMOS — pagina institucional ===== */
.somos-intro-grid {
  max-width: 760px;
}

.somos-intro-text p {
  margin-top: 18px;
  max-width: 680px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.somos-intro-text .spec-cta {
  margin-top: 28px;
}

.somos-intro-accent {
  color: #ff1923;
}

.somos-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.somos-process-step {
  padding: 28px 24px;
  border-radius: 16px;
  background: #161618;
  border: 1px solid rgba(255, 25, 35, 0.25);
}

.somos-process-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #ff1923;
  margin-bottom: 14px;
}

.somos-process-step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.somos-process-step p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

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

@media (max-width: 560px) {
  .somos-process-grid { grid-template-columns: 1fr; }
}

/* ===== CALENDARIO PERSONALIZADO — programar cita ===== */
.appt-calendar {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.appt-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.appt-calendar-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
}

.appt-calendar-nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.appt-calendar-nav:hover {
  background: rgba(255, 25, 35, 0.2);
}

.appt-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}

.appt-calendar-weekdays span {
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.appt-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.appt-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: none;
  border: 1px solid transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  cursor: pointer;
}

.appt-day:hover:not(:disabled) {
  border-color: #ff1923;
}

.appt-day:disabled {
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.appt-day.is-empty {
  visibility: hidden;
}

.appt-day.is-selected {
  background: #ff1923;
  color: #fff;
}

.appt-slots {
  margin-top: 16px;
}

.appt-slots-label {
  display: block;
  margin-bottom: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.appt-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
}

.appt-slot-btn {
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  cursor: pointer;
}

.appt-slot-btn:hover:not(:disabled) {
  border-color: #ff1923;
}

.appt-slot-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  text-decoration: line-through;
}

.appt-slot-btn.is-selected {
  background: #ff1923;
  border-color: #ff1923;
}

.appt-slots-empty {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== BLOG — pagina de listado con filtros ===== */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.blog-filter-btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.blog-filter-btn:hover {
  border-color: #ff1923;
  color: #fff;
}

.blog-filter-btn.is-active {
  background: #ff1923;
  border-color: #ff1923;
  color: #fff;
}

.blog-filter-empty {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 40px 0;
}

/* ===== PAGINA DE CONTACTO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-desc {
  margin-top: 18px;
  max-width: 480px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #161618;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.contact-info-item:hover {
  border-color: #ff1923;
}

.contact-info-item-static {
  cursor: default;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 25, 35, 0.1);
  color: #ff1923;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-info-item strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.contact-form-card {
  padding: 32px;
  border-radius: 24px;
  background: #161618;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-type-tab {
  height: 38px;
  padding: 0 18px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-type-tab:hover {
  border-color: #ff1923;
  color: #fff;
}

.contact-type-tab.is-active {
  background: #ff1923;
  border-color: #ff1923;
  color: #fff;
}

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

@media (max-width: 560px) {
  .contact-form-card { padding: 22px; }
}

/* ===== POPUP DE PUBLICIDAD ===== */
.ad-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 980;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(6, 6, 7, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ad-popup-overlay.is-open {
  display: flex;
}

.ad-popup-box {
  position: relative;
  max-width: min(560px, 100%);
  max-height: 90vh;
}

.ad-popup-link {
  display: block;
  cursor: pointer;
}

.ad-popup-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.ad-popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff1923;
  border: 2px solid #141414;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ad-popup-close:hover {
  background: #cc1119;
  transform: rotate(90deg);
}

@media (max-width: 560px) {
  .ad-popup-close { top: -12px; right: -12px; width: 34px; height: 34px; }
}

.ad-popup-phone-form {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(18, 18, 20, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.ad-popup-phone-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ad-popup-phone-row {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.ad-popup-phone-row input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
}

.ad-popup-phone-row input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.ad-popup-phone-row input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.ad-popup-phone-row button {
  flex-shrink: 0;
  height: 42px;
  width: 42px;
  border: none;
  border-radius: 50%;
  background: #ff1923;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ad-popup-phone-row button:hover {
  background: #cc1119;
  transform: scale(1.06);
}

.ad-popup-phone-row button:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.ad-popup-phone-msg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  min-height: 16px;
}

.ad-popup-phone-msg.is-success { color: #4ee08a; }
.ad-popup-phone-msg.is-error { color: #ff6b6b; }

@media (max-width: 560px) {
  .ad-popup-phone-form { left: 12px; right: 12px; bottom: 14px; }
}
