/* ==========================================================================
   AVEL CENTRO AUTOMOTIVO - RELEASE v4.0.0
   Vídeo de Oficina em Segundo Plano + Trilha Sonora Jazz Instrumental
   ========================================================================== */

:root {
  --red: #e1182c;
  --red-bright: #ff2a40;
  --red-dark: #a50b1a;
  --red-glow: rgba(225, 24, 44, 0.45);
  --red-glow-heavy: rgba(225, 24, 44, 0.85);
  --bg-deep: #030406;
  --bg-dark: #07090d;
  --bg-card: #0c0f14;
  --bg-card-hover: #131720;
  --bg-surface: #10141b;
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --text-white: #ffffff;
  --text-muted: #8e96a4;
  --text-dim: #5a6270;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-red: rgba(225, 24, 44, 0.6);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.85);
  --shadow-red: 0 10px 32px rgba(225, 24, 44, 0.45);
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 84px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  background-color: var(--bg-deep);
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-main);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(225, 24, 44, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 85% 85%, rgba(225, 24, 44, 0.05) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

svg {
  flex: none;
  width: 1.15em;
  height: 1.15em;
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1220px, 100% - 44px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

section, .section, .hero-section {
  scroll-margin-top: var(--header-height);
}

.section {
  padding: 85px 0 100px;
  position: relative;
}

/* Headings & Kickers */
.section-header-center {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 56px;
}

.section-kicker {
  color: var(--red-bright);
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-header-center .section-kicker {
  justify-content: center;
}

.section-kicker::before, .section-kicker::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
}

.section-kicker.no-after::after {
  display: none;
}

.section-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 16px;
}

/* Top Trust Bar */
.top-trust-bar {
  background: #020304;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 0;
  position: relative;
  z-index: 50;
}

.top-trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.google-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(66, 133, 244, 0.14);
  border: 1px solid rgba(66, 133, 244, 0.4);
  color: #93b9ff;
  padding: 4px 13px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 16px rgba(66, 133, 244, 0.2);
}

/* Site Header Glassmorphism */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(3, 4, 6, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(2, 3, 4, 0.98);
  border-bottom-color: rgba(225, 24, 44, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.85);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 144px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.04);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px var(--red);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #ffffff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-cta {
  background: linear-gradient(135deg, var(--red) 0%, #b90d1e 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}

.btn-header-cta:hover {
  background: linear-gradient(135deg, var(--red-bright) 0%, #d41124 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(225, 24, 44, 0.6);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  color: #ffffff;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: var(--transition);
}

.mobile-nav-drawer {
  display: none;
  background: #06080a;
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 24px;
}

.mobile-nav-drawer.active {
  display: block;
}

.mobile-nav-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-drawer a {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   HERO SECTION — VÍDEO DE OFICINA REAL EM SEGUNDO PLANO (SEM ÁUDIO NO VÍDEO)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  overflow: hidden;
  padding: 60px 0 100px;
}

/* Vídeo de Oficina Real do YouTube (100% Sem Áudio, Muted, Loop Contínuo) */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.48;
  filter: brightness(0.68) contrast(1.18) saturate(1.15);
}

/* Fallback: Frame estático extraído do vídeo */
.hero-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.40;
}

/* Overlay Escuro com Vinheta de Cinema */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(3, 4, 6, 0.75) 0%,
    rgba(3, 4, 6, 0.35) 45%,
    rgba(3, 4, 6, 0.95) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Conteúdo Centralizado com Animação Staggered */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  text-align: center;
  padding: 0 24px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-bright);
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  background: rgba(225, 24, 44, 0.16);
  border: 1px solid var(--border-red);
  padding: 7px 22px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(225, 24, 44, 0.3);
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.2s forwards;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(225, 24, 44, 0.9);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 24, 44, 0.9); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(225, 24, 44, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 24, 44, 0); }
}

