/* =========================================================
   VR1 GUINCHO — Landing Page
   Paleta: azul-marinho profundo + dourado/âmbar
   Tipografia: Archivo (display) + Inter (texto)
   ========================================================= */

:root{
  --navy-950: #0b1220;
  --navy-900: #0f1b30;
  --navy-800: #16233d;
  --navy-700: #1e2f4d;
  --gold-500: #f0a93b;
  --gold-400: #f5bd5f;
  --gold-100: #fdecc9;
  --paper: #f6f4ef;
  --paper-dim: #eae6db;
  --ink: #10151f;
  --ink-soft: #4a5468;
  --white: #ffffff;

  --font-display: "Archivo", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius: 14px;
  --shadow-soft: 0 20px 40px -20px rgba(11, 18, 32, 0.35);
  --max-width: 1180px;
}

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

html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible{
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink);
}

p{ margin: 0; }

/* ---------- LAYOUT HELPERS ---------- */

.section{ padding: 88px 24px; }
.section__inner{ max-width: var(--max-width); margin: 0 auto; }
.section--dark{ background: var(--navy-950); }

.section__title{
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 620px;
}
.section__title--light{ color: var(--white); }

.section__lede{
  margin-top: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
}

/* ---------- TOPBAR ---------- */

.topbar{
  background: var(--navy-950);
  border-bottom: 1px solid rgba(240, 169, 59, 0.18);
  position: sticky;
  top: 0;
  z-index: 40;
}

.topbar__inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__brand{ display: flex; align-items: baseline; gap: 8px; }
.topbar__brand-vr{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.topbar__brand-guincho{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-400);
  letter-spacing: 0.12em;
}

.topbar__phone{
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-100);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border: 1px solid rgba(240, 169, 59, 0.4);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.topbar__phone:hover{
  background: rgba(240, 169, 59, 0.12);
  border-color: var(--gold-400);
}

/* ---------- HERO ---------- */

.hero{
  position: relative;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  padding: 72px 24px 96px;
  overflow: hidden;
}

.hero__bg{
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 82% 8%, rgba(240,169,59,0.16), transparent 42%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 90px);
  pointer-events: none;
}

.hero__inner{
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.hero__eyebrow{
  color: var(--gold-400);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-align: center;
}

.strong{ font-weight: bold; }

.hero__title{
  font-size: clamp(1.9rem, 2.7vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.04em;
  max-width: 12.5ch;
  text-align: center;
}

.hero__title strong{
  color: var(--gold-400);
  font-weight: 900;
}

.btn  { margin-top: 28px; 
}

.hero__subtitle{
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  max-width: 34ch;
  text-align: center;
  line-height: 1.4;
}

.hero__subtitle strong{
  color: var(--gold-100);
  font-weight: 800;
}

.hero__cta-row{
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero__truck-card{
  order: -1;
  width: min(100%, 820px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__truck-card img{ width: 100%; height: auto; object-fit: contain; }

/* ---------- BUTTONS ---------- */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn--primary{
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 14px 28px -12px rgba(240, 169, 59, 0.55);
}
.btn--primary:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(240, 169, 59, 0.65); }

.btn__badge{
  background: rgba(11,18,32,0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 2px 9px;
}

.btn--ghost{
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn--ghost:hover{ border-color: var(--gold-400); color: var(--gold-100); }

.btn--lg{ padding: 18px 34px; font-size: 1.08rem; }

/* ---------- CONTACT STRIP ---------- */

.contact-strip{
  background: var(--gold-500);
}
.contact-strip__inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  text-align: center;
}
.contact-strip__label{
  font-weight: 700;
  color: var(--navy-950);
}
.contact-strip__numbers{
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy-950);
  display: flex;
  gap: 10px;
}
.contact-strip__numbers a:hover{ text-decoration: underline; }
.contact-strip__divider{ opacity: 0.5; }

/* ---------- CARDS (DIFERENCIAIS) ---------- */

.cards-grid{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card{
  background: var(--white);
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius);
  padding: 28px 22px;
}

.card__icon{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-950);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card__title{
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card__text{
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- GALLERY ---------- */

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

.gallery-item{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.gallery-item img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img{ transform: scale(1.04); }

.gallery-item figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(0deg, rgba(11,18,32,0.85), transparent);
}

/* ---------- TESTIMONIALS ---------- */

.testimonial-grid{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial{
  margin: 0;
  background: var(--white);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 24px;
}

.testimonial__text{
  font-size: 1rem;
  color: var(--ink);
  font-style: italic;
}

.testimonial__author{
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- FINAL CTA ---------- */

.final-cta{
  background: var(--navy-900);
  padding: 80px 24px;
  text-align: center;
}
.final-cta__inner{ max-width: 560px; margin: 0 auto; }
.final-cta__title{
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
}
.final-cta__text{
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
}
.final-cta .btn{ margin-top: 30px; }

/* ---------- FOOTER ---------- */

.footer{
  background: var(--navy-950);
  padding: 56px 24px 24px;
}
.footer__inner{
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 36px;
}
.footer__tagline{
  margin-top: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  max-width: 32ch;
}
.footer__col h4{
  color: var(--gold-400);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer__col a, .footer__col p{
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.footer__col a:hover{ color: var(--gold-400); }

.footer__copy{
  max-width: var(--max-width);
  margin: 20px auto 0;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  text-align: center;
}

.footer__credit{
  max-width: var(--max-width);
  margin: 10px auto 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.footer__credit a{
  color: var(--gold-400);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer__credit a:hover{
  color: var(--gold-100);
  opacity: 1;
}

/* ---------- FLOATING BUTTONS ---------- */

.fab-socials{
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
}

.fab-whatsapp,
.fab-instagram{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(11,18,32,0.35);
  transition: transform 0.2s ease;
}

.fab-whatsapp{
  background: #25D366;
  color: var(--white);
}

.fab-instagram{
  background: linear-gradient(135deg, #feda75, #fa7e1e 20%, #d62976 52%, #962fbf 78%, #4f5bd5);
  color: var(--white);
}

.fab-whatsapp:hover,
.fab-instagram:hover{ transform: scale(1.08); }
.fab-whatsapp.is-hidden,
.fab-instagram.is-hidden{ transform: translateY(90px); }

/* ---------- RESPONSIVE ---------- */

@media (max-width: 980px){
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px){
  .section{ padding: 64px 20px; }
  .topbar__phone span{ display: none; }
  .cards-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; }
  .contact-strip__inner{ flex-direction: column; }
  .hero__cta-row{ flex-direction: column; align-items: stretch; }
  .btn{ justify-content: center; }
}
