/* =====================================================
   DIOY CAR SHOP — style.css
   Design premium automotivo
   ===================================================== */

/* ---- RESET & VARIÁVEIS ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta */
  --black:         #000000;
  --black-soft:    #080808;
  --black-card:    #0f0f0f;
  --black-border:  #1c1c1c;
  --red:           rgb(188, 34, 16);
  --red-dark:      rgb(150, 25, 10);
  --red-glow:      rgba(188, 34, 16, 0.30);
  --green-wa:      #25D366;
  --green-wa-dark: #1ebe57;
  --green-wa-glow: rgba(37, 211, 102, 0.30);
  --yellow:        #fdce12;
  --yellow-dim:    rgba(253, 206, 18, 0.12);
  --white:         #ffffff;
  --gray-100:      #f0f0f0;
  --gray-300:      #cccccc;
  --gray-400:      #999999;
  --gray-500:      #666666;
  --gray-600:      #444444;
  --gray-700:      #2a2a2a;

  /* Tipografia */
  --font-display: 'Orbitron', 'Courier New', monospace;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Forma */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Transições */
  --t-base:   0.28s ease;
  --t-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w:    1200px;
  --pad-sec:  100px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION BASE ---- */
.section {
  padding: var(--pad-sec) 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--yellow);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--gray-400);
  line-height: 1.75;
}

.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---- BOTÕES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
  box-shadow: 0 4px 22px var(--green-wa-glow);
}
.btn-primary:hover {
  background: var(--green-wa-dark);
  border-color: var(--green-wa-dark);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transform: translateY(-2px);
}

.btn-map {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  box-shadow: 0 4px 22px rgba(253,206,18,0.35);
}
.btn-map:hover {
  background: #e8bb0a;
  border-color: #e8bb0a;
  box-shadow: 0 8px 32px rgba(253,206,18,0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  box-shadow: 0 0 20px rgba(253,206,18,0.2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 40px;
  font-size: 0.82rem;
}

/* ======================================================
   HEADER
   ====================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: transform 0.35s ease, background var(--t-smooth), padding var(--t-smooth), box-shadow var(--t-smooth);
}

.header--hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 10px 0;
  border-bottom: 1px solid var(--black-border);
  box-shadow: 0 2px 28px rgba(0,0,0,0.6);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 96px;
  width: auto;
  transition: transform var(--t-base), filter var(--t-base);
  filter: drop-shadow(0 0 12px rgba(188, 34, 16, 0.65)) drop-shadow(0 2px 6px rgba(0,0,0,0.8));
}
.logo:hover img {
  transform: scale(1.07);
  filter: drop-shadow(0 0 20px rgba(188, 34, 16, 0.90)) drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
  padding: 8px 11px;
  border-radius: var(--r-sm);
  transition: color var(--t-base);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--t-base);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--yellow); }
.nav-link.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 10px; }

/* Hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fallback caso o vídeo não carregue */
.hero-video-wrap {
  background: linear-gradient(145deg, #0a0000 0%, #1e0600 35%, #0d0000 70%, #000 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.96) 0%,
    rgba(0,0,0,0.82) 55%,
    rgba(0,0,0,0.94) 100%
  );
}

/* Grade de linhas decorativa (painel automotivo) */

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 200px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(253,206,18,0.08);
  border: 1px solid rgba(253,206,18,0.22);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 820px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-title-accent {
  display: block;
  color: var(--yellow);
  -webkit-text-stroke: 0.5px rgba(253,206,18,0.6);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 14px;
}

.hero-description {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-700);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ======================================================
   SERVIÇOS
   ====================================================== */
.services-section {
  background: var(--black-soft);
}

.services-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(188,34,16,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 0;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-smooth), transform var(--t-smooth), box-shadow var(--t-smooth);
}

/* Linha superior animada */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-smooth);
}

.service-card:hover {
  border-color: rgba(188,34,16,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 40px rgba(188,34,16,0.08);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(188,34,16,0.10);
  border: 1px solid rgba(188,34,16,0.22);
  border-radius: var(--r-md);
  margin-bottom: 24px;
  color: var(--red);
  transition: all var(--t-base);
}
.service-card:hover .service-card-icon {
  background: rgba(188,34,16,0.18);
  border-color: rgba(188,34,16,0.5);
  box-shadow: 0 0 24px var(--red-glow);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Linha decorativa inferior */
.service-card-accent {
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--black-border), transparent);
}

/* ======================================================
   NOSSA HISTÓRIA
   ====================================================== */
.history-section {
  background: var(--black);
}

.history-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(253,206,18,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.history-body p {
  font-size: 0.97rem;
  color: var(--gray-400);
  line-height: 1.82;
  margin-bottom: 18px;
}
.history-body strong { color: var(--white); }

.history-highlight {
  font-family: var(--font-display);
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--yellow) !important;
  border-left: 3px solid var(--red);
  padding: 12px 0 12px 20px;
  margin-top: 8px !important;
  margin-bottom: 32px !important;
}