.hero-content h1 {
  font-size: clamp(38px, 5.8vw, 68px);
  font-weight: 950;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.95);
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.5s forwards;
}

.hero-content h1 .highlight-red {
  color: var(--red-bright);
  display: inline-block;
  position: relative;
  text-shadow: 0 0 36px var(--red-glow-heavy);
}

.hero-content h1 .highlight-red::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  box-shadow: 0 0 10px var(--red);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 38px;
  line-height: 1.75;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.8s forwards;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 1.1s forwards;
}

.btn-primary-luxury {
  background: linear-gradient(135deg, #25d366 0%, #1c9848 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.btn-primary-luxury:hover {
  background: linear-gradient(135deg, #2ce872 0%, #20ba59 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.65);
}

.btn-secondary-luxury {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-secondary-luxury:hover {
  background: #ffffff;
  color: var(--bg-deep);
  border-color: #ffffff;
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Seta Animada para Baixo */
.hero-scroll-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-scroll-arrow:hover {
  border-color: var(--red);
  box-shadow: 0 0 18px var(--red-glow);
}

.hero-scroll-arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-top: -4px;
  animation: arrowBounce 2s infinite;
}

@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translate(0, 0); }
  40% { transform: rotate(45deg) translate(5px, 5px); }
  60% { transform: rotate(45deg) translate(3px, 3px); }
}

/* ==========================================================================
   FLOATING AMBIENT AUDIO CONTROLLER (JINGLE BELLS INSTRUMENTAL JAZZ)
   ========================================================================== */
.audio-control-pill {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  background: rgba(12, 15, 21, 0.88);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  padding: 6px 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.audio-control-pill:hover {
  border-color: var(--border-red);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(225, 24, 44, 0.25);
  transform: translateY(-2px);
}

.audio-toggle-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Animated Equalizer Wave Bars */
.audio-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  width: 18px;
  padding-bottom: 2px;
}

.audio-equalizer .bar {
  width: 3px;
  background: var(--text-dim);
  border-radius: 2px;
  height: 4px;
  transition: background 0.3s ease;
}

.audio-control-pill.playing .audio-equalizer .bar {
  background: var(--red-bright);
}

.audio-control-pill.playing .bar-1 { animation: eqBar 0.8s ease-in-out infinite alternate; }
.audio-control-pill.playing .bar-2 { animation: eqBar 1.1s ease-in-out infinite alternate 0.2s; }
.audio-control-pill.playing .bar-3 { animation: eqBar 0.7s ease-in-out infinite alternate 0.4s; }
.audio-control-pill.playing .bar-4 { animation: eqBar 1.0s ease-in-out infinite alternate 0.1s; }

@keyframes eqBar {
  0% { height: 4px; }
  100% { height: 16px; }
}

.audio-text strong {
  color: #ff5264;
}

/* ==========================================================================
   AUTHORITY 4-PILL BAR
   ========================================================================== */
.authority-bar-section {
  background: #05070a;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 96px;
}

.stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 22px;
  border-right: 1px solid var(--border-subtle);
  text-align: left;
  transition: background 0.3s ease;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box:hover {
  background: rgba(225, 24, 44, 0.08);
}

.stat-number {
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

.stat-number.accent {
  color: var(--red-bright);
  text-shadow: 0 0 18px var(--red-glow);
}

.stat-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.38;
}

/* ==========================================================================
   ABOUT SECTION ("A AVEL" - UNIFIED DARK CARBON)
   ========================================================================== */
.about {
  background: #07090d;
  color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 75px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 480px;
}

.about-visual::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 70%;
  height: 80%;
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 20px rgba(225, 24, 44, 0.18);
}

