﻿@charset "UTF-8";

/* ========================================================
   MOTOS MORA â€” style.css (VersiÃ³n Completa y Optimizada)
   Paleta Oficial: Rojo #D0021B Â· Azul #0033A0 Â· Blanco #FFF
   ======================================================== */

:root {
  --red:       #D0021B;
  --red-dark:  #9B0015;
  --blue:      #0033A0;
  --blue-dark: #00257A;
  --white:     #ffffff;
  --light:     #f4f4f6;
  --dark:      #0d0d0d;
  --gray:      #555;
  --border:    #e0e0e0;
  --gold:      #FFD700;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TICKER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ticker-bar {
  background: var(--blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker-inner span { margin: 0 56px; }
.ticker-inner span::before { content: "*  "; color: var(--gold); }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FULLSCREEN MENU
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fullscreen-menu {
  position: fixed; inset: 0;
  background: var(--blue);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.fullscreen-menu.open { opacity: 1; pointer-events: all; }
.menu-close { position: absolute; top: 26px; right: 30px; font-size: 2rem; color: #fff; cursor: pointer; line-height: 1; }
.full-menu-links { list-style: none; text-align: center; padding: 0; }
.full-menu-links li { margin: 10px 0; }
.full-menu-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem; font-weight: 900;
  color: #fff; text-transform: uppercase; letter-spacing: 0.06em;
  transition: color 0.2s;
}
.full-menu-links a:hover { color: var(--gold); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAV (ESCRITORIO)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#nav {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 3px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: height 0.3s;
}
.nav-brand { display: flex; align-items: center; gap: 15px; }
.nav-logo-img { width: 75px !important; height: auto; flex-shrink: 0; }
.nav-brand .logo-txt { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem !important; font-weight: 900; color: var(--blue); letter-spacing: 0.04em; display: block; line-height: 1; }
.nav-brand .logo-sub { font-size: 0.9rem !important; color: var(--red); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 2px; }

.nav-links { display: flex; gap: 30px; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--dark); letter-spacing: 0.07em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.btn-nav {
  background: var(--red); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px;
  border: none; cursor: pointer; transition: background 0.2s;
}
.btn-nav:hover { background: var(--red-dark); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO CAROUSEL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-slider {
  position: relative; width: 100%; height: 90vh; min-height: 500px; overflow: hidden; background: #111;
}
.slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease; z-index: 0; }
.slide.active { opacity: 1; z-index: 1; }
.slide > img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,51,160,0.6) 0%, transparent 65%); z-index: 2; }
.slide-content { position: absolute; bottom: 14%; left: 7%; z-index: 3; max-width: 580px; }
.slide-tag {
  display: inline-block; background: var(--red); color: #fff; font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 14px; margin-bottom: 16px;
}
.slide-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 900; color: #fff;
  text-transform: uppercase; line-height: 1; letter-spacing: 0.02em; margin-bottom: 18px;
}
.slide-title em { font-style: normal; color: var(--gold); }
.slide-desc { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.6; margin-bottom: 28px; }
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero {
  background: var(--red); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; border-radius: 4px; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.btn-hero:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-hero-ghost {
  background: transparent; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 28px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.7); cursor: pointer; transition: background 0.2s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.12); }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; padding: 0; transition: background 0.3s, transform 0.2s; }
.dot.active { background: var(--red); transform: scale(1.35); }
.slide-counter { position: absolute; bottom: 30px; right: 6%; z-index: 10; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; }
.slide-counter b { color: #fff; font-weight: 700; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   QUICK ACTIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.quick-actions { background: var(--blue); display: grid; grid-template-columns: repeat(3,1fr); }
.qa-item { display: flex; align-items: center; gap: 16px; padding: 22px 28px; color: #fff; border-right: 1px solid rgba(255,255,255,0.12); transition: background 0.2s; }
.qa-item:last-child { border-right: none; }
.qa-item:hover { background: rgba(255,255,255,0.08); }
.qa-icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.qa-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.65; }
.qa-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; }


/* VIDEO DESTACADO */
.video-feature-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(64px, 8vw, 96px) 5%;
  background:
    linear-gradient(120deg, #0b1020 0%, #111827 42%, #f8fafc 42.2%, #ffffff 100%);
}

.video-feature-copy .sec-title {
  color: #fff;
}

.video-feature-copy .sec-sub {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.72);
  max-width: 470px;
}

