/* ============================================
   GMV GUINCHO — STYLES
   Paleta: #FFC700 (amarelo) | #0A0A0A (preto)
   ============================================ */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; }

/* --- VARS --- */
:root {
  --yellow: #FFC700;
  --yellow-dark: #E5B300;
  --black: #0A0A0A;
  --carbon: #1A1A1A;
  --gray: #4A4A4A;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --container: 1200px;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
}

/* --- TYPO --- */
h1, h2, h3, h4 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .8rem;
}

/* --- CONTAINER --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

/* --- BTN --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1.1rem 1.8rem; font-size: 1.05rem; }
.btn-xl { padding: 1.3rem 2.2rem; font-size: 1.15rem; }
.btn-whatsapp { background: var(--wa-green); color: var(--white); box-shadow: 0 4px 14px rgba(37,211,102,.4); }
.btn-whatsapp:hover { background: var(--wa-dark); box-shadow: 0 8px 24px rgba(37,211,102,.5); }
.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--black); }
.btn-dark { background: var(--black); color: var(--yellow); }
.btn-dark:hover { background: var(--carbon); }
.btn-whatsapp-sm { padding: .55rem 1rem; font-size: .9rem; box-shadow: 0 2px 8px rgba(37,211,102,.3); }
.btn-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--black); font-weight: 700; font-size: .95rem;
  padding: .5rem .8rem; border-radius: var(--radius);
  transition: color .2s;
}
.btn-phone:hover { color: var(--gray); }

/* --- HEADER --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--yellow);
  border-bottom: 3px solid var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; padding-top: .6rem; padding-bottom: .6rem;
}
.logo {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--black); font-family: 'Anton', sans-serif;
  font-size: 1.4rem; line-height: 1;
}
.logo-mark {
  background: var(--black); color: var(--yellow);
  padding: .35rem .55rem; border-radius: 4px; font-size: 1.2rem;
}
.logo-text { font-size: 1.1rem; letter-spacing: .03em; }
.header-actions { display: flex; align-items: center; gap: .8rem; }
.phone-text, .wa-text { font-weight: 700; }
@media (max-width: 600px) {
  .phone-text { display: none; }
  .logo-text { display: none; }
  .header-inner { gap: .5rem; }
}

/* --- HERO (background image + texto sobreposto à esquerda) --- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 5rem 0 6rem;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/hero-guincho.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}
@supports (background-image: image-set(url('/img/hero-guincho.webp') type('image/webp'))) {
  .hero-bg {
    background-image: image-set(
      url('/img/hero-guincho.webp') type('image/webp'),
      url('/img/hero-guincho.jpg') type('image/jpeg')
    );
  }
}
/* Gradiente legível: escurece esquerda, deixa direita aparente */
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10,10,10,.94) 0%,
      rgba(10,10,10,.85) 30%,
      rgba(10,10,10,.5) 55%,
      rgba(10,10,10,.15) 80%,
      rgba(10,10,10,0) 100%
    );
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content {
  max-width: 580px;
  /* text-shadow leve para reforçar leitura sobre a imagem */
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero-content .eyebrow { text-shadow: none; }

/* ============ HERO LOCATION BADGE (LPs de bairro) ============ */
/* Tag de localização sobreposta sobre a imagem do hero (lado direito) */
.hero-location-badge {
  position: absolute;
  top: 3rem;
  right: 2.5rem;
  z-index: 2;
  background: var(--yellow);
  color: var(--black);
  border-radius: 12px;
  padding: 1rem 1.4rem 1rem 1.2rem;
  box-shadow:
    0 12px 30px rgba(0,0,0,.45),
    0 0 0 4px rgba(10,10,10,.15);
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: 320px;
  transform: rotate(-2deg);
  transition: transform .25s ease;
}
.hero-location-badge:hover { transform: rotate(0deg) scale(1.04); }

/* Pin SVG (sem emoji — mais clean) */
.hero-location-badge .pin-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
}
.hero-location-badge .pin-icon svg { width: 24px; height: 24px; }

.hero-location-badge .badge-text { line-height: 1.15; }
.hero-location-badge .badge-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(10,10,10,.7);
}
.hero-location-badge .badge-nome {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--black);
  line-height: 1;
  margin-top: .15rem;
}
.hero-location-badge .badge-cidade {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(10,10,10,.75);
  margin-top: .25rem;
}

/* Listras industriais na borda inferior (decoração) */
.hero-location-badge::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: repeating-linear-gradient(
    45deg,
    var(--black) 0 8px,
    var(--yellow) 8px 16px
  );
  border-radius: 0 0 12px 12px;
}

/* Em mobile, manter no bottom (faz mais sentido no layout vertical) */
@media (max-width: 768px) {
  .hero-location-badge {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    padding: .8rem 1rem;
    transform: none;
  }
  .hero-location-badge .badge-nome { font-size: 1.15rem; }
  .hero-location-badge .pin-icon { width: 36px; height: 36px; }
  .hero-location-badge .pin-icon svg { width: 20px; height: 20px; }
}

/* Tablet — gradiente mais agressivo pra cobrir mais a imagem */
@media (max-width: 1024px) {
  .hero-bg::after {
    background: linear-gradient(90deg,
      rgba(10,10,10,.95) 0%,
      rgba(10,10,10,.85) 50%,
      rgba(10,10,10,.55) 100%
    );
  }
}

