/* ═══════════════════════════════════════════
   TURBOS Y MÁS — Global Styles
   ═══════════════════════════════════════════ */

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

:root {
  --red:      #E11D2A;
  --red-dk:   #A11520;
  --red-lt:   rgba(225,29,42,0.16);
  --steel:    #8A93A0;
  --ink:      #000000;
  --ink-2:    #141414;
  --text:     #F5F5F5;
  --muted:    #9C9C9C;
  --border:   #2A2A2A;
  --bg:       #0A0A0A;
  --bg-2:     #141414;
  --bg-3:     #1C1C1C;
  --metal:      #F1F1F3;
  --metal-2:    #E6E6E9;
  --metal-border: rgba(10,10,10,0.1);
  --metal-text: #17171A;
  --metal-muted: #5B5B60;
  --radius:   4px;
  --radius-lg: 6px;
  --nav-h:    68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── GRAIN OVERLAY (modern texture) ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(225,29,42,0.3); }
  70%  { box-shadow: 0 0 0 14px rgba(225,29,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(225,29,42,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  background: rgba(10,10,10,0.95);
  border-bottom-color: rgba(255,255,255,0.08);
}

/* Nav transparente sobre el hero de inicio */
body.home nav:not(.scrolled) {
  background: rgba(0,0,0,0.25);
  border-bottom-color: rgba(255,255,255,0.3);
}
body.home nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.75);
}
body.home nav:not(.scrolled) .nav-links a:hover,
body.home nav:not(.scrolled) .nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}
body.home nav:not(.scrolled) .nav-cta {
  background: var(--red) !important;
  color: white !important;
}
body.home nav:not(.scrolled) .hamburger span {
  background: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo-mark svg { width: 18px; height: 18px; fill: white; }
.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.logo-text span { color: var(--red); }

.logo-img {
  height: 71px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
.logo:hover .logo-img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: var(--bg-3); }
.nav-links a.active { font-weight: 600; }

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  margin-left: 0.5rem;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--red-dk) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 301;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.8rem 2rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--red); background: var(--red-lt); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  background: var(--red);
  color: white;
  padding: 0.9rem 2.5rem;
  border-radius: 3px;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(225,29,42,0.3);
}

/* ─── SHARED ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 6%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

h2.section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}
h2.section-title.light { color: white; }

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 3.5rem;
}
.section-desc.light { color: rgba(255,255,255,0.6); }

/* ─── LIGHT SECTION (metal/white break between dark sections) ─── */
section.section-light {
  background: var(--metal);
}
.section-light h2.section-title { color: var(--metal-text); }
.section-light .section-desc { color: var(--metal-muted); }
.section-light .why-item:hover {
  background: rgba(10,10,10,0.045);
  border-color: var(--metal-border);
}
.section-light .why-item h4 { color: var(--metal-text); }
.section-light .why-item p { color: var(--metal-muted); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: white;
  padding: 0.85rem 1.9rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(225,29,42,0.3);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225,29,42,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 0.85rem 1.9rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.18); }

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  padding: 160px 6% 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(225,29,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-lt);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.page-hero .hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-ring 2s infinite;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.page-hero h1 .highlight {
  color: var(--red);
  position: relative;
}
.page-hero.contacto-hero,
.page-hero.faq-hero {
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.page-hero.contacto-hero {
  background-image: linear-gradient(105deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.5) 100%), url('../Images/Contacto-hero.jpg');
}
.page-hero.faq-hero {
  background-image: linear-gradient(105deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.5) 100%), url('../Images/Preguntas.jpg');
}
.page-hero.contacto-hero::before,
.page-hero.faq-hero::before { display: none; }
.page-hero.contacto-hero .hero-pill,
.page-hero.faq-hero .hero-pill {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.page-hero.contacto-hero h1,
.page-hero.faq-hero h1 { color: #fff; }
.page-hero.contacto-hero p,
.page-hero.faq-hero p { color: rgba(255,255,255,0.75); }

.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* ─── HERO (home) ─── */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-image: url('../Images/HERO.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000000;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.4) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6%;
  position: relative;
  z-index: 1;
}

.hero-left {
  animation: fadeUp 0.8s ease both;
  max-width: 660px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(8px);
}
.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-ring 2s infinite;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: white;
  margin-bottom: 1.5rem;
}
.hero h1 .highlight {
  color: var(--red);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--steel);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
}
.trust-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 0.2rem;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* Hero right image */
.hero-right {
  animation: fadeUp 0.8s 0.2s ease both;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  display: block;
}

