/* ============================================
   FORTE AUTO DIESEL — LP
   Paleta: preto / branco / vermelho
   CTAs: verde WhatsApp
   ============================================ */

:root{
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #171717;
  --line: #222;
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --red: #e30613;
  --red-2: #ff1e2d;
  --white: #ffffff;
  --wa: #25D366;
  --wa-2: #1ebe5d;
  --wa-dark: #128C7E;
  --radius: 14px;
  --maxw: 1200px;
  --ease-out: cubic-bezier(.2,.8,.2,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }

.container{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Tipografia título */
h1,h2,h3{
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
  margin:0;
}
h1{ font-size: clamp(42px, 7vw, 88px); }
h2{ font-size: clamp(32px, 4.5vw, 54px); }
h3{ font-size: 22px; letter-spacing: .02em; }
.accent{ color: var(--red); }
.accent-white{ color:#fff; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red);
  background: rgba(227,6,19,.08);
  border: 1px solid rgba(227,6,19,.25);
  padding: 8px 14px; border-radius: 999px;
}
.eyebrow.light{ color:#fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.kicker{
  display:inline-block; font-size:12px; font-weight:700; letter-spacing:.22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}

.pulse-dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(227,6,19,.7);
  animation: pulse 1.6s infinite;
  display:inline-block;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(227,6,19,.7);}
  70%{ box-shadow: 0 0 0 12px rgba(227,6,19,0);}
  100%{ box-shadow: 0 0 0 0 rgba(227,6,19,0);}
}

/* ============================================
   BOTÕES — CTA padrão = WhatsApp (verde)
   ============================================ */
.btn{
  position: relative;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease-out), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn:hover{ transform: translateY(-2px); }
.btn .ico{
  width: 20px; height: 20px;
  color: #fff;
  flex-shrink: 0;
}

/* Botão WhatsApp: verde + pulse + brilho passando */
.btn-wa{
  background: var(--wa);
  color: #fff;
  box-shadow:
    0 10px 24px rgba(37,211,102,.35),
    0 0 0 0 rgba(37,211,102,.55);
  animation: waPulse 2.4s ease-in-out infinite;
}
.btn-wa:hover{
  background: var(--wa-2);
  box-shadow:
    0 14px 32px rgba(37,211,102,.5),
    0 0 0 6px rgba(37,211,102,.18);
}
@keyframes waPulse{
  0%,100%{ box-shadow: 0 10px 24px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.5);}
  50%{ box-shadow: 0 14px 32px rgba(37,211,102,.55), 0 0 0 10px rgba(37,211,102,0);}
}

/* Brilho passando no botão */
.shine::before{
  content: "";
  position: absolute; top: 0; left: -75%;
  width: 60%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,0) 80%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.shine > *{ position: relative; z-index: 2; }
