@charset "UTF-8";

/* ==========================================================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================================================== */
:root {
  --green: #065e34;
  --green-d: #044a29;
  --green-l: #0a7a45;
  --orange: #f7941d;
  --orange-d: #e07f0a;
  --ink: #0f1a14;
  --muted: #5a6b62;
  --line: #e6ebe8;
  --soft: #f4f7f5;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--orange);
}

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

.centro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BOTÕES E COMPONENTES BASE
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-d);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .6);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-l);
  color: #fff;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}

h2 {
  font-size: 44px;
  line-height: 1.1;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

/* ==========================================================================
   CABEÇALHO (HEADER)
   ========================================================================== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hdr-in {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.desde {
  position: absolute;
  right: -3px;
  top: -7px;
  color: white;
  font-size: 10.5px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}

.nav a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}

.nav a:hover {
  color: var(--orange);
}

.hdr-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hdr-phone {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .9;
}

.hdr-phone svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   BANNER HERO
   ========================================================================== */
.hero {
  background: #03291a;
  padding: 0;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
  display: inline-block;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

/* ==========================================================================
   QUEM SOMOS & LINHA DO TEMPO
   ========================================================================== */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #065e34, #0a7a45);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../imagens/fachada.jpg') center/cover no-repeat;
}

.about-media .badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  padding: 16px 22px;
  border-radius: 14px;
  z-index: 2;
}

.about-media .badge strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.about-media .badge span {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .95;
}

.about h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.about p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.timeline {
  margin-top: 32px;
}

.timeline-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 18px;
  font-weight: 700;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  border-left: 2px solid #e8f2ec;
  padding-left: 22px;
  display: grid;
  gap: 20px;
}

.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: baseline;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px #e8f2ec;
}

.tl-date {
  font-weight: 700;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  font-size: 15px;
}

.tl-body strong {
  display: block;
  font-size: 16px;
  color: #111;
  margin-bottom: 2px;
}

.tl-body span {
  font-size: 14px;
  color: var(--muted);
}

/* ==========================================================================
   FROTA (FLEET)
   ========================================================================== */
.fleet {
  background: var(--soft);
}

.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab {
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}

.tab:hover {
  border-color: var(--green);
  color: var(--green);
}

.tab.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.cars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.car {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 20px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  display: flex;
  flex-direction: column;
}

.car:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(6, 94, 52, .25);
  border-color: transparent;
}

.car-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.car-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}

.car-img {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f8faf9, #eef3f0);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.car-img img {
  max-height: 88%;
  max-width: 92%;
  object-fit: contain;
}

.car-meta {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.car-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.car-meta svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* ==========================================================================
   TERCEIRIZE SUA FROTA (B2B)
   ========================================================================== */
.b2b {
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.b2b::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 148, 29, .25), transparent 70%);
}

.b2b-in {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.b2b h2 {
  color: #fff;
  font-size: 48px;
}

.b2b .eyebrow {
  color: var(--orange);
}

.b2b p {
  color: rgba(255, 255, 255, .85);
  font-size: 17px;
  line-height: 1.65;
  margin: 20px 0 28px;
  max-width: 520px;
}

.b2b-tag {
  display: inline-block;
  background: rgba(247, 148, 29, .15);
  border: 1px solid rgba(247, 148, 29, .5);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.b2b-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bene {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 22px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.bene .bene-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.bene .bene-ic svg {
  width: 22px;
  height: 22px;
}

.bene h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}

.bene p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}

/* ==========================================================================
   FILIAIS (BRANCHES)
   ========================================================================== */
.branches {
  background: #fff;
}

.br-phones .wa-ic {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: var(--green);
  -webkit-mask: url("../imagens/vetor_whats.png") center/contain no-repeat;
  mask: url("../imagens/vetor_whats.png") center/contain no-repeat;
  display: inline-block;
}

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

.br {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: all .2s;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.br:hover {
  border-color: var(--green);
  box-shadow: 0 20px 40px -25px rgba(6, 94, 52, .25);
  transform: translateY(-3px);
}

.br-city {
  display: flex;
  align-items: center;
  gap: 10px;
}

.br-city .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.br-city h3 {
  font-size: 18px;
  text-transform: capitalize;
}

.br-addr {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.br-phones {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.br-phones a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.br-phones svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--green);
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.ft {
  background: #03291a;
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 28px;
}

.ft-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.ft h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.ft ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.ft a {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.ft a:hover {
  color: var(--orange);
}

.ft-logo img {
  height: 40px;
  margin-bottom: 16px;
}

.ft-about {
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  color: #fff;
}

.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.socials svg {
  width: 16px;
  height: 16px;
}

.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}