/* Mobile — usa imagem vertical noturna + overlay vertical */
@media (max-width: 768px) {
  .hero { padding: 3.5rem 0 4.5rem; min-height: 500px; }
  .hero-bg {
    background-image: url('/img/hero-guincho-mobile.jpg');
    background-position: center;
  }
  @supports (background-image: image-set(url('/img/hero-guincho-mobile.webp') type('image/webp'))) {
    .hero-bg {
      background-image: image-set(
        url('/img/hero-guincho-mobile.webp') type('image/webp'),
        url('/img/hero-guincho-mobile.jpg') type('image/jpeg')
      );
    }
  }
  .hero-bg::after {
    background: linear-gradient(180deg,
      rgba(10,10,10,.55) 0%,
      rgba(10,10,10,.75) 60%,
      rgba(10,10,10,.95) 100%
    );
  }
  .hero-content { max-width: none; }
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.6);
}
.hero-title .accent { color: var(--yellow); display: inline-block; }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.5rem; }
.hero .btn-outline { color: var(--white); border-color: var(--white); }
.hero .btn-outline:hover { background: var(--white); color: var(--black); }
.hero-pillars {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15);
}
.hero-pillars li {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 600; color: rgba(255,255,255,.9);
}
.pillar-icon { font-size: 1.4rem; }

/* --- SECTIONS --- */
.section { padding: 5rem 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark .eyebrow { color: var(--yellow); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { max-width: 700px; margin: 0 auto; }
.section-dark .section-head h2 { color: var(--white); }

/* --- VEHICLES GRID --- */
.vehicles-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.vehicle-card {
  background: var(--carbon);
  border: 2px solid rgba(255,199,0,.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.vehicle-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.vehicle-icon { font-size: 3rem; margin-bottom: 1rem; }
.vehicle-icon-svg {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(255,199,0,.2));
  background: var(--yellow); border-radius: var(--radius);
  padding: 8px;
}
.vehicle-card h3 { color: var(--yellow); margin-bottom: .4rem; }
.vehicle-card p { color: rgba(255,255,255,.7); font-size: .95rem; }

/* --- BAIRRO GALLERY (Conheça a região) --- */
.bairro-gallery-section {
  background: var(--white);
  padding: 4rem 0 5rem;
}
.bairro-gallery-section.dark {
  background: var(--carbon);
  color: var(--white);
}
.bairro-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.bairro-gallery-grid figure {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--carbon);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  margin: 0;
}
.bairro-gallery-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.bairro-gallery-grid figure img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.bairro-gallery-grid figure:hover img { transform: scale(1.05); }
.bairro-gallery-grid figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem .8rem;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 100%);
  pointer-events: none;
}
.bairro-gallery-grid figcaption::before {
  content: "📍";
  margin-right: .3rem;
}
.bairro-gallery-attribution {
  text-align: center;
  font-size: .75rem;
  color: var(--gray);
  margin-top: 1.5rem;
  opacity: .7;
}
@media (max-width: 600px) {
  .bairro-gallery-grid { grid-template-columns: 1fr; }
  .bairro-gallery-grid figure { aspect-ratio: 16/10; }
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2.5rem; margin-bottom: 1rem;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow); border-radius: var(--radius);
}
.service-icon img { width: 40px; height: 40px; display: block; }
.service-card h3 { margin-bottom: .6rem; }
.service-card p { color: var(--gray); font-size: .95rem; }

/* --- CTA STRIP --- */
.cta-strip { background: var(--yellow); padding: 2.5rem 0; }
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.cta-eyebrow {
  font-weight: 800; font-size: .8rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--black); opacity: .7;
}
.cta-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--black); text-transform: uppercase; line-height: 1.1;
}

/* --- COVERAGE --- */
.coverage-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.coverage-card {
  background: var(--carbon);
  border-left: 4px solid var(--yellow);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
}
.coverage-card h3 { color: var(--yellow); margin-bottom: .8rem; font-size: 1.3rem; }
.coverage-card p { color: rgba(255,255,255,.85); }
.coverage-card strong { color: var(--yellow); }

/* --- ABOUT --- */
.about-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; color: var(--gray); font-size: 1.05rem; }
.about-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2rem;
}
.about-features div {
  background: var(--light); padding: 1.2rem 1rem; border-radius: var(--radius);
  text-align: center; border-bottom: 3px solid var(--yellow);
}
.about-features strong {
  display: block; font-family: 'Anton', sans-serif;
  font-size: 2rem; color: var(--black);
}
.about-features span { font-size: .85rem; color: var(--gray); }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* --- CTA FINAL --- */
.cta-final {
  background: linear-gradient(135deg, var(--black), var(--carbon));
  color: var(--white); padding: 5rem 0; text-align: center;
  border-top: 4px solid var(--yellow); border-bottom: 4px solid var(--yellow);
}
.cta-final h2 { color: var(--white); margin-bottom: 1rem; }
.cta-final p { font-size: 1.15rem; opacity: .85; margin-bottom: 2rem; }
.cta-buttons {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--black); color: rgba(255,255,255,.7); padding: 3rem 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; padding-bottom: 2.5rem;
}
.footer-col h4 {
  color: var(--yellow); font-size: 1rem; margin-bottom: 1rem;
}
.footer-col p, .footer-col li { font-size: .95rem; line-height: 1.8; }
.footer-col a { color: rgba(255,255,255,.8); transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.logo-footer { color: var(--white); }
.logo-footer .logo-mark { background: var(--yellow); color: var(--black); }
.footer-tag { margin-top: .8rem; color: rgba(255,255,255,.6); font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0; text-align: center; font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* --- FLOAT WHATSAPP --- */
.float-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 99;
  width: 60px; height: 60px;
  background: var(--wa-green); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: pulse 2s infinite;
  transition: transform .25s;
}
.float-whatsapp:hover { transform: scale(1.1); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0 4rem; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-inner .btn { width: 100%; max-width: 360px; }
  .float-whatsapp { width: 56px; height: 56px; bottom: 1rem; right: 1rem; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .about-features strong { font-size: 1.5rem; }
}
