/* MOVCAR — Site institucional estático (cPanel-friendly)
   Paleta (aprox.): azul escuro (#0B2C4D), laranja (#FF6A00), cinzas de apoio
*/

:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0b1220;
  --muted: #5b667a;
  --line: rgba(15, 23, 42, 0.10);

  --brand: #0B2C4D;     /* azul escuro */
  --brand-2: #0E3A66;
  --accent: #FF6A00;    /* laranja */
  --accent-2: #ff8533;

  --shadow-sm: 0 10px 24px rgba(2, 6, 23, 0.08);
  --shadow-md: 0 18px 50px rgba(2, 6, 23, 0.12);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button, input, textarea{ font: inherit; }

/* A11y */
.sr-only{
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
:focus-visible{
  outline: 3px solid rgba(255, 106, 0, 0.35);
  outline-offset: 2px;
}

/* Layout */
.container{
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.section{ padding: 72px 0; }
.section-sm{ padding: 48px 0; }

.grid{
  display: grid;
  gap: 18px;
}
.grid-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px){
  .grid-4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .section{ padding: 56px 0; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

/* Typography */
.kicker{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(11, 44, 77, 0.9);
}
.h1{
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.h2{
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.lead{
  font-size: 18px;
  color: var(--muted);
  margin: 14px 0 0;
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; color: rgba(91, 102, 122, 0.92); }

/* Header */
.topbar{
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.brand img{
  width: 140px;
  height: auto;
}
.nav{
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav a{
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(11, 18, 32, 0.88);
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}
.nav a:hover{ background: rgba(11, 44, 77, 0.06); color: rgba(11, 44, 77, 1); }
.nav a[aria-current="page"]{
  background: rgba(11, 44, 77, 0.08);
  color: rgba(11, 44, 77, 1);
}

.header-cta{ display: flex; gap: 10px; align-items: center; }
.icon-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  color: rgba(11, 18, 32, 0.9);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.icon-btn:hover{ box-shadow: var(--shadow-sm); transform: translateY(-1px); }

.mobile-toggle{ display: none; }
@media (max-width: 980px){
  .nav{ display: none; }
  .mobile-toggle{ display: inline-flex; }
}

.mobile-nav{
  display: none;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px 0 18px;
}
.mobile-nav.open{ display: block; }
.mobile-nav a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(11, 18, 32, 0.9);
  transition: background 180ms ease;
}
.mobile-nav a:hover{ background: rgba(11, 44, 77, 0.06); }
.mobile-nav .cta-row{
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Buttons */
.btn{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 106, 0, 0.22);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 16px 34px rgba(255, 106, 0, 0.26); }
.btn-secondary{
  background: rgba(11, 44, 77, 0.06);
  color: rgba(11, 44, 77, 1);
  border: 1px solid rgba(11, 44, 77, 0.12);
}
.btn-secondary:hover{ transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost{
  background: transparent;
  color: rgba(11, 44, 77, 1);
  border: 1px solid rgba(11, 44, 77, 0.14);
}
.btn-ghost:hover{ background: rgba(11, 44, 77, 0.05); }

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  padding: 72px 0 46px;
}
.hero::before{
  content: "";
  position: absolute;
  inset: -120px -80px auto -80px;
  height: 520px;
  background:
    radial-gradient(closest-side, rgba(255, 106, 0, 0.16), rgba(255, 106, 0, 0) 70%),
    radial-gradient(closest-side, rgba(11, 44, 77, 0.16), rgba(11, 44, 77, 0) 68%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}
.hero-card{
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.86);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.hero-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background:
    linear-gradient(180deg, rgba(11,44,77,0.08), rgba(255,106,0,0.06)),
    url("../images/hero-car.jpg") center/cover no-repeat;
  min-height: 380px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.hero-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 44, 77, 0.22), rgba(255, 106, 0, 0.08));
}
.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-badges{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.9);
  color: rgba(11, 18, 32, 0.84);
  font-weight: 500;
  font-size: 13px;
}
.pill i{ color: rgba(11, 44, 77, 0.88); }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-media{ min-height: 320px; order: -1; }
}

/* Cards */
.card{
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.9);
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 44, 77, 0.18);
}
.card .card-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 44, 77, 0.06);
  border: 1px solid rgba(11, 44, 77, 0.12);
  color: rgba(11, 44, 77, 1);
}
.card h3{
  margin: 12px 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Feature blocks */
.feature{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
}
.feature .num{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(255, 106, 0, 0.10);
  color: rgba(255, 106, 0, 1);
  border: 1px solid rgba(255, 106, 0, 0.18);
}
.feature h3{ margin: 0 0 6px; font-size: 16px; letter-spacing: -0.01em; }
.feature p{ margin: 0; color: var(--muted); font-size: 14px; }

/* CTA banner */
.cta-banner{
  border-radius: 26px;
  padding: 28px;
  background:
    radial-gradient(closest-side, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0) 70%),
    linear-gradient(135deg, rgba(11, 44, 77, 1), rgba(14, 58, 102, 1));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-banner .cta-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}