.video-feature-frame {
  position: relative;
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-feature-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  z-index: 0;
}

.video-poster {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  background: #0b1020;
}

.video-feature-frame .tiktok-embed {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 605px !important;
  min-width: 260px !important;
  margin: 0 auto !important;
  border-radius: 6px;
}

.video-feature-frame .tiktok-embed section {
  display: flex;
  min-height: 480px;
  align-items: center;
  justify-content: center;
  background: #0b1020;
  border-radius: 6px;
}

.video-feature-frame .tiktok-embed a {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.06);
}

.play-mark {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 40px rgba(208, 2, 27, 0.34);
}

.play-mark i {
  margin-left: 4px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTIONS BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-inner { padding: 80px 5%; }
.section-center { text-align: center; }
.eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.eyebrow-gold { color: var(--gold); }
.sec-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05; margin-bottom: 16px; color: var(--dark); }
.sec-title span { color: var(--red); }
.sec-title-white { color: #fff; }
.sec-sub { color: var(--gray); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.65; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOTO VIEWER (ESCRITORIO)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#moto-viewer { background: var(--light); }
.viewer-stage {
  position: relative; max-width: 720px; margin: 40px auto 0; background: var(--light); border-radius: 14px;
  overflow: hidden; box-shadow: 0 10px 50px rgba(0,0,0,0.12); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
}
#viewerImg { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: opacity 0.35s; }
#viewerImg.fading { opacity: 0; }
.viewer-badge {
  position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--dark); font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px; z-index: 5;
}

/* Contenedor unificado de controles */
.viewer-controls {
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  width: 100% !important; max-width: 720px !important; margin: 25px auto 0 !important; padding: 0 15px !important; box-sizing: border-box !important;
}
.v-arrow {
  background: var(--dark); color: #fff; border: none; width: 48px; height: 48px; border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.v-arrow:hover { background: var(--red); }
.viewer-info { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; flex: 1 !important; }
.v-name { font-family: 'Barlow Condensed', sans-serif !important; font-size: 1.8rem !important; font-weight: 900 !important; text-transform: uppercase !important; color: #0d0d0d !important; margin-bottom: 12px !important; }
.v-specs { display: flex !important; justify-content: center !important; align-items: center !important; gap: 30px !important; width: 100% !important; }
.v-spec { display: flex !important; flex-direction: column !important; align-items: center !important; }
.v-spec-label { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 2px; }
.v-spec-val { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); }

.v-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.v-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(0,0,0,0.18); border: none; cursor: pointer; padding: 0; transition: background 0.3s, transform 0.2s; }
.v-dot.active { background: var(--red); transform: scale(1.4); }

.btn-outline {
  display: inline-block !important; margin: 35px auto 0 !important; padding: 12px 30px !important; border: 2px solid #0033A0 !important;
  color: #0033A0 !important; font-family: 'Barlow Condensed', sans-serif !important; font-size: 1rem !important; font-weight: 700 !important;
  text-transform: uppercase !important; text-decoration: none !important; border-radius: 4px !important; text-align: center !important; transition: all 0.3s ease !important;
}
.btn-outline:hover { background-color: #0033A0 !important; color: #ffffff !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DISTRIBUIDORES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#distribuidores { background: #fff; }
.dist-wrap { position: relative; display: inline-block; margin-top: 44px; }
.dist-arch {
  width: 340px; background: var(--light); border-radius: 170px 170px 0 0; margin: 0 auto; padding: 32px 24px 24px;
  display: flex; flex-direction: column; align-items: center; box-shadow: 0 6px 34px rgba(0,0,0,0.07);
}
.dist-arch img { width: 130px; height: 90px; object-fit: cover; border-radius: 6px; margin-bottom: 14px; }
.dist-micro { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.dist-num { font-family: 'Barlow Condensed', sans-serif; font-size: 5.5rem; font-weight: 900; color: var(--dark); line-height: 1; }
.dist-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.dist-side { position: absolute; top: 80px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); writing-mode: vertical-rl; }
.dist-side-left  { left: -150px; transform: rotate(180deg); }
.dist-side-right { right: -150px; }
.dist-stats { display: flex; justify-content: center; gap: 56px; margin-top: 52px; flex-wrap: wrap; }
.dist-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--red); line-height: 1; }
.dist-stat-label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICIOS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#servicios { padding: 0; }
.servicios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.serv-card { color: #fff; padding: 52px 36px; transition: filter 0.2s; cursor: pointer; }
.serv-card:hover { filter: brightness(1.1); }
.serv-card.s1 { background: var(--blue); }
.serv-card.s2 { background: var(--red); }
.serv-card.s3 { background: var(--blue-dark); }
.serv-icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.serv-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.45rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.serv-desc { font-size: 0.92rem; opacity: 0.82; line-height: 1.6; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NOTICIAS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#noticias { background: #0d0d0d; padding: 80px 0; }
.noticias-head { padding: 0 5%; margin-bottom: 44px; text-align: center; }
.noticias-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 0 5%; }
.noticia-card { background: #1a1a1a; border-radius: 8px; overflow: hidden; cursor: pointer; transition: transform 0.25s; }
.noticia-card:hover { transform: translateY(-5px); }
.noticia-img { width: 100%; height: 195px; object-fit: cover; }
.noticia-body { padding: 20px; }
.noticia-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.noticia-date { font-family: 'Barlow Condensed', sans-serif; font-size: 1.65rem; font-weight: 900; color: #fff; }
.noticia-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }
.noticia-cat.gold { color: var(--gold); }
.noticia-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.35; text-transform: uppercase; }
.noticia-title.gold { color: var(--gold); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA BAND
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-band { background: var(--red); text-align: center; padding: 72px 5%; position: relative; overflow: hidden; }
.cta-band::before {
  content: 'MORA'; position: absolute; font-family: 'Barlow Condensed', sans-serif; font-size: 18vw; font-weight: 900;
  color: rgba(255,255,255,0.05); top: 50%; left: 50%; transform: translate(-50%,-50%); letter-spacing: 0.15em; pointer-events: none; white-space: nowrap;
}
.cta-band .eyebrow { color: rgba(255,255,255,0.65); }
.cta-band .sec-title { color: #fff; }
.cta-band .sec-title span { color: var(--gold); }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 480px; margin: 14px auto 28px; line-height: 1.65; }
.btn-white {
  background: #fff; color: var(--red); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 34px; border-radius: 4px; border: none; cursor: pointer; display: inline-block; transition: transform 0.15s;
}
.btn-white:hover { transform: translateY(-2px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACTO + MAPA
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#contacto { padding: 80px 5%; background: #fff; }
.contacto-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; max-width: 1100px; margin: 0 auto; }
.c-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.c-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.c-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 3px; }
.c-val { font-size: 0.95rem; color: var(--dark); line-height: 1.55; }
.c-val a { color: var(--blue); }
.btn-wa { display: inline-block; background: #25D366; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 28px; border-radius: 4px; margin-top: 24px; transition: background 0.2s; }
.btn-wa:hover { background: #1ebe5a; }
.mapa-wrap iframe { border-radius: 10px; border: 0; width: 100%; height: 440px; display: block; box-shadow: 0 4px 28px rgba(0,0,0,0.1); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer { background: #080808; color: rgba(255,255,255,0.55); padding: 60px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-txt { color: #fff; font-size: 1.8rem; }
.footer-brand .logo-sub { color: var(--red); margin-top: 2px; }
.footer-brand p { margin-top: 14px; font-size: 0.86rem; line-height: 1.7; max-width: 270px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--red); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25D366; color: #FFF;
  border-radius: 50px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); z-index: 1000; display: flex; align-items: center; justify-content: center; font-size: 35px; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); color: #FFF; box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PÃGINA DE DETALLES / SHOWROOM (MODELO DE VENTA CLARO)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.split-hero { display: grid; grid-template-columns: 60% 40%; min-height: 85vh; border-bottom: 1px solid var(--border); }
.split-left {
  position: relative;
  background: #f4f4f6 !important; /* CORREGIDO: Fondo claro en vitrina */
  overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: 50px 10%;
}
.split-left-moto {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  filter: brightness(1) contrast(1.02) !important; /* CORREGIDO: Fuera oscuridad, colores vivos */
  transition: filter 0.3s ease;
}
.split-left-content { position: relative; z-index: 2; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); }
.split-back { position: absolute; top: 30px; left: 5%; z-index: 10; color: #fff !important; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); }

.split-right { background: #fdfdfd; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 40px; text-align: center; }
.split-right-title { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--dark); margin-bottom: 30px; text-transform: uppercase; }
.btn-cotizar { width: 100%; max-width: 300px; background: #FFD700; color: #111; padding: 16px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; margin-bottom: 15px; display: block; border: none; cursor: pointer; transition: 0.2s; }
.btn-cotizar:hover { background: #e6c200; transform: translateY(-2px); }

.showroom-section { background: #fff; padding: 80px 0; border-bottom: 1px solid var(--border); }
.showroom-hero { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; align-items: center; }
.sr-left { display: flex; flex-direction: column; gap: 20px; }
.sr-slogan { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--dark); text-transform: uppercase; line-height: 1.1; }
.sr-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.sr-front-img { max-width: 160px; margin: 20px auto; }
.sr-dimensions { list-style: none; padding: 0; border-top: 1px solid var(--border); }
.sr-dimensions li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.sr-dimensions li span:first-child { color: var(--gray); font-weight: 600; }
.sr-dimensions li span:last-child { color: var(--dark); font-weight: 800; text-transform: uppercase; }

.sr-center { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 450px; }
.sr-circle { position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 18px solid var(--light); border-top-color: #3ebcf2; border-right-color: #3ebcf2; z-index: 1; display: flex; flex-direction: column; align-items: center; padding-top: 50px; }
.sr-cc-label { font-size: 0.9rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.1em; z-index: 2; }
.sr-cc-val { font-family: 'Barlow Condensed', sans-serif; font-size: 6rem; font-weight: 900; color: var(--dark); line-height: 0.9; z-index: 2; margin-top: -5px; }
.sr-cc-val small { font-size: 1.5rem; }
.sr-main-img { position: relative; z-index: 3; width: 110%; max-width: 550px; transform: scale(1.05) translateY(20px); filter: drop-shadow(0 20px 20px rgba(0,0,0,0.15)); }
.sr-colors { display: flex; gap: 15px; margin-top: 50px; position: relative; z-index: 4; }
.color-dot { width: 30px; height: 30px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--border); cursor: pointer; transition: 0.2s; }

.sr-right { display: flex; flex-direction: column; gap: 25px; }
.sr-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 25px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.sr-card-title { font-size: 0.8rem; font-weight: 700; color: var(--dark); text-transform: uppercase; margin-bottom: 10px; }
.sr-card-val { font-family: 'Barlow', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--gray); }

.bg-light-gray { background: #f4f4f6; padding: 80px 0; }
.ficha-tecnica-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.ficha-title { text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--dark); text-transform: uppercase; margin-bottom: 50px; letter-spacing: 1px; }
.ficha-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.ficha-box { background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.04); }
.ficha-box-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--blue); text-transform: uppercase; margin-bottom: 20px; border-bottom: 2px solid var(--light); padding-bottom: 10px; }
.ficha-list { list-style: none; padding: 0; margin: 0; }
.ficha-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed #e0e0e0; font-size: 0.95rem; }
.ficha-list li:last-child { border-bottom: none; }
.ficha-label { font-weight: 600; color: var(--gray); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; }
.ficha-value { font-weight: 700; color: var(--dark); text-align: right; max-width: 60%; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LIBRO DE RECLAMACIONES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-container { max-width: 800px; margin: 0 auto; background: #ffffff; padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 5px solid var(--red); }
.form-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--dark); text-transform: uppercase; margin-bottom: 20px; border-bottom: 2px solid var(--light); padding-bottom: 10px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.input-group input, .input-group select, .input-group textarea { font-family: 'Barlow', sans-serif; padding: 12px 15px; border: 1px solid var(--border); border-radius: 4px; font-size: 1rem; outline: none; transition: border-color 0.3s; background: #fdfdfd; }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { border-color: var(--blue); background: #fff; }
.btn-enviar-reclamo { margin-top: 30px; width: 100%; background: var(--red); color: white; border: none; padding: 18px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: background 0.3s, transform 0.2s; }
.btn-enviar-reclamo:hover { background: #cc0000; transform: translateY(-2px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CATÃLOGO COMPONENTES (DISEÃ‘O PC - 4 COL)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (min-width: 769px) {
  #hamburger { display: none !important; }
  .cat-card { display: block; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 15px; text-align: left; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
  .cat-card-img-wrap { width: 100%; border-radius: 6px; overflow: hidden; margin-bottom: 12px; }
  .cat-card-img-wrap img { width: 100%; height: 100%; display: block; object-fit: contain; }
  .cat-card-cat { font-size: 0.8rem; font-weight: 700; color: #0033A0; text-transform: uppercase; margin-bottom: 4px; }
  .cat-card-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 900; color: #0d0d0d; text-transform: uppercase; margin-bottom: 12px; }
  .cat-card-specs { font-size: 0.9rem; color: #555; display: flex; flex-direction: column; gap: 4px; margin-bottom: 15px; }
  .btn-detalles-replica { width: 100%; background: #0d0d0d; color: #ffffff; border: none; padding: 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 4px; cursor: pointer; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMACIONES PREMIUM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.efecto-revelar { animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.cat-card img, #viewerImg, .sr-main-img { transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease !important; }
.cat-card:hover img { transform: translateY(-3px); filter: brightness(1.04); }
.viewer-stage:hover #viewerImg { transform: scale(1.04) translateY(-4px); filter: brightness(1.1); }
.btn-detalles-replica, .btn-nav, .btn-hero, .btn-enviar-reclamo { position: relative; overflow: hidden; transition: all 0.3s ease !important; box-shadow: 0 0 0 rgba(208, 2, 27, 0); }
.btn-detalles-replica:hover, .btn-nav:hover, .btn-hero:hover { letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0, 51, 160, 0.3); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONSOLIDACIÃ“N RESPONSIVA (CELULARES)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  /* Nav MÃ³vil */
  #nav { display: flex !important; justify-content: space-between !important; align-items: center !important; padding: 10px 15px !important; height: 70px !important; position: relative !important; }
  .nav-links { position: absolute !important; top: 70px !important; left: 0 !important; width: 100% !important; background: #ffffff !important; box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important; flex-direction: column !important; padding: 15px 0 !important; margin: 0 !important; display: none !important; z-index: 99 !important; list-style: none; }
  .nav-links.active { display: flex !important; }
  .btn-nav { display: none !important; }
  
  #hamburger { display: flex !important; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: transparent; border: none; cursor: pointer; z-index: 100; padding: 0; }
  #hamburger span { width: 100%; height: 3px; background-color: #0d0d0d; border-radius: 2px; transition: all 0.3s ease; }

  /* CatÃ¡logo Horizontal TÃ¡ctil */
  .cat-card { display: flex !important; align-items: stretch; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 14px; margin-bottom: 16px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); overflow: hidden; }
  .cat-card-img-box { flex: 1.2; max-width: 45%; position: relative; }
  .cat-card-img-wrap { width: 100%; height: 100%; }
  .cat-card-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
  .cat-card-img-box .cat-card-badges { position: absolute; top: 8px; left: 8px; z-index: 5; }
  .cat-card-info-box { flex: 1.5; padding: 20px 15px; display: flex; flex-direction: column; justify-content: center; text-align: left; }
  .cat-card-cat { font-size: 0.75rem; font-weight: 700; color: #0033A0; text-transform: uppercase; margin-bottom: 4px; }
  .cat-card-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 900; color: #0d0d0d; text-transform: uppercase; line-height: 1.1; margin-bottom: 8px; }
  .cat-card-specs span:not(:first-child) { display: none; }
  .cat-card-specs { font-size: 0.95rem; color: #555; }
  .btn-detalles-replica { display: none; }

  /* Botones del Hero Slider */
  .slide-btns { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; gap: 12px !important; width: 100% !important; max-width: 320px !important; margin: 20px auto 0 !important; }
  .btn-hero, .btn-hero-ghost { width: 100% !important; box-sizing: border-box !important; text-align: center !important; padding: 14px 0 !important; margin: 0 !important; }

  /* Reclamaciones */
  .form-grid { grid-template-columns: 1fr; }
  .form-container { padding: 20px; }

  .video-feature-section {
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, #0b1020 0%, #111827 54%, #ffffff 54.2%, #ffffff 100%);
  }

  .video-feature-copy .sec-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 1024px) {
  .split-hero { grid-template-columns: 1fr; }
  .split-left { padding-top: 120px; padding-bottom: 80px; text-align: center; min-height: 450px; background: #f4f4f6 !important; }
  .split-left-moto { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transform: none; max-width: none; margin: 0; display: block; filter: brightness(1) !important; }
  .showroom-hero { grid-template-columns: 1fr; }
  .sr-center { order: -1; min-height: 400px; margin-bottom: 30px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SOPORTE MODO OSCURO & TRANSICIONES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
body, section, nav, footer, div, .card, .moto-card { transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.theme-toggle { width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--blue); color: white; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.theme-toggle:hover { transform: scale(1.08); }

body.dark-mode { background: #0f1115; color: #ffffff; }
body.dark-mode #nav { background: #151922; border-bottom: 3px solid var(--red); }
body.dark-mode .nav-links a { color: white; }
body.dark-mode .moto-card { background: #1b2230; color: white; }
body.dark-mode input { background: #1b2230; color: white; border: 1px solid #333; }
body.dark-mode footer { background: #080808; }
body.dark-mode section { background: #0f1115; }
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode p { color: white; }
body.dark-mode .cat-card { background: #151922; border-color: #2a3142; }
body.dark-mode .cat-card-name { color: #ffffff; }
body.dark-mode .cat-card-specs { color: #aaa; }

/* ========================================================
   HOME 2026: VISOR, SCROLL Y ACABADO ACTUAL
   ======================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#nav.nav-compact {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.slide-content {
  animation: heroTextIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.slide.active > img {
  animation: heroImageDrift 8s ease-in-out both;
}

#moto-viewer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

#moto-viewer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 51, 160, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(208, 2, 27, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

#moto-viewer .section-inner {
  position: relative;
  z-index: 2;
}

.viewer-subtitle {
  margin-bottom: 34px;
}

.viewer-stage {
  --viewer-tilt-x: 0deg;
  --viewer-tilt-y: 0deg;
  position: relative;
  max-width: min(920px, 92vw);
  min-height: 480px;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 70%, rgba(208, 2, 27, 0.16), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f3f6fb 52%, #e9eef7 100%);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
  perspective: 1100px;
}

.viewer-stage::before {
  content: "";
  position: absolute;
  inset: auto -12% 0;
  height: 38%;
  background:
    linear-gradient(transparent, rgba(15, 23, 42, 0.12)),
    repeating-linear-gradient(90deg, rgba(0,51,160,0.11) 0 1px, transparent 1px 58px);
  transform: perspective(800px) rotateX(64deg);
  transform-origin: bottom;
}

.viewer-stage::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 56px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(15, 23, 42, 0.32), transparent 70%);
  filter: blur(7px);
}

.viewer-bg-word {
  position: absolute;
  right: -20px;
  top: 24px;
  color: rgba(0, 51, 160, 0.06);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(5rem, 16vw, 12rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

.viewer-badge {
  top: 22px;
  left: 22px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 12px 26px rgba(208, 2, 27, 0.24);
}

#viewerImg {
  position: relative;
  z-index: 3;
  width: min(86%, 760px);
  height: 390px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 32px 24px rgba(15, 23, 42, 0.28));
  transform: rotateX(var(--viewer-tilt-x)) rotateY(var(--viewer-tilt-y)) translateZ(48px);
  transition:
    opacity 0.22s ease,
    transform 0.18s ease,
    filter 0.18s ease;
}

#viewerImg.fading {
  opacity: 0;
  transform: translateY(12px) scale(0.97);
}

.viewer-stage:hover #viewerImg {
  filter: drop-shadow(0 42px 28px rgba(15, 23, 42, 0.32));
}

.viewer-controls {
  max-width: min(920px, 92vw) !important;
  margin-top: 22px !important;
  padding: 18px !important;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.v-arrow {
  border-radius: 8px;
  background: #101624;
}

.v-arrow:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.v-name {
  max-width: 560px;
  line-height: 1 !important;
}

.v-specs {
  gap: 14px !important;
  flex-wrap: wrap;
}

.v-spec {
  min-width: 120px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.v-dot {
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: #cbd5e1;
}

.v-dot.active {
  background: var(--red);
  transform: none;
}

.btn-outline {
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 51, 160, 0.12);
}

.quick-actions {
  position: relative;
  z-index: 4;
  box-shadow: 0 20px 50px rgba(0, 51, 160, 0.16);
}

.qa-item {
  min-height: 92px;
}

.serv-card,
.noticia-card,
.dist-arch {
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.10);
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.09);
  }
}

@media (max-width: 768px) {
  .viewer-stage {
    min-height: 360px;
    border-radius: 8px;
  }

  #viewerImg {
    width: 96%;
    height: 270px;
  }

  .viewer-controls {
    display: grid !important;
    grid-template-columns: 48px 1fr 48px;
    gap: 10px;
    padding: 12px !important;
  }

  .v-spec {
    min-width: 92px;
    padding: 8px 10px;
  }

  .v-name {
    font-size: 1.35rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .slide-content,
  .slide.active > img,
  #viewerImg {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  }
}
