/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}

:root {
  --navy:  #0B1F5C;
  --navy2: #091749;
  --green: #4DB830;
  --green2:#3a9a22;
  --white: #fff;
  --gray:  #f2f5fb;
  --mid:   #5a6477;
  --dark:  #070f2b;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #fff;
  border-bottom: 3px solid var(--green);
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
}
.nav-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px; height: 74px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--navy); font-size: 12px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--green); }
.nav-btn {
  background: var(--green) !important; color: #fff !important;
  padding: 10px 24px; border-radius: 6px; font-weight: 800 !important;
  transition: background .2s !important;
}
.nav-btn:hover { background: var(--green2) !important; }
.nav-mobile-btn {
  display: none;
  background: var(--green); color: #fff;
  padding: 9px 18px; border-radius: 6px;
  font-size: 12px; font-weight: 800; letter-spacing: .5px;
  text-decoration: none; white-space: nowrap;
  align-items: center; gap: 7px;
}

/* ─── HERO ─── */
#inicio {
  position: relative; min-height: 100vh;
  background: var(--navy2); overflow: hidden;
  display: flex; align-items: stretch;
}
.hero-photo {
  position: absolute; inset: 0;
  background: url('../images/hero.jpg') center top / cover no-repeat;
}
.hero-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg,
      rgba(9,23,73,.97)  0%,
      rgba(9,23,73,.90) 38%,
      rgba(9,23,73,.52) 62%,
      rgba(9,23,73,.05) 100%),
    linear-gradient(180deg, rgba(9,23,73,.55) 0%, transparent 15%,
      transparent 80%, rgba(9,23,73,.85) 100%);
}
.hero-inner {
  position: relative; z-index: 10;
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 96px 40px 64px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;           /* ← texto sempre à ESQUERDA */
  min-height: 100vh;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(77,184,48,.15);
  border: 1px solid rgba(77,184,48,.5);
  border-radius: 4px; padding: 6px 14px;
  margin-bottom: 22px;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-badge span {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: var(--green); text-transform: uppercase;
}
.hero-h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900; line-height: .93;
  color: #fff; text-transform: uppercase;
  letter-spacing: -2px; margin-bottom: 10px;
}
.hero-h1 .g { color: var(--green); }
.hero-loc {
  font-size: clamp(13px, 1.8vw, 20px); font-weight: 800;
  color: rgba(255,255,255,.38); letter-spacing: 5px;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-desc {
  font-size: 15px; line-height: 1.78;
  color: rgba(255,255,255,.78);
  max-width: 480px; margin-bottom: 40px; font-weight: 500;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: .7px; text-transform: uppercase;
  text-decoration: none; padding: 15px 30px; border-radius: 6px;
  transition: transform .15s, background .2s, border-color .2s, color .2s;
  cursor: pointer; white-space: nowrap; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-wpp { background: #25D366; color: #fff; box-shadow: 0 6px 22px rgba(37,211,102,.35); }
.btn-wpp:hover { background: #1db254; }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 32px;
}
.hstat { padding-right: 36px; margin-right: 36px; border-right: 1px solid rgba(255,255,255,.1); }
.hstat:last-child { border: none; padding: 0; margin: 0; }
.hstat-n {
  font-size: 40px; font-weight: 900;
  color: var(--green); line-height: 1; letter-spacing: -2px;
}
.hstat-l {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.48); margin-top: 4px;
}

/* ─── TRUST STRIP ─── */
.trust {
  background: var(--navy);
  border-top: 4px solid var(--green);
  padding: 16px 40px;
}
.trust-wrap {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-around; flex-wrap: wrap; gap: 10px 16px;
}
.t-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: .8px;
  color: #fff; text-transform: uppercase;
}
.t-icon {
  width: 32px; height: 32px; border-radius: 4px;
  background: rgba(77,184,48,.18); border: 1px solid rgba(77,184,48,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}

/* ─── GENERIC SECTION ─── */
.sec { padding: 88px 40px; }
.sec-wrap { max-width: 1280px; margin: 0 auto; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  color: var(--green2); text-transform: uppercase; margin-bottom: 14px;
}
.sec-tag::before { content: ''; width: 24px; height: 2.5px; background: var(--green); display: block; }
.sec-h2 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 900;
  text-transform: uppercase; line-height: 1;
  margin-bottom: 14px; letter-spacing: -1.5px;
}
.sec-p {
  font-size: 15px; color: var(--mid); line-height: 1.75;
  max-width: 620px; margin-bottom: 48px; font-weight: 500;
}

/* ─── SERVICES ─── */
#servicos { background: #fff; }
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3px; background: #c8d3e8;
  border: 3px solid #c8d3e8; border-radius: 4px; overflow: hidden;
}
.svc-card {
  background: #fff; padding: 38px 34px;
  position: relative; overflow: hidden; transition: background .25s;
}
.svc-card::after {
  content: ''; position: absolute;
  left: 0; bottom: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0);
  transform-origin: left; transition: transform .3s;
}
.svc-card:hover { background: var(--gray); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico {
  width: 50px; height: 50px; border-radius: 8px;
  background: rgba(77,184,48,.1); border: 1.5px solid rgba(77,184,48,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--green2); margin-bottom: 18px;
}
.svc-title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 9px; }
.svc-desc { font-size: 13.5px; color: var(--mid); line-height: 1.68; font-weight: 500; }