.cta-banner h2{ margin: 0; letter-spacing: -0.02em; }
.cta-banner p{ margin: 10px 0 0; color: rgba(255,255,255,0.86); }
.cta-banner .cta-actions{
  justify-self: end;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-banner .btn-secondary{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.20);
  color: #fff;
}
.cta-banner .btn-secondary:hover{ background: rgba(255,255,255,0.16); }
@media (max-width: 860px){
  .cta-banner .cta-inner{ grid-template-columns: 1fr; }
  .cta-banner .cta-actions{ justify-self: start; }
}

/* Page header */
.page-hero{
  padding: 56px 0 24px;
  background:
    radial-gradient(closest-side, rgba(11, 44, 77, 0.14), rgba(11, 44, 77, 0) 70%),
    radial-gradient(closest-side, rgba(255, 106, 0, 0.14), rgba(255, 106, 0, 0) 70%);
}
.breadcrumbs{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(91, 102, 122, 0.92);
  font-size: 13px;
  margin-top: 10px;
}
.breadcrumbs a{ text-decoration: underline; text-decoration-color: rgba(91, 102, 122, 0.35); }
.breadcrumbs a:hover{ text-decoration-color: rgba(255, 106, 0, 0.8); }

/* Fleet */
.filter-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}
.chip{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  color: rgba(11, 18, 32, 0.86);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.chip:hover{ transform: translateY(-1px); box-shadow: var(--shadow-sm); border-color: rgba(11, 44, 77, 0.18); }
.chip.active{
  background: rgba(11, 44, 77, 0.08);
  border-color: rgba(11, 44, 77, 0.18);
  color: rgba(11, 44, 77, 1);
}
.fleet-card{
  padding: 0;
  overflow: hidden;
}
.fleet-media{
  height: 160px;
  background: rgba(2, 6, 23, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
}
.fleet-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.fleet-body{ padding: 16px 16px 18px; }
.tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.10);
  border: 1px solid rgba(255, 106, 0, 0.18);
  color: rgba(255, 106, 0, 1);
  font-weight: 700;
  font-size: 12px;
}
.fleet-body h3{ margin: 10px 0 6px; font-size: 16px; }
.fleet-meta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: rgba(91, 102, 122, 0.96);
  font-size: 13px;
}
.fleet-meta span{
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hidden{ display: none !important; }

/* How it works */
.steps{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step{
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  padding: 18px;
}
.step .step-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step .badge{
  width: 40px; height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(11, 44, 77, 0.06);
  border: 1px solid rgba(11, 44, 77, 0.12);
  color: rgba(11, 44, 77, 1);
}
.step h3{ margin: 12px 0 6px; font-size: 16px; }
.step p{ margin: 0; color: var(--muted); font-size: 14px; }
@media (max-width: 980px){
  .steps{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .steps{ grid-template-columns: 1fr; }
}

/* FAQ */
.faq{
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.10);
  overflow: hidden;
  background: #fff;
}
.faq-item + .faq-item{ border-top: 1px solid rgba(15, 23, 42, 0.08); }
.faq-q{
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.faq-q span{ font-weight: 650; color: rgba(11, 18, 32, 0.92); }
.faq-q i{ color: rgba(11, 44, 77, 0.9); }
.faq-a{
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
}
.faq-item.open .faq-a{ display: block; }
.faq-item.open .faq-q{ background: rgba(11, 44, 77, 0.04); }

/* Forms */
.form{
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  padding: 18px;
}
.field{ display: grid; gap: 8px; margin-bottom: 14px; }
.field label{ font-weight: 600; font-size: 13px; color: rgba(11, 18, 32, 0.86); }
.field input, .field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.98);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field textarea{ min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus{
  outline: none;
  border-color: rgba(255, 106, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.10);
}
.form-row{ display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px){ .form-row{ grid-template-columns: 1fr; } }

/* Footer */
.footer{
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 30px 0;
  color: rgba(91, 102, 122, 0.92);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.footer a{ text-decoration: underline; text-decoration-color: rgba(91, 102, 122, 0.35); }
.footer a:hover{ text-decoration-color: rgba(255, 106, 0, 0.85); }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr; } }

/* WhatsApp floating button */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1DB954, #12a24a);
  color: #fff;
  box-shadow: 0 16px 40px rgba(18, 162, 74, 0.32);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 220ms ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(18, 162, 74, 0.36);
}
.wa-float .label{
  font-weight: 750;
  font-size: 14px;
  letter-spacing: -0.01em;
}
@media (max-width: 420px){
  .wa-float .label{ display: none; }
}

/* Reveal animation */
[data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.revealed{
  opacity: 1 !important;
  transform: translateY(0) !important;
}

