
:root{
  --bg:#0f1115;
  --surface:#151820;
  --surface-2:#1b2029;
  --line:rgba(255,255,255,.08);
  --text:#ffffff;
  --muted:#c8ced7;
  --muted-2:#aeb5c1;
  --red:#ff1c24;
  --red-2:#cb1018;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#f4f5f7;
  color:#12151b;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button{font:inherit;cursor:pointer}
.container{width:min(1240px,calc(100% - 32px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(10,11,14,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-row{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand img{
  width:156px;
  height:54px;
  object-fit:contain;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
}
.main-nav a{
  color:#f0f3f8;
  font-weight:700;
}
.main-nav a:hover{color:var(--red)}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.icon-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.icon-btn svg{width:21px;height:21px;fill:#fff}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  padding:14px 22px;
  border:0;
  font-weight:800;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:#fff;
  background:linear-gradient(180deg,var(--red),var(--red-2));
  box-shadow:0 10px 24px rgba(255,28,36,.22);
}
.btn-secondary{
  color:#fff;
  background:#1b2029;
  border:1px solid rgba(255,255,255,.10);
}
.btn-full{width:100%}

.hero{
  background:linear-gradient(180deg,#0f1115 0%, #171a22 100%);
  color:#fff;
  padding:70px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:var(--red);
  font-weight:900;
  font-size:13px;
  letter-spacing:.18em;
}
.hero h1{
  margin:0 0 16px;
  font-size:clamp(38px,5vw,66px);
  line-height:.98;
  letter-spacing:-.04em;
}
.hero p{
  margin:0;
  color:#dbe1ea;
  font-size:19px;
  line-height:1.7;
  max-width:700px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.hero-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  list-style:none;
  padding:0;
  margin:26px 0 0;
}
.hero-list li{
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#f4f7fb;
  font-weight:600;
}
.hero-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.mini-poster{
  background:rgba(255,255,255,.04);
  padding:10px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
}
.mini-poster img{
  width:100%;
  aspect-ratio:2/3;
  object-fit:cover;
  border-radius:14px;
}

.offers{
  padding:82px 0;
  background:#f4f5f7;
}
.section-title{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:30px;
}
.section-title h2,
.finance-copy h2,
.insta-card h2{
  margin:0;
  font-size:clamp(30px,4vw,48px);
  line-height:1.04;
  letter-spacing:-.04em;
}
.inline-link{
  color:#d5161d;
  font-weight:800;
}
.vehicle-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.vehicle-card{
  background:#fff;
  border:1px solid rgba(16,20,28,.08);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 16px 34px rgba(16,20,28,.08);
}
.poster-link{
  display:block;
  padding:14px 14px 0;
}
.poster-link img{
  width:100%;
  aspect-ratio:2/3;
  object-fit:cover;
  border-radius:16px;
}
.vehicle-body{
  padding:18px;
}
.vehicle-body h3{
  margin:0 0 8px;
  font-size:25px;
  line-height:1.08;
  color:#12151b;
}
.vehicle-body .price{
  margin:0;
  color:#5e6673;
  font-size:17px;
}
.vehicle-body .price strong{color:#12151b}
.vehicle-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:16px;
}

.finance{
  padding:82px 0;
  background:#fff;
}
.finance-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:28px;
  align-items:start;
}
.finance-copy p{
  margin:0;
  color:#4e5662;
  font-size:18px;
  line-height:1.7;
}
.finance-note{
  margin-top:22px;
  background:#f5f7fb;
  border:1px solid rgba(16,20,28,.08);
  border-radius:18px;
  padding:18px 20px;
  color:#303643;
  line-height:1.7;
}
.finance-form{
  background:#11141a;
  color:#fff;
  border-radius:26px;
  padding:24px;
  box-shadow:0 20px 44px rgba(10,14,20,.14);
}
.field-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.field-grid .full{grid-column:1/-1}
label span{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:700;
}
input,select,textarea{
  width:100%;
  border-radius:15px;
  border:1px solid rgba(255,255,255,.10);
  background:#1b2029;
  color:#fff;
  padding:14px 15px;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:rgba(255,28,36,.7);
  box-shadow:0 0 0 4px rgba(255,28,36,.12);
}

.instagram{
  padding:82px 0;
  background:#f4f5f7;
}
.insta-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:#11141a;
  color:#fff;
  border-radius:28px;
  padding:34px;
}
.insta-card p{
  margin:10px 0 0;
  color:#d9dfe8;
  font-size:18px;
  line-height:1.7;
}

.site-footer{
  background:#0f1115;
  color:#fff;
  padding:28px 0;
}
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
}
.footer-brand img{
  width:160px;
  height:54px;
  object-fit:contain;
}
.footer-brand p{
  margin:10px 0 0;
  color:#bec5d1;
}
.footer-links{
  display:grid;
  gap:10px;
}
.footer-links a{
  color:#eef2f8;
}
.footer-links a:hover{color:var(--red)}

.floating-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  background:linear-gradient(180deg,var(--red),var(--red-2));
  color:#fff;
  padding:16px 22px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 16px 34px rgba(255,28,36,.26);
}

@media (max-width: 1100px){
  .hero-grid,
  .finance-grid{
    grid-template-columns:1fr;
  }
  .vehicle-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width: 860px){
  .main-nav{display:none}
  .hero-gallery,
  .vehicle-grid,
  .vehicle-actions,
  .field-grid,
  .footer-row{
    grid-template-columns:1fr;
    display:grid;
  }
  .section-title,
  .insta-card{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-row{
    display:grid;
  }
}
@media (max-width: 640px){
  .hero,
  .offers,
  .finance,
  .instagram{
    padding:64px 0;
  }
  .hero h1{font-size:38px}
  .hero p{font-size:18px}
  .vehicle-grid{grid-template-columns:1fr}
  .floating-wa{
    left:14px;
    right:14px;
    text-align:center;
  }
}

.whatsapp-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#16c65b;
  box-shadow:0 10px 24px rgba(22,198,91,.22);
  transition:.2s ease;
}
.whatsapp-icon:hover{transform:translateY(-1px) scale(1.03)}
.whatsapp-icon svg{
  width:24px;
  height:24px;
  fill:#fff;
}
.header-wa{flex:0 0 auto}

.floating-wa{
  left:auto !important;
  right:18px !important;
  bottom:18px !important;
  width:60px !important;
  height:60px !important;
  padding:0 !important;
  border-radius:50% !important;
  display:grid !important;
  place-items:center !important;
  background:#16c65b !important;
  box-shadow:0 16px 34px rgba(0,0,0,.28) !important;
}
.floating-wa svg{
  width:31px;
  height:31px;
  fill:#fff;
}
@media (max-width:640px){
  .floating-wa{
    left:auto !important;
    right:14px !important;
    width:58px !important;
    height:58px !important;
  }
}

.whatsapp-icon img,
.floating-wa img{
  width:62%;
  height:62%;
  object-fit:contain;
  display:block;
}
.whatsapp-icon,
.floating-wa{
  background:#25D366 !important;
}


/* Correção: usar somente a logo enviada, sem fundo verde extra */
.whatsapp-icon,
.floating-wa{
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.whatsapp-icon{
  width: 44px !important;
  height: 44px !important;
  display: grid !important;
  place-items: center !important;
}

.floating-wa{
  width: 56px !important;
  height: 56px !important;
  display: grid !important;
  place-items: center !important;
  right: 18px !important;
  bottom: 18px !important;
  left: auto !important;
  border-radius: 0 !important;
}

.whatsapp-icon img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.floating-wa img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

@media (max-width:640px){
  .floating-wa{
    width: 54px !important;
    height: 54px !important;
    right: 14px !important;
    left: auto !important;
  }
}


/* Ajuste visual: deixar o WhatsApp no mesmo padrão visual do Instagram */
.whatsapp-icon{
  width:46px !important;
  height:46px !important;
  border-radius:50% !important;
  display:grid !important;
  place-items:center !important;
  background:rgba(255,255,255,.03) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  box-shadow:none !important;
  overflow:hidden !important;
}

.whatsapp-icon img{
  width:58% !important;
  height:58% !important;
  object-fit:contain !important;
  display:block !important;
}

/* Botão flutuante no canto direito, mas com visual mais limpo */
.floating-wa{
  width:58px !important;
  height:58px !important;
  border-radius:50% !important;
  display:grid !important;
  place-items:center !important;
  background:rgba(17,20,26,.96) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  box-shadow:0 10px 24px rgba(0,0,0,.22) !important;
  right:18px !important;
  bottom:18px !important;
  left:auto !important;
  overflow:hidden !important;
}

.floating-wa img{
  width:62% !important;
  height:62% !important;
  object-fit:contain !important;
  display:block !important;
}

@media (max-width:640px){
  .floating-wa{
    width:54px !important;
    height:54px !important;
    right:14px !important;
    left:auto !important;
  }
}


/* Clarear a logo do WhatsApp para ficar visível como a do Instagram */
.whatsapp-icon img,
.floating-wa img{
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}