.about-image {
  position: absolute;
  inset: 0 36px 0 0;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1400&q=86') center / cover no-repeat;
  border-radius: var(--radius-sm);
  filter: saturate(1.05) contrast(1.08);
  border: 1px solid var(--border-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

.about-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}

.experience-card {
  position: absolute;
  bottom: 24px;
  right: 0;
  z-index: 2;
  background: linear-gradient(145deg, var(--red) 0%, #a50b1a 100%);
  color: #ffffff;
  width: 205px;
  padding: 26px;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(225, 24, 44, 0.5);
  display: flex;
  flex-direction: column;
}

.experience-card span {
  font-size: 10.5px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.experience-card strong {
  font-size: 48px;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 4px 0;
}

.experience-card small {
  font-size: 10.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.about-copy .lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  color: #ffffff;
  margin: 18px 0 14px;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.google-verified-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0e1218;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 26px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.google-verified-card strong {
  display: block;
  font-size: 13.5px;
  color: #93b9ff;
  font-weight: 800;
}

.google-verified-card span {
  font-size: 12px;
  color: var(--text-dim);
}

.about-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 24px 0 30px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 750;
  color: #ffffff;
}

.check-item svg {
  color: var(--red);
  flex-shrink: 0;
}

/* Button Components */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  font-size: 13.5px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  background: #141720;
  color: #ffffff;
  border: 1px solid var(--border-card);
}

.button-dark:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.button-white {
  background: #ffffff;
  color: var(--bg-deep);
  font-weight: 900;
}

.button-white:hover {
  background: var(--bg-deep);
  color: #ffffff;
}

/* ==========================================================================
   SERVICES SECTION (6 LUXURY 3D TILT CARDS)
   ========================================================================== */
.services {
  background: #030406;
  color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.15s ease-out, box-shadow 0.25s ease;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-red);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.75), 0 0 35px rgba(225, 24, 44, 0.25);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.service-number {
  font-size: 14px;
  font-weight: 950;
  color: var(--red);
  letter-spacing: 0.04em;
}

.service-badge {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-subtle);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(225, 24, 44, 0.12);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(225, 24, 44, 0.22);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon-box {
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(225, 24, 44, 0.4);
}

.service-card h3 {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.service-link svg {
  color: var(--red);
  transition: transform 0.25s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(6px);
}

/* ==========================================================================
   PROCESS SECTION ("COMO FUNCIONA" - DARK CARBON MOTORSPORT)
   ========================================================================== */
.process {
  background: #07090d;
  color: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card-step {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.process-card-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.process-card-step:hover::before {
  transform: scaleX(1);
}

.process-card-step:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 25px rgba(225, 24, 44, 0.2);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.step-badge-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(225, 24, 44, 0.12);
  border: 1px solid var(--red);
  color: var(--red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 0 16px var(--red-glow);
}

.process-card-step h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #ffffff;
}

.process-card-step p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ==========================================================================
   QUOTE SECTION (CINEMATIC LUXURY)
   ========================================================================== */
.quote-section {
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #030406;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1606577924006-27d39b132ae2?auto=format&fit=crop&w=2000&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.04);
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(3, 4, 6, 0.7) 0%, rgba(3, 4, 6, 0.98) 100%);
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 1;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(225, 24, 44, 0.6);
}

.quote-content blockquote {
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9);
}

.quote-author {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  font-weight: 800;
}

/* ==========================================================================
   VIP SCHEDULING FORM
   ========================================================================== */
.schedule-section {
  background: #07090d;
  color: #ffffff;
}

.schedule-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 58px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.schedule-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, #ff5e6e 100%);
  box-shadow: 0 0 20px var(--red);
}

.form-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.form-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 750;
}

.form-perk-item svg {
  color: var(--red);
}

.vip-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #040507;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group select option {
  background: #14161a;
  color: #ffffff;
}