@keyframes shineMove{
  0%   { left: -75%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

/* Botão mapa (azul Google) */
.btn-map{
  background: #1a73e8;
  color: #fff;
  box-shadow: 0 10px 24px rgba(26,115,232,.35);
}
.btn-map:hover{ background: #1765cc; box-shadow: 0 14px 32px rgba(26,115,232,.5); }

/* Botão ligar (vermelho, combina com identidade) */
.btn-call{
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(227,6,19,.35);
}
.btn-call:hover{ background: var(--red-2); box-shadow: 0 14px 32px rgba(227,6,19,.5); }

.btn-ghost{ color:#fff; border-color: rgba(255,255,255,.3); }
.btn-ghost:hover{ border-color:#fff; background: rgba(255,255,255,.06); }
.btn-outline{ color:#fff; border-color:#fff; }
.btn-outline:hover{ background:#fff; color:#0a0a0a; }
.btn-sm{ padding:10px 18px; font-size: 13px; }
.btn-sm .ico{ width: 17px; height: 17px; }
.btn-lg{ padding: 18px 32px; font-size: 16px; }
.btn-lg .ico{ width: 22px; height: 22px; }

/* ===== TOPBAR ===== */
.topbar{
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.topbar-inner{
  display:flex; align-items:center; gap:12px;
  padding: 10px 24px;
  justify-content: center;
  text-align: center;
}
.topbar .sep{ opacity:.6; }
.topbar strong{ letter-spacing: .16em; text-transform: uppercase; }

/* ===== HEADER ===== */
.site-header{
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.logo img{
  height: 72px;
  width: auto;
  transition: transform .3s var(--ease-out);
}
.logo:hover img{ transform: scale(1.05); }
.nav{ display:flex; gap: 28px; }
.nav a{
  font-size: 14px; font-weight: 500; color: #ddd;
  transition: color .2s ease;
}
.nav a:hover{ color: var(--red); }

.header-cta{
  display:flex; align-items:center; gap: 16px;
}
.header-phone{
  display:inline-flex; align-items:center; gap: 12px;
  padding: 6px 4px;
  color: #fff;
  transition: color .2s ease;
}
.header-phone:hover{ color: var(--red); }
.header-phone svg{
  width: 36px; height: 36px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(227,6,19,.12);
  color: var(--red);
}
.header-phone span{ display:flex; flex-direction: column; line-height: 1.1; }
.header-phone small{
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.header-phone strong{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; letter-spacing: .02em;
}

/* ===== HERO ===== */
.hero{
  position: relative;
  min-height: 92vh;
  display:flex; align-items:center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media{
  position:absolute; inset: 0; z-index:-1;
}
.hero-media img{
  width:100%; height:100%; object-fit: cover; object-position: center right;
  filter: grayscale(.15) contrast(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom{
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 800px at 10% 40%, rgba(10,10,10,.95), rgba(10,10,10,.55) 55%, rgba(10,10,10,.15) 80%),
    linear-gradient(180deg, rgba(10,10,10,.65), rgba(10,10,10,.85));
}
.hero-content{ padding: 80px 24px 100px; }
.hero-content h1{ margin: 18px 0 18px; }
.hero-sub{
  max-width: 620px;
  font-size: 18px;
  color: #d9d9d9;
  margin: 0 0 32px;
}
.hero-actions{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-bottom: 48px;
}
.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  max-width: 720px;
}
.badge{
  background: rgba(20,20,20,.75);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 16px 18px;
  border-radius: 10px;
  transition: transform .3s var(--ease-out), border-color .3s ease;
}
.badge:hover{ transform: translateY(-3px); border-left-color: var(--wa); }
.badge strong{
  display:block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.badge span{ color: var(--muted); font-size: 13px; }

/* ===== STRIP COMO FUNCIONA ===== */
.strip{
  background: var(--red);
  color: #fff;
}
.strip-inner{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 24px;
}
.strip-item{ display:flex; gap: 16px; align-items:flex-start; }
.strip-num{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800;
  opacity: .4;
}
.strip-item strong{
  display:block; font-size: 16px; text-transform: uppercase; letter-spacing: .05em;
}
.strip-item p{
  margin: 4px 0 0; font-size: 14px; opacity: .9;
}

/* ===== SECTION BASE ===== */
.section{ padding: 100px 0; }
.section-dark{ background: var(--bg-2); }
.section-head{
  max-width: 820px; margin: 0 auto 56px; text-align: center;
}
.section-head h2{ margin: 6px 0 18px; }
.section-sub{ color: var(--muted); font-size: 17px; margin: 0; }

/* ===== SERVIÇOS ===== */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card{
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s var(--ease-out), border-color .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before{
  content:""; position:absolute; left:0; top:0; height:3px; width: 40%;
  background: var(--red);
  transition: width .4s var(--ease-out);
}
.service-card:hover{
  transform: translateY(-6px);
  border-color: rgba(227,6,19,.4);
  background: #1a1a1a;
}
.service-card:hover::before{ width: 100%; }
.service-icon{
  width:56px; height:56px;
  display:grid; place-items:center;
  background: rgba(227,6,19,.12);
  border-radius: 12px;
  color: var(--red);
  margin-bottom: 18px;
}
.service-icon svg{ width: 28px; height: 28px; }
.service-card h3{ margin-bottom: 8px; }
.service-card p{ color: var(--muted); font-size: 15px; margin: 0; }

/* ===== SPLIT VOLVO ===== */
.section-split{ background: var(--bg); }
.split-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.split-media img{
  width:100%; height:100%; object-fit: cover;
  filter: contrast(1.05);
  transition: transform .6s var(--ease-out);
}
.split-media:hover img{ transform: scale(1.04); }
.volvo-tag{
  position:absolute; top: 20px; left: 20px;
  background: var(--red); color:#fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800; font-size: 12px; letter-spacing: .2em;
  box-shadow: 0 8px 20px rgba(227,6,19,.4);
}
.split-content h2{ margin: 6px 0 22px; }
.split-content p{ color: #cfcfcf; font-size: 16px; margin: 0 0 22px; }
.check-list{
  list-style:none; padding:0; margin: 0 0 32px;
  display:grid; gap: 12px;
}
.check-list li{
  position:relative;
  padding-left: 30px;
  font-size: 15px;
  color: #e5e5e5;
}
.check-list li::before{
  content:"";
  position: absolute; left:0; top: 7px;
  width: 18px; height: 10px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

/* ===== GALERIA ===== */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery figure{
  margin:0; overflow:hidden;
  border-radius: var(--radius);
  position: relative;
  background: #000;
}
.gallery img{
  width:100%; height:100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out), filter .6s ease;
  filter: grayscale(.15) contrast(1.05);
}
.gallery figure:hover img{ transform: scale(1.08); filter: grayscale(0); }
.g-1{ grid-column: span 2; grid-row: span 2; }
.g-2{ grid-column: span 2; }
.g-3{ grid-column: span 1; }
.g-4{ grid-column: span 1; }
.g-5{ grid-column: span 2; }
.g-6{ grid-column: span 2; }

/* ===== DEPOIMENTOS ===== */
.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card{
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display:flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform .3s var(--ease-out), border-color .25s ease;
}
.t-card:hover{ transform: translateY(-4px); border-color: rgba(227,6,19,.4); }
.t-card::before{
  content:"”";
  position:absolute; top: -10px; right: 18px;
  font-family: 'Barlow Condensed', serif;
  font-size: 110px; line-height:1;
  color: var(--red);
  opacity: .25;
}
.stars{ color: var(--red); font-size: 18px; letter-spacing: 4px; }
.t-card blockquote{
  margin:0; font-size: 15.5px; color:#e8e8e8; line-height: 1.6;
}
.t-card footer{ border-top: 1px solid var(--line); padding-top: 14px; }
.t-card footer strong{ display:block; font-size: 15px; }
.t-card footer span{ color: var(--muted); font-size: 13px; }

/* ===== CTA FINAL ===== */
.cta{
  background:
    linear-gradient(180deg, rgba(10,10,10,.7), rgba(10,10,10,.95)),
    url('assets/caminhoes-dentro-oficina-lateral.jpeg') center/cover no-repeat fixed;
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta h2{ margin: 14px 0 16px; }
.cta-copy p{ color: #d4d4d4; font-size: 17px; max-width: 560px; margin: 0 0 28px; }
.cta-actions{ display:flex; gap: 14px; flex-wrap:wrap; }
.cta-info{ display:grid; gap: 14px; }
.info-card{
  background: rgba(20,20,20,.8);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 18px 20px;
  border-radius: 10px;
  transition: border-left-color .3s ease, transform .3s var(--ease-out);
}
.info-card:hover{ border-left-color: var(--wa); transform: translateX(4px); }
.info-card span{ color: var(--muted); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.info-card strong{ display:block; margin-top: 6px; font-size: 15px; color:#fff; }

/* ===== MAPA ===== */
.map-section{
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.map-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 520px;
}
.map-info{
  padding: 80px 60px;
  display:flex; flex-direction: column; justify-content: center;
  max-width: 620px;
  margin-left: auto;
}
.map-info h2{ margin: 6px 0 18px; }
.map-info p{ color: #cfcfcf; font-size: 16px; margin: 0 0 28px; }
.map-contact{
  display:grid; gap: 20px; margin-bottom: 28px;
}
.map-contact span{
  color: var(--muted); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; display:block; margin-bottom: 6px;
}
.map-contact strong{
  font-size: 17px; color: #fff; font-weight: 600;
  line-height: 1.45; display:block;
}
.map-actions{
  display:flex; gap: 12px; flex-wrap: wrap;
}
.map-actions .btn .ico{ width: 20px; height: 20px; }

.map-embed{
  position: relative;
  min-height: 520px;
  background: #000;
}
.map-embed iframe{
  width: 100%; height: 100%;
  filter: grayscale(.4) contrast(1.1) invert(.92);
  transition: filter .4s ease;
}
.map-embed:hover iframe{ filter: none; }

/* ===== FOOTER ===== */
.site-footer{ background: #060606; border-top: 1px solid var(--line); }
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding: 60px 24px;
}
.footer-brand img{
  height: 96px;
  width: auto;
  margin-bottom: 18px;
}
.footer-brand p{ color: var(--muted); font-size: 14px; max-width: 340px; margin:0 0 20px; }
.footer-cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-cols h4{
  font-size: 12px; letter-spacing:.2em; text-transform: uppercase;
  color: var(--red); margin: 0 0 14px;
}
.footer-cols a{
  display:block; font-size: 14px; color:#ccc; padding: 4px 0;
  transition: color .2s ease;
}
.footer-cols a:hover{ color: #fff; }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  font-size: 13px; color: var(--muted);
  text-align: center;
}

/* ===== FAB WHATSAPP ===== */
.fab{
  position: fixed; right: 22px; bottom: 22px;
  width: 64px; height: 64px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display:grid; place-items:center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  z-index: 60;
  transition: transform .25s var(--ease-out);
  animation: bob 2.8s ease-in-out infinite;
}
.fab:hover{ transform: scale(1.1); background: var(--wa-2); }
.fab svg{ color: #fff; }
.fab-ring{
  position:absolute; inset:-6px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: .6;
  animation: ring 2s ease-out infinite;
}
@keyframes ring{
  0%  { transform: scale(.8); opacity: .7; }
  100%{ transform: scale(1.5); opacity: 0; }
}
@keyframes bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* Brilho circular para FAB */
.shine-round{ overflow: hidden; }
.shine-round::before{
  content:"";
  position:absolute; top: -50%; left: -100%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,.5) 30deg, transparent 60deg, transparent 360deg);
  animation: spinShine 3s linear infinite;
  pointer-events: none;
}
@keyframes spinShine{
  to { transform: rotate(360deg); }
}

/* ============================================
   REVEAL COM MOTION BLUR
   ============================================ */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity .9s var(--ease-out),
    transform .9s var(--ease-out),
    filter .9s var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; filter:none !important; }
  .btn-wa, .shine::before, .shine-round::before, .fab, .fab-ring, .hero-media img, .pulse-dot{
    animation: none !important;
  }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1080px){
  .header-phone span{ display:none; }
  .header-phone svg{ width: 40px; height: 40px; padding: 10px; }
}

@media (max-width: 960px){
  .nav{ display:none; }
  .header-inner{ padding: 12px 20px; gap: 12px; }
  .logo img{ height: 58px; }
  .header-cta{ gap: 10px; }
  .map-grid{ grid-template-columns: 1fr; }
  .map-info{ padding: 60px 24px; margin: 0; max-width: 100%; }
  .map-embed{ min-height: 360px; }
  .hero{ min-height: auto; padding: 40px 0 20px; }
  .hero-badges{ grid-template-columns: 1fr; }
  .strip-inner{ grid-template-columns: 1fr; gap: 14px; padding: 22px 24px; }
  .services-grid{ grid-template-columns: 1fr 1fr; }
  .split-grid{ grid-template-columns: 1fr; gap: 32px; }
  .split-media{ aspect-ratio: 4/3; }
  .gallery{
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .g-1,.g-2,.g-5,.g-6{ grid-column: span 2; }
  .g-3,.g-4{ grid-column: span 1; }
  .testimonials{ grid-template-columns: 1fr; }
  .cta{ background-attachment: scroll; }
  .cta-inner{ grid-template-columns: 1fr; gap: 32px; }
  .footer-inner{ grid-template-columns: 1fr; gap: 32px; }
  .footer-cols{ grid-template-columns: 1fr 1fr; }
  .footer-brand img{ height: 80px; }
  .section{ padding: 70px 0; }
  .topbar-inner{ flex-wrap: wrap; font-size: 12px; }
}

@media (max-width: 520px){
  .services-grid{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr; }
  h1{ font-size: 46px; }
  h2{ font-size: 32px; }
  .btn-lg{ padding: 16px 24px; font-size: 15px; }
  .logo img{ height: 50px; }
}