/* ─── SERVICES TICKER ─── */
.services-ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 0;
  position: relative;
}
.services-ticker::before,
.services-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.services-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}
.services-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  white-space: nowrap;
}
.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-style: italic;
  transform: skewX(-8deg);
}
.ticker-chip .chip-icon {
  font-size: 1.05rem;
  font-style: normal;
  display: inline-block;
  transform: skewX(8deg);
}
.ticker-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ticker-badge.green  { background: rgba(34,197,94,0.2);  color: #4ADE80; }
.ticker-badge.blue   { background: rgba(59,130,246,0.2); color: #60A5FA; }
.ticker-badge.orange { background: rgba(251,146,60,0.2); color: #FB923C; }
.ticker-badge.red    { background: rgba(248,113,113,0.2); color: #F2555F; }
.ticker-sep {
  width: 3px;
  height: 16px;
  background: var(--red);
  flex-shrink: 0;
  transform: skewX(-20deg);
}

/* ─── MARQUEE ─── */
.marquee-section {
  border-top: 1px solid var(--metal-border);
  border-bottom: 1px solid var(--metal-border);
  padding: 1.2rem 0;
  overflow: hidden;
  background: var(--metal);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.5rem;
  white-space: nowrap;
}
.marquee-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--metal-border); flex-shrink: 0; }
.marquee-brand { font-size: 0.82rem; font-weight: 700; color: var(--metal-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.marquee-label { font-size: 0.72rem; color: var(--metal-border); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; }
.marquee-logo {
  height: 26px;
  max-width: 90px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* ─── SERVICES ─── */
.services-section { padding: 100px 0; background: var(--bg); }
.services-section.values-section {
  position: relative;
  background-image: linear-gradient(105deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.8) 55%, rgba(0,0,0,0.6) 100%), url('../Images/Nosotros.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
.values-section .service-card {
  background: rgba(10,10,10,0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-color: rgba(255,255,255,0.15);
}
.values-section .service-card:hover {
  background: rgba(10,10,10,0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #F2555F);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55);
  border-color: rgba(225,29,42,0.4);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}
.icon-red    { background: var(--red-lt); }
.icon-slate  { background: #F1F5F9; }
.icon-amber  { background: #FEF3C7; }
.icon-teal   { background: #CCFBF1; }
.icon-violet { background: #EDE9FE; }
.icon-green  { background: #DCFCE7; }

.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 1.2rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ─── SERVICES (MODERN VARIANT) ─── */
.services-section.modern .service-card {
  background: var(--bg-2);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.services-section.modern .service-card::before {
  background: linear-gradient(90deg, rgb(var(--accent)), rgba(var(--accent),0.25));
}
.services-section.modern .service-card:hover {
  border-color: rgba(var(--accent),0.5);
  box-shadow: 0 20px 44px rgba(var(--accent),0.25), 0 8px 20px rgba(0,0,0,0.5);
}
.services-section.modern .service-photo {
  margin: -2.2rem -2.2rem 1.4rem;
  height: 170px;
  position: relative;
  overflow: hidden;
}
.services-section.modern .service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.services-section.modern .service-card:hover .service-photo img { transform: scale(1.06); }
.services-section.modern .service-index {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: rgb(var(--accent));
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  transition: background 0.3s, color 0.3s;
}
.services-section.modern .service-card:hover .service-index { background: rgb(var(--accent)); color: #fff; }
.services-section.modern .service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: rgba(var(--accent), 0.12);
  box-shadow: inset 0 0 0 1px rgba(var(--accent),0.14);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s;
}
.services-section.modern .service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 22px rgba(var(--accent),0.35);
}
.services-section.modern .service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  transform: translateY(4px);
}
.services-section.modern .service-card:hover .service-arrow { transform: translateY(0); }
.services-section.modern .arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgb(var(--accent));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.25s;
}
.services-section.modern .service-card:hover .arrow-circle { transform: translateX(3px); }

/* ─── STATS (light metal panel, dark chrome cards) ─── */
.stats-section { background: var(--metal); padding: 80px 0; }

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.stat-box {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0,0,0,0.28), 0 2px 10px rgba(0,0,0,0.16);
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #F2555F);
}
.stat-box:hover {
  background: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05)), var(--ink-2);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(0,0,0,0.32), 0 2px 10px rgba(0,0,0,0.18);
}
.stat-box .num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15em;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-box .num em {
  color: var(--red);
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.stat-box .desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ─── VEHICLES ─── */
.vehicles-section { padding: 100px 0; background: var(--bg-2); }

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.vehicle-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(225,29,42,0.2);
  border-color: rgba(225,29,42,0.4);
}
.vehicle-card .vc-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.vehicle-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.vehicle-card p { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

/* ─── PROCESS DARK ─── */
.process-section {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(225,29,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.process-section .section-label { color: #F2555F; }
.process-section .section-label::before { background: #F2555F; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 0;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.process-step:hover .step-circle {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 0 24px rgba(225,29,42,0.4);
}
.process-step h4 { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ─── WHY US ─── */
.why-section { padding: 100px 0; background: var(--bg); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.2rem; }
.why-list.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 2rem; }
.why-item {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.why-item:hover {
  background: var(--bg-2);
  border-color: var(--border);
  transform: translateX(4px);
}
.why-item-icon {
  width: 40px;
  height: 40px;
  background: var(--red-lt);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.why-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* Dashboard visual */
.why-visual { position: relative; }
.dashboard-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.dash-top {
  background: var(--ink);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.d1 { background: #EF4444; }
.d2 { background: #F59E0B; }
.d3 { background: #22C55E; }
.dash-title { margin-left: auto; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.4); }
.dash-body { padding: 1.5rem 2rem; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.dash-kpi { background: var(--bg-3); border-radius: 4px; padding: 1rem; text-align: center; }
.dash-kpi .kpi-val { font-size: 1.5rem; font-weight: 900; color: var(--text); letter-spacing: -1px; }
.dash-kpi .kpi-val em { color: var(--red); font-style: normal; }
.dash-kpi .kpi-lbl { font-size: 0.7rem; color: var(--muted); margin-top: 0.2rem; }

.dash-bar-label { font-size: 0.75rem; font-weight: 600; color: var(--muted); margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.dash-bars { display: flex; flex-direction: column; gap: 0.6rem; }
.dash-bar-row { display: flex; align-items: center; gap: 0.8rem; }
.dash-bar-name { font-size: 0.78rem; font-weight: 500; color: var(--text); width: 80px; flex-shrink: 0; }
.dash-bar-track { flex: 1; height: 8px; background: var(--bg-3); border-radius: 100px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--red), #F2555F); transition: width 1s ease; }
.dash-bar-pct { font-size: 0.75rem; font-weight: 700; color: var(--text); width: 36px; text-align: right; }

.why-badge {
  position: absolute;
  bottom: -16px;
  right: -20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float 3.5s ease-in-out infinite;
}
.why-badge-icon { width: 32px; height: 32px; background: #DCFCE7; border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.why-badge strong { display: block; font-size: 0.82rem; color: var(--text); }
.why-badge span { font-size: 0.7rem; color: var(--muted); }

/* ─── CONTACT ─── */
.contact-section { padding: 100px 0; background: var(--bg-2); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.contact-item:hover {
  border-color: rgba(225,29,42,0.5);
  transform: translateX(4px);
}
.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-icon.red   { background: var(--red-lt); }
.ci-icon.slate { background: var(--bg-3); }
.ci-icon.green { background: rgba(37,211,102,0.15); }
.ci-icon svg { width: 18px; height: 18px; }
.ci-text label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ci-text p, .ci-text a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.ci-text a:hover { color: var(--red); }

/* Form */
.quote-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.form-title { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 0.3rem; }
.form-subtitle { font-size: 0.83rem; color: var(--muted); margin-bottom: 2rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,29,42,0.18);
  background: var(--bg-3);
}
.form-group select option { background: var(--bg-2); color: var(--text); }
.form-group textarea { min-height: 100px; resize: vertical; }

.btn-form {
  width: 100%;
  padding: 0.9rem;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(225,29,42,0.25);
  margin-top: 0.5rem;
}
.btn-form:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(225,29,42,0.3);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 80px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(225,29,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .btn-primary {
  position: relative;
  font-size: 1rem;
  padding: 1rem 2.2rem;
}

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 60px 0 30px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand .logo-text { color: white; }
.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.22); }

/* ─── WHATSAPP ─── */
.wa-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 300;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.wa-btn svg { width: 28px; height: 28px; fill: white; }

/* ─── SERVICE DETAIL (per-service pages) ─── */
.service-detail { padding: 80px 0; background: var(--bg); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-features { display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.feature-item:hover {
  border-color: rgba(225,29,42,0.2);
  transform: translateX(4px);
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.feature-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

.service-sidebar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.sidebar-title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 1.5rem; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.sidebar-link:hover,
.sidebar-link.active {
  background: var(--bg-3);
  color: var(--text);
  font-weight: 600;
}
.sidebar-link.active { border-left: 3px solid var(--red); }

/* ─── GALLERY ─── */
.gallery-section { padding: 100px 0; background: var(--bg-3); border-top: 1px solid rgba(225,29,42,0.15); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 1rem;
  margin-top: 1rem;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
}
.gallery-item::after {
  content: '⤢';
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
}
.gallery-item:hover::after { opacity: 1; transform: scale(1); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:nth-child(1) img { object-position: center 30%; }
.gallery-item:hover img { transform: scale(1.06); }

/* ─── NOTICIAS ─── */
.noticias-section { padding: 100px 0; }
.noticias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.noticia-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.noticia-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55);
  border-color: rgba(225,29,42,0.4);
}
.noticia-photo { aspect-ratio: 1 / 1; overflow: hidden; }
.noticia-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.noticia-card:hover .noticia-photo img { transform: scale(1.06); }
.noticia-body { padding: 1.4rem 1.4rem 1.6rem; }
.noticia-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.noticia-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ─── VIDEO ─── */
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 3px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .noticias-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
}

/* ─── TESTIMONIALS (light metal panel, dark chrome cards) ─── */
.testimonials-section { padding: 100px 0; background: var(--metal); border-top: 1px solid var(--metal-border); }
.testimonials-section h2.section-title { color: var(--metal-text); }
.testimonials-section .section-desc { color: var(--metal-muted); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.14);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #F2555F);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(225,29,42,0.2), 0 2px 8px rgba(0,0,0,0.16);
}
.testimonial-quote {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  font-weight: 900;
  color: var(--red-lt);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 0.75rem; color: var(--muted); }
.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}
.testimonial-stars span {
  color: #F59E0B;
  font-size: 0.85rem;
}

/* ─── FAQ ─── */
.faq-section { padding: 100px 0; background: var(--bg); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(225,29,42,0.2); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-question h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--red-lt);
  color: var(--red);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── MAP ─── */
.map-section { padding: 80px 0; background: var(--bg); border-top: 1px solid var(--border); }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ─── SOCIAL LINKS ─── */
.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.social-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.5); }
.social-link:hover svg { fill: white; }

/* ─── FLOTILLAS BANNER ─── */
.flotillas-banner {
  padding: 110px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}
.flotillas-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.flotillas-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10,0,0,0.94) 0%, rgba(80,0,0,0.82) 45%, rgba(180,10,10,0.6) 100%),
    radial-gradient(ellipse at top right, rgba(225,29,42,0.35) 0%, transparent 60%);
  mix-blend-mode: normal;
}
.flotillas-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.flotillas-inner h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.flotillas-inner h2 em { color: var(--red); font-style: normal; }
.flotillas-inner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.flotillas-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.flotillas-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.flotillas-feat .check {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(225,29,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #F2555F;
  flex-shrink: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicles-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-inner   { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero { padding: 100px 6% 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }

  .page-hero { padding: 130px 6% 60px; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .why-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .why-list.grid-2 { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner   { grid-template-columns: 1fr 1fr; }
  .form-grid     { grid-template-columns: 1fr; }

  .stat-box .num { font-size: 2.2rem; }
  .stat-box .num em { font-size: 0.95rem; }
  .stat-box { padding: 1.8rem 1.2rem; }

  .hero-trust { gap: 1rem; }
  .trust-num { font-size: 1.3rem; }

  .cta-banner { padding: 60px 6%; }

  .why-visual { order: -1; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .flotillas-inner { max-width: 100%; }
  .map-wrapper iframe { height: 300px; }
}

@media (max-width: 480px) {
  .vehicles-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .trust-divider { display: none; }
}