.btn-form-submit {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #25d366 0%, #1ea34f 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  padding: 17px 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, #2ce872 0%, #20ba59 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   TESTIMONIALS / GOOGLE REVIEWS
   ========================================================================== */
.testimonials-section {
  background: #030406;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #fbbc05;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}

.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.reviewer-name strong {
  display: block;
  font-size: 13.5px;
  color: #ffffff;
}

.reviewer-name span {
  font-size: 11.5px;
  color: var(--text-dim);
}

.google-review-icon {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq {
  background: #07090d;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
  align-items: flex-start;
}

.faq-list {
  border-top: 1px solid var(--border-subtle);
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-size: 15.5px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-size: 24px;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.2s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  padding-bottom: 22px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background: #030406;
}

.contact-card-main {
  background: linear-gradient(135deg, var(--red) 0%, #a50b1a 100%);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(225, 24, 44, 0.3);
}

.contact-copy {
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.contact-copy::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-copy h2 {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15.5px;
  margin: 18px 0 30px;
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.contact-info-panel {
  background: #0a0c10;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.info-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-row span {
  display: block;
  font-size: 9.5px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.info-row a, .info-row p {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}

.info-row a:hover {
  color: #ff5a6b;
}

.route-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn-route {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  background: #161920;
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: #ffffff;
}

.btn-route:hover {
  background: var(--red);
  border-color: var(--red);
}

.map-container {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  height: 350px;
  background: #0f1217;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(90%);
}

/* ==========================================================================
   FOOTER (WITH OFFICIAL AGENCY LINK)
   ========================================================================== */
.site-footer {
  background: #020304;
  border-top: 1px solid var(--border-subtle);
  padding: 68px 0 30px;
  margin-top: 75px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-logo {
  width: 144px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--red);
}

.footer-agency {
  text-align: right;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-agency a.agency-link {
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  transition: var(--transition);
}

.footer-agency a.agency-link:hover {
  color: var(--red);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: linear-gradient(135deg, #25d366 0%, #1ea34f 100%);
  color: #ffffff;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-size: 13.5px;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  background: linear-gradient(135deg, #2ae26e 0%, #20ba59 100%);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.65), 0 0 32px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .desktop-nav, .btn-header-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-inner {
    grid-template-columns: auto auto;
  }
  .services-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box:nth-child(2) {
    border-right: none;
  }
  .stat-box:nth-child(3), .stat-box:nth-child(4) {
    border-top: 1px solid var(--border-subtle);
  }
  .about-grid, .faq-grid, .schedule-wrapper, .contact-card-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-agency {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1200px);
  }
  .section {
    padding: 55px 0 70px;
  }
  .top-trust-bar {
    display: none;
  }
  :root {
    --header-height: 72px;
  }
  .header-inner {
    height: 72px;
  }
  .brand-logo {
    width: 124px;
  }
  .hero-section {
    min-height: 84vh;
    padding: 40px 0 80px;
  }
  .hero-content h1 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .hero-content p {
    font-size: 15px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn-primary-luxury,
  .hero-buttons .btn-secondary-luxury {
    width: 100%;
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-box {
    padding: 14px 12px;
  }
  .stat-number {
    font-size: 22px;
  }
  .stat-text {
    font-size: 9.5px;
  }
  .services-grid, .testimonials-grid, .vip-form {
    grid-template-columns: 1fr;
  }
  .schedule-wrapper {
    padding: 30px 18px;
  }
  .contact-copy, .contact-info-panel {
    padding: 36px 22px;
  }
  .about-check-list {
    grid-template-columns: 1fr;
  }
  .about-visual {
    min-height: 360px;
  }
  .about-image {
    right: 20px;
  }
  .experience-card {
    width: 150px;
    padding: 18px;
    bottom: 20px;
  }
  .experience-card strong {
    font-size: 36px;
  }
  .audio-control-pill {
    bottom: 18px;
    left: 16px;
  }
  .audio-text {
    display: none;
  }
  .audio-toggle-btn {
    padding: 6px 8px;
  }
  .floating-whatsapp span {
    display: none;
  }
  .floating-whatsapp {
    padding: 14px;
    bottom: 16px;
    right: 16px;
    border-radius: 50%;
  }
}
