/* ============================================================
   VIDAL MOTOS — Global Styles
   Mobile-first | Alta conversão
   ============================================================ */

:root {
  --red:       #D62B2B;
  --red-dark:  #B01F1F;
  --dark:      #111111;
  --dark2:     #1C1C1C;
  --gray:      #2E2E2E;
  --gray-mid:  #555555;
  --gray-lt:   #F4F4F4;
  --white:     #FFFFFF;
  --green-wa:  #25D366;
  --green-wa-d:#1aab52;
  --gold:      #E6B800;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,.18);
  --trans:     .22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.4rem, 4vw, 2rem);   font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 600; }
p  { color: #444; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
}
.btn:active { transform: scale(.97); }

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: var(--green-wa-d); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(214,43,43,.3);
}
.btn-red:hover { background: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }

.btn-lg { padding: 18px 36px; font-size: 1.15rem; }
.btn-full { width: 100%; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { color: var(--white); font-size: 1.25rem; font-weight: 800; }
.logo-text span { color: var(--red); }

.nav-links { display: none; }
@media(min-width:768px){
  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  .nav-links a {
    color: #ccc;
    font-size: .93rem;
    font-weight: 500;
    transition: color var(--trans);
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links .nav-cta {
    background: var(--green-wa);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
  }
  .nav-links .nav-cta:hover { background: var(--green-wa-d); }
}

.nav-phone {
  color: var(--white);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media(min-width:768px){ .nav-phone { display: none; } }

/* ── HERO ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 60%, #2a0a0a 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(214,43,43,.18) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  gap: 40px;
  align-items: center;
}
@media(min-width:768px){
  .hero-inner { grid-template-columns: 1fr 1fr; padding: 80px 20px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(214,43,43,.15);
  border: 1px solid rgba(214,43,43,.4);
  color: #ff6b6b;
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-title { color: var(--white); margin-bottom: 16px; }
.hero-title span { color: var(--red); }

.hero-sub {
  color: #bbb;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.hero-price-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  display: inline-block;
}
.hero-price-label { color: #aaa; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-price {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}
.hero-price-sub { color: #aaa; font-size: .82rem; margin-top: 4px; }

.hero-ctas { display: flex; flex-direction: column; gap: 12px; }
@media(min-width:480px){ .hero-ctas { flex-direction: row; flex-wrap: wrap; } }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
  font-size: .82rem;
}
.trust-item svg { color: var(--green-wa); flex-shrink: 0; }

.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img img {
  max-height: 380px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(214,43,43,.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ── SECTION COMMONS ── */
.section { padding: 64px 20px; }
.section-alt { background: var(--gray-lt); }
.section-dark { background: var(--dark2); }

.container { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(214,43,43,.1);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title { margin-bottom: 12px; }
.section-sub { color: var(--gray-mid); max-width: 560px; }

/* ── BENEFITS GRID ── */
.benefits-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
@media(min-width:480px){ .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px){ .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(214,43,43,.12), rgba(214,43,43,.04));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.benefit-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.benefit-desc { font-size: .88rem; color: var(--gray-mid); }

/* ── SPECS TABLE ── */
.specs-wrap {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}
@media(min-width:768px){ .specs-wrap { grid-template-columns: 1fr 1fr; align-items: start; } }

.specs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.specs-table tr:nth-child(even) { background: #f9f9f9; }
.specs-table tr:nth-child(odd)  { background: var(--white); }
.specs-table tr:first-child th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  font-size: .9rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}
.specs-table td {
  padding: 13px 20px;
  font-size: .92rem;
  border-bottom: 1px solid #eee;
}
.specs-table td:first-child { color: var(--gray-mid); font-weight: 500; }
.specs-table td:last-child  { font-weight: 600; color: var(--dark); }

.specs-cta-box {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a0a 100%);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.specs-cta-title { color: var(--white); margin-bottom: 8px; }
.specs-cta-price-label { color: #aaa; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.specs-cta-price { color: var(--white); font-size: 2.2rem; font-weight: 800; }
.specs-cta-sub { color: #aaa; font-size: .83rem; margin-top: 4px; }

.specs-checklist { margin: 8px 0; display: flex; flex-direction: column; gap: 10px; }
.specs-checklist li {
  display: flex; align-items: center; gap: 10px;
  color: #ccc; font-size: .9rem;
}
.specs-checklist li::before {
  content: "✓";
  color: var(--green-wa);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── COLORS ── */
.colors-section { text-align: center; }
.color-swatches {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.color-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.color-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  transition: transform var(--trans), border-color var(--trans);
}
.color-chip:hover .color-dot,
.color-chip.active .color-dot { border-color: var(--red); transform: scale(1.15); }
.color-name { font-size: .78rem; font-weight: 600; color: var(--gray-mid); }

/* ── URGENCY / CTA BANNER ── */
.urgency-banner {
  background: linear-gradient(90deg, #D62B2B 0%, #8B0000 100%);
  padding: 18px 20px;
  text-align: center;
}
.urgency-text {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.urgency-text a { color: var(--white); text-decoration: underline; }

/* ── FINANCING STRIP ── */
.financing-strip {
  background: var(--dark);
  padding: 48px 20px;
  text-align: center;
}
.financing-strip h2 { color: var(--white); margin-bottom: 10px; }
.financing-strip p  { color: #aaa; margin-bottom: 28px; }

.financing-cards {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 32px;
}
@media(min-width:600px){ .financing-cards { grid-template-columns: repeat(3, 1fr); } }

.fin-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.fin-card-label { color: #aaa; font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.fin-card-val { color: var(--white); font-size: 1.5rem; font-weight: 800; }
.fin-card-sub { color: #888; font-size: .78rem; margin-top: 4px; }

/* ── TRUST BADGES ── */
.trust-bar {
  background: var(--gray-lt);
  padding: 32px 20px;
}
.trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
}
.trust-badge-icon { font-size: 1.5rem; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--trans);
  font-family: var(--font);
}
.faq-q:hover { background: #fafafa; }
.faq-q svg { flex-shrink: 0; transition: transform var(--trans); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 20px;
  color: var(--gray-mid);
  font-size: .92rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }

/* ── LOCATION / FOOTER ── */
.location-section { padding: 60px 20px; }
.location-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
@media(min-width:768px){ .location-grid { grid-template-columns: 1fr 1fr; } }

.location-card {
  background: var(--gray-lt);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--red);
}
.location-card h3 { margin-bottom: 12px; }
.location-card p { font-size: .9rem; color: var(--gray-mid); margin-bottom: 6px; display: flex; gap: 8px; align-items: flex-start; }
.location-card strong { color: var(--dark); }

.site-footer {
  background: var(--dark);
  padding: 40px 20px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}
@media(min-width:768px){ .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .logo-text { font-size: 1.3rem; }
.footer-brand p { color: #888; font-size: .88rem; margin-top: 12px; max-width: 280px; }

.footer-col h4 { color: var(--white); font-size: .92rem; margin-bottom: 14px; }
.footer-col li { margin-bottom: 8px; }
.footer-col li a { color: #888; font-size: .88rem; transition: color var(--trans); }
.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: .8rem;
}

/* ── STICKY WHATSAPP ── */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.sticky-wa-bubble {
  background: var(--white);
  color: var(--dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  white-space: nowrap;
}
.sticky-wa:hover .sticky-wa-bubble { opacity: 1; transform: translateY(0); }

.sticky-wa-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: pulse-wa 2.5s infinite;
}
.sticky-wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.8); }
}

/* ── MODELS GRID (home) ── */
.models-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
@media(min-width:600px){ .models-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px){ .models-grid { grid-template-columns: repeat(3, 1fr); } }

.model-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: box-shadow var(--trans), transform var(--trans);
  display: flex;
  flex-direction: column;
}
.model-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.model-card-img {
  background: linear-gradient(135deg, #f5f5f5, #ebebeb);
  padding: 24px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-card-img img { max-height: 150px; object-fit: contain; }

.model-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.model-card-tag {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--red); margin-bottom: 6px;
}
.model-card-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.model-card-price { font-size: 1.3rem; font-weight: 800; color: var(--red); margin-bottom: 16px; }
.model-card-price span { font-size: .78rem; color: var(--gray-mid); font-weight: 400; }

.model-card-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.model-feat-tag {
  background: #f0f0f0;
  color: var(--gray-mid);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.model-card-cta { margin-top: auto; }

/* ── HERO MODELS (home header) ── */
.home-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 60%, #1a0505 100%);
  padding: 80px 20px 60px;
  text-align: center;
}
.home-hero h1 { color: var(--white); margin-bottom: 16px; }
.home-hero p  { color: #aaa; font-size: 1.1rem; max-width: 580px; margin: 0 auto 32px; }

/* ── CATEGORY TABS ── */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}
.cat-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid #ddd;
  background: var(--white);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  font-family: var(--font);
}
.cat-tab.active, .cat-tab:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.gap-12 { gap: 12px; }