.history-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.history-value-tag {
  display: inline-block;
  background: rgba(253,206,18,0.07);
  border: 1px solid rgba(253,206,18,0.18);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Visual direito */
.history-img-box {
  position: relative;
}

.history-img-inner {
  aspect-ratio: 4/5;
  border: 1px solid var(--black-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

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

/* Padrão diagonal decorativo */
.history-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 38px,
    rgba(188,34,16,0.035) 38px,
    rgba(188,34,16,0.035) 76px
  );
}

/* Glow central */
.history-img-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(188,34,16,0.12) 0%, transparent 60%);
}

.history-img-inner svg {
  color: rgba(188,34,16,0.35);
  position: relative;
  z-index: 1;
}

.history-img-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.history-img-city {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.history-founded-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--red);
  border-radius: var(--r-md);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(188,34,16,0.45);
}

.history-founded-year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.history-founded-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ======================================================
   GALERIA
   ====================================================== */
.gallery-section {
  background: var(--black-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* Placeholder */
.gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gph-1 { background: linear-gradient(135deg, #1a0700 0%, #2e1200 100%); }
.gph-2 { background: linear-gradient(135deg, #0a0000 0%, #1a0300 100%); }
.gph-3 { background: linear-gradient(135deg, #0f0400 0%, #220a00 100%); }
.gph-4 { background: linear-gradient(135deg, #050505 0%, #160500 100%); }
.gph-5 { background: linear-gradient(135deg, #0c0000 0%, #1c0600 100%); }
.gph-6 { background: linear-gradient(135deg, #120700 0%, #201000 100%); }

/* Padrão xadrez sutil */
.gallery-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(188,34,16,0.04) 28px,
    rgba(188,34,16,0.04) 56px
  );
}

/* Glow radial */
.gallery-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(188,34,16,0.09) 0%, transparent 65%);
}

.gallery-ph-icon {
  color: rgba(188,34,16,0.45);
  position: relative;
  z-index: 1;
  transition: color var(--t-base);
}

.gallery-ph span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  position: relative;
  z-index: 1;
}

/* Caption overlay */
.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity var(--t-base);
}

.gallery-caption span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-ph { transform: scale(1.06); }
.gallery-item:hover .gallery-ph-icon { color: rgba(188,34,16,0.8); }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ======================================================
   AVALIAÇÕES
   ====================================================== */
.reviews-section {
  background: var(--black);
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(188,34,16,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Slider wrapper com botões laterais */
.reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Track horizontal com scroll-snap */
.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
  padding-bottom: 4px;
  flex: 1;
}
.reviews-track::-webkit-scrollbar { display: none; }

/* Botões prev/next */
.reviews-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  color: var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  z-index: 2;
}
.reviews-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(253,206,18,0.06);
}
.reviews-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Dots de navegação */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black-border);
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  padding: 0;
}
.reviews-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--yellow);
}

.review-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--t-smooth);
  /* Slider: largura fixa para 3 cards visíveis */
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

/* Aspas decorativas */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 20px;
  font-size: 6.5rem;
  line-height: 1;
  color: rgba(253,206,18,0.05);
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(253,206,18,0.18);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 28px rgba(253,206,18,0.04);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review-stars {
  color: var(--yellow);
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.97rem;
  color: var(--gray-300);
  line-height: 1.78;
  font-style: normal;
  margin-bottom: 28px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), rgb(100,15,5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.review-avatar--b {
  background: linear-gradient(135deg, #2a2a2a, #111);
  border: 1px solid rgba(253,206,18,0.25);
}

.review-avatar--c {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(253,206,18,0.18);
}

.review-avatar--d {
  background: linear-gradient(135deg, #0d0d0d, #1c1c1c);
  border: 1px solid rgba(253,206,18,0.2);
}

.review-avatar--e {
  background: linear-gradient(135deg, #0f1f0f, #1a2e1a);
  border: 1px solid rgba(37,211,102,0.22);
}

.review-avatar--f {
  background: linear-gradient(135deg, #1a0f1a, #2a1a2a);
  border: 1px solid rgba(253,206,18,0.22);
}

.review-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.review-vehicle {
  font-size: 0.75rem;
  color: var(--yellow);
  letter-spacing: 0.06em;
}

/* ======================================================
   ENDEREÇO + HORÁRIO
   ====================================================== */
.location-section {
  background: var(--black-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.location-card,
.hours-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: all var(--t-smooth);
}
.location-card:hover,
.hours-card:hover {
  border-color: rgba(188,34,16,0.28);
  box-shadow: 0 8px 40px rgba(188,34,16,0.06);
}

.location-icon,
.hours-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: rgba(188,34,16,0.10);
  border: 1px solid rgba(188,34,16,0.22);
  border-radius: var(--r-md);
  color: var(--red);
  flex-shrink: 0;
}

.location-card-title,
.hours-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.location-info address {
  font-size: 0.93rem;
  color: var(--gray-400);
  line-height: 1.85;
}

.hours-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hours-day  { font-size: 0.9rem; color: var(--gray-400); }
.hours-time {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow);
}
.hours-closed { font-size: 0.82rem; color: var(--gray-600); }
.hours-row--off .hours-day { color: var(--gray-600); }

.hours-sep {
  height: 1px;
  background: var(--black-border);
}

/* ======================================================
   FAQ
   ====================================================== */
.faq-section {
  background: var(--black);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq-item.open {
  border-color: rgba(188,34,16,0.38);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: background var(--t-base);
  -webkit-tap-highlight-color: transparent;
}
.faq-btn:hover { background: rgba(255,255,255,0.025); }

.faq-btn span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--white);
  line-height: 1.45;
}

.faq-chevron {
  color: var(--gray-500);
  flex-shrink: 0;
  transition: transform var(--t-base), color var(--t-base);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-body p {
  padding: 0 26px 24px;
  font-size: 0.93rem;
  color: var(--gray-400);
  line-height: 1.78;
}
.faq-body strong { color: var(--white); }

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}

.footer-main {
  padding: 72px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 18px;
  opacity: 0.88;
  transition: opacity var(--t-base);
}
.footer-logo:hover img { opacity: 1; }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.footer-desc {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}

.footer-insta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color var(--t-base);
}
.footer-insta-link:hover { color: var(--white); }

.footer-link {
  display: block;
  font-size: 0.87rem;
  color: var(--gray-500);
  margin-bottom: 10px;
  transition: color var(--t-base);
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-600);
  text-align: center;
}

.footer-bottom a {
  color: var(--yellow);
  transition: color var(--t-base);
}
.footer-bottom a:hover { color: var(--white); }

/* ======================================================
   WHATSAPP FLOAT
   ====================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.40);
  transition: all var(--t-base);
}
.whatsapp-float:hover {
  background: #1db855;
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.28);
  animation: waPulse 2.6s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ======================================================
   REVEAL ON SCROLL
   ====================================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.24s; }

.gallery-grid .gallery-item:nth-child(2)  { transition-delay: 0.06s; }
.gallery-grid .gallery-item:nth-child(3)  { transition-delay: 0.12s; }
.gallery-grid .gallery-item:nth-child(4)  { transition-delay: 0.18s; }
.gallery-grid .gallery-item:nth-child(5)  { transition-delay: 0.24s; }
.gallery-grid .gallery-item:nth-child(6)  { transition-delay: 0.30s; }

.faq-list .faq-item:nth-child(2) { transition-delay: 0.04s; }
.faq-list .faq-item:nth-child(3) { transition-delay: 0.08s; }
.faq-list .faq-item:nth-child(4) { transition-delay: 0.12s; }
.faq-list .faq-item:nth-child(5) { transition-delay: 0.16s; }
.faq-list .faq-item:nth-child(6) { transition-delay: 0.20s; }
.faq-list .faq-item:nth-child(7) { transition-delay: 0.24s; }

/* ======================================================
   RESPONSIVO
   ====================================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root { --pad-sec: 80px; }

  .history-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .history-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .section-header--left {
    text-align: center;
    margin: 0 auto 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --pad-sec: 60px; }

  /* Header */
  .menu-toggle { display: flex; }

  .logo img {
    height: 62px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100dvh;
    width: min(80vw, 320px);
    background: rgba(6,6,6,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--black-border);
    padding: 100px 28px 48px;
    transition: right var(--t-smooth);
    z-index: 990;
    overflow-y: auto;
  }
  .nav.open { right: 0; }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-link { font-size: 0.82rem; padding: 12px 0; min-height: 44px; display: flex; align-items: center; }
  .nav-cta  { margin-left: 0; margin-top: 16px; width: 100%; min-height: 48px; }

  /* Hero */
  .hero-content { padding: 150px 20px 60px; }

  .hero-description { max-width: 100%; }

  .hero-scroll { display: none; }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.5rem; }

  /* Galeria — captions sempre visíveis no touch */
  .gallery-caption { opacity: 1; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--wide {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  /* Localização */
  .location-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-col--brand { grid-column: auto; }

  .footer-link {
    padding: 7px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    margin-bottom: 2px;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  :root { --pad-sec: 48px; }

  .hero-content { padding: 140px 18px 52px; }

  .hero-badge { font-size: 0.58rem; padding: 6px 14px; gap: 6px; }

  .hero-title { font-size: 2.1rem; }

  .hero-subtitle { font-size: 1rem; }

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

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { aspect-ratio: 4/3; }

  .review-card { flex: 0 0 calc(100% - 2px); }
  .reviews-btn { width: 36px; height: 36px; }

  .review-card,
  .location-card,
  .hours-card,
  .service-card { padding: 26px 20px; }

  .faq-btn { padding: 18px 18px; font-size: 0.85rem; }
  .faq-body p { padding: 0 18px 20px; }

  .hero-stats { gap: 14px; }
  .hero-stat-divider { height: 28px; }

  .section-header { margin-bottom: 40px; }

  .footer-main { padding: 48px 0 36px; }

  .history-values { gap: 8px; }
  .history-value-tag { font-size: 0.62rem; padding: 5px 14px; }
}