/* ─── FLEET ─── */
#frota { background: var(--navy2); padding: 88px 0; }
.fleet-wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.fleet-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px; gap: 20px; flex-wrap: wrap;
}
.fleet-h2 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 900;
  text-transform: uppercase; line-height: 1;
  letter-spacing: -1.5px; color: #fff;
}
.fleet-h2 span { color: var(--green); }
.fleet-sub { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; max-width: 320px; font-weight: 500; }
.fleet-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 240px;
  gap: 4px; border-radius: 4px; overflow: hidden;
}
.f-img { position: relative; overflow: hidden; }
.f-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.f-img:hover img { transform: scale(1.05); }
.f-main { grid-row: span 2; }
.f-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,23,73,.92) 0%, transparent 100%);
  padding: 18px 16px 12px;
}
.f-label { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: .3px; }
.f-cap { font-size: 11.5px; color: var(--green); margin-top: 3px; font-weight: 600; }

/* SPECS — fundo branco, texto escuro */
.fleet-specs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin-top: 4px; background: #c8d3e8;
  border-radius: 4px; overflow: hidden;
}
.fspec {
  background: #fff; padding: 26px 22px;
  border-top: 3px solid transparent; transition: border-color .25s;
}
.fspec:hover { border-color: var(--green); }
.fspec-n { font-size: 42px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -2px; display: inline; }
.fspec-u { font-size: 14px; color: var(--mid); margin-left: 2px; font-weight: 700; display: inline; }
.fspec-l { font-size: 11px; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* ─── WHY ─── */
#sobre { background: var(--gray); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-img-col { position: relative; padding: 0 0 28px 0; }
.why-img-wrap { overflow: hidden; border-radius: 4px; }
.why-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.why-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--green); padding: 20px 24px; border-radius: 4px;
}
.why-badge-n { font-size: 44px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -2px; }
.why-badge-l { font-size: 10px; font-weight: 800; color: rgba(255,255,255,.88); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.why-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.07); }
.why-item:last-child { border: none; }
.why-n { font-size: 24px; font-weight: 900; color: var(--green); line-height: 1; flex-shrink: 0; width: 40px; letter-spacing: -1px; }
.why-t { font-size: 14.5px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.why-d { font-size: 13px; color: var(--mid); line-height: 1.65; font-weight: 500; }

/* ─── QUOTE ─── */
.quote {
  background: var(--navy); padding: 52px 40px;
  border-top: 4px solid var(--green); border-bottom: 4px solid var(--green);
}
.quote-wrap { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.quote-mark { font-size: 100px; font-weight: 900; color: rgba(77,184,48,.2); line-height: 1; flex-shrink: 0; margin-top: -16px; font-family: Georgia, serif; }
.quote-txt { flex: 1; min-width: 220px; font-size: clamp(16px, 2.4vw, 24px); font-weight: 700; color: #fff; line-height: 1.4; }
.quote-txt span { color: var(--green); }

/* ─── CONTACT ─── */
#contato { background: var(--dark); padding: 88px 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-h2 {
  font-size: clamp(28px, 4vw, 52px); font-weight: 900;
  text-transform: uppercase; line-height: 1;
  letter-spacing: -1.5px; color: #fff; margin-bottom: 16px;
}
.contact-h2 span { color: var(--green); }
.contact-desc { font-size: 14.5px; color: rgba(255,255,255,.58); line-height: 1.75; margin-bottom: 28px; font-weight: 500; }
.clist { list-style: none; }
.clist li { display: flex; align-items: flex-start; gap: 13px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.clist li:last-child { border: none; }
.c-icon {
  width: 38px; height: 38px; border-radius: 5px; flex-shrink: 0;
  background: rgba(77,184,48,.12); border: 1px solid rgba(77,184,48,.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-top: 2px;
}
.c-lbl { font-size: 10px; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,.38); text-transform: uppercase; }
.c-val { font-size: 15px; color: #fff; margin-top: 3px; font-weight: 600; }
.cform {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 36px 32px;
}
.cform-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 24px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 10px; font-weight: 800; letter-spacing: 1.8px; color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px; padding: 12px 14px;
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 500; outline: none; transition: border-color .2s;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.22); }
.fg select option { background: #0f1e52; color: #fff; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green); }
.fg textarea { resize: vertical; min-height: 84px; }
.btn-block { width: 100%; justify-content: center; margin-top: 8px; }

/* ─── FOOTER ─── */
footer { background: var(--navy2); border-top: 1px solid rgba(255,255,255,.08); padding: 32px 40px; }
.footer-wrap { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.f-logo img { height: 38px; display: block; }
.f-copy { font-size: 11.5px; color: rgba(255,255,255,.38); font-weight: 500; }
.f-links { display: flex; gap: 18px; }
.f-links a { font-size: 11.5px; color: rgba(255,255,255,.38); text-decoration: none; font-weight: 600; transition: color .2s; }
.f-links a:hover { color: var(--green); }

/* ─── WPP FLOAT ─── */
.wpp {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  display: flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 13px 20px 13px 15px; border-radius: 50px;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
  animation: wfloat 3s ease-in-out infinite;
  transition: box-shadow .2s, transform .2s;
}
.wpp:hover { animation: none; transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,.6); }
@keyframes wfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { padding: 88px 32px 56px; }
  .nav-wrap { padding: 0 24px; }
  .fleet-wrap { padding: 0 24px; }
  .sec { padding: 72px 24px; }
  .quote { padding: 48px 24px; }
  #contato { padding: 72px 24px; }
  footer { padding: 28px 24px; }
  .trust { padding: 16px 24px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .fleet-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .f-img { height: 220px; }
  .f-main { grid-row: span 1; }
  .fleet-specs { grid-template-columns: 1fr 1fr; }
  .quote-mark { display: none; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .hstat { padding-right: 20px; margin-right: 20px; }
  .hstat-n { font-size: 30px; }
  .why-img-wrap img { height: 240px; }
}

@media (max-width: 480px) {
  .hero-h1 { letter-spacing: -1px; }
  .fleet-specs { grid-template-columns: 1fr; }
  .cform { padding: 24px 18px; }
  .wpp span { display: none; }
  .wpp { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
  .footer-wrap { flex-direction: column; text-align: center; }
  .f-links { justify-content: center; }
}
