:root {
  --navy: #07182a;
  --navy-2: #0c2742;
  --orange: #f8aa00;
  --orange-hover: #ffc029;
  --red: #ef1c20;
  --text: #142033;
  --muted: #697386;
  --line: #e5e8ed;
  --white: #fff;
  --surface: #f8f9fb;
  --max: 1220px;
  --shadow: 0 18px 55px rgba(7, 24, 42, .12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background: var(--white);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 42px), var(--max)); margin: auto; }
.section { padding: 100px 0; }
.overline {
  display: inline-block;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--navy); }
.button-primary:hover { background: var(--orange-hover); box-shadow: 0 12px 28px rgba(248,170,0,.25); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.65); background: rgba(7,24,42,.18); }
.button-outline:hover { background: var(--white); color: var(--navy); }
.button-full { width: 100%; }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 0;
  transition: .3s ease;
}
.header.scrolled {
  background: rgba(7,24,42,.96);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.identity { display: inline-flex; align-items: center; gap: 13px; color: white; }
.identity img { width: 108px; height: 63px; object-fit: contain; }
.identity-text { display: flex; flex-direction: column; line-height: 1.05; }
.identity-text strong { font-family: Georgia, serif; font-size: 1.45rem; letter-spacing: .02em; }
.identity-text span { font-size: .58rem; margin-top: 6px; color: rgba(255,255,255,.65); }
.navigation { display: flex; align-items: center; gap: 34px; }
.navigation > a { color: white; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.navigation > a:hover { color: var(--orange); }
.navigation .nav-quote { background: var(--orange); color: var(--navy); padding: 14px 21px; border-radius: 5px; }
.navigation .nav-quote:hover { color: var(--navy); background: var(--orange-hover); }
.menu-button { display: none; background: none; border: 0; cursor: pointer; z-index: 55; }
.menu-button i { display: block; width: 27px; height: 2px; background: white; margin: 6px; transition: .25s; }

.hero {
  position: relative;
  min-height: 660px;
  height: 82vh;
  display: flex;
  align-items: center;
  color: white;
  background: url("assets/hero-fleet.jpg") center 45% / cover no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,17,31,.96) 0%, rgba(4,17,31,.74) 48%, rgba(4,17,31,.22) 100%),
    linear-gradient(0deg, rgba(5,17,30,.62), transparent 50%);
}
.hero-content { position: relative; z-index: 2; padding-top: 74px; }
.hero-content h1 {
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 720px;
}
.hero-content p {
  max-width: 620px;
  color: rgba(255,255,255,.84);
  font-size: 1.04rem;
  margin: 26px 0 30px;
}
.hero-content p strong { display: block; margin-top: 8px; color: white; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-down {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: white;
}
.scroll-down span {
  width: 20px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 10px;
  position: relative;
}
.scroll-down span::before {
  content: "";
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--orange);
  position: absolute;
  top: 6px;
  left: 8px;
  animation: scroll 1.6s infinite;
}
.scroll-down small { font-size: .56rem; text-transform: uppercase; letter-spacing: .06em; }
@keyframes scroll { 0%{opacity:0;transform:translateY(0)} 35%{opacity:1} 100%{opacity:0;transform:translateY(11px)} }

.services { background: var(--white); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 500; line-height: 1.2; }
.section-title h2 strong { font-weight: 800; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card {
  min-height: 310px;
  padding: 32px 26px;
  text-align: center;
  background: white;
  border: 1px solid #e7e9ed;
  border-radius: 7px;
  box-shadow: 0 6px 22px rgba(10,30,50,.035);
  transition: .3s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon { width: 54px; margin: 0 auto 18px; color: var(--orange); }
.service-icon svg { fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.18rem; line-height: 1.25; }
.service-card > i { display: block; width: 28px; height: 2px; background: var(--orange); margin: 17px auto; }
.service-card p { color: var(--muted); font-size: .8rem; }

.fleet { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; background: var(--navy); color: white; min-height: 560px; border-top: 1px solid rgba(255,255,255,.04); }
.fleet-image { min-height: 560px; overflow: hidden; position: relative; }
.fleet-image::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg,transparent 65%,var(--navy)); }
.fleet-image img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(.95); }
.fleet-copy { display: flex; flex-direction: column; justify-content: center; padding: 65px max(45px, calc((100vw - var(--max))/2)); padding-left: 55px; }
.fleet-copy h2 { max-width: 580px; font-size: clamp(2rem,3.6vw,3.3rem); line-height: 1.08; }
.fleet-copy > p { color: rgba(255,255,255,.7); max-width: 600px; margin: 22px 0 38px; }
.fleet-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.fleet-stats div { display: flex; flex-direction: column; }
.fleet-stats strong { color: white; font-size: 1.8rem; }
.fleet-stats span { color: rgba(255,255,255,.52); font-size: .61rem; text-transform: uppercase; margin-top: 4px; }
.data-note { color: rgba(255,255,255,.35); margin-top: 30px; font-size: .66rem; }

.quote {
  position: relative;
  background:
    radial-gradient(circle at 10% 10%, rgba(248,170,0,.10), transparent 28%),
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
  overflow: hidden;
}
.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(7,24,42,.025), transparent 38%);
}
.quote-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 72px;
  align-items: center;
}
.quote-intro { padding: 28px 0; }
.quote-intro h2 {
  max-width: 520px;
  font-size: clamp(2.15rem,3.7vw,3.55rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 500;
}
.quote-intro h2 strong { font-weight: 800; color: var(--navy); }
.quote-intro > p {
  max-width: 520px;
  color: var(--muted);
  margin: 24px 0 32px;
  font-size: .96rem;
}
.quote-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quote-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(7,24,42,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #435067;
  font-size: .73rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(7,24,42,.045);
}
.quote-benefits span::before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
  margin-right: 7px;
}
.quote-form {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(7,24,42,.07);
  border-radius: 18px;
  box-shadow: 0 28px 75px rgba(7,24,42,.13);
  background: rgba(255,255,255,.97);
}
.quote-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, var(--red), var(--orange));
}
.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.quote-form label { display: block; }
.quote-form label span {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: #596579;
  margin: 0 0 7px 4px;
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #dfe4ea;
  background: #fbfcfd;
  color: var(--text);
  border-radius: 8px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-form textarea { resize: vertical; min-height: 52px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(248,170,0,.11);
}
.quote-form .button {
  min-height: 56px;
  margin-top: 18px;
  border-radius: 8px;
  font-size: .85rem;
}
.form-status {
  text-align: center;
  min-height: 20px;
  margin-top: 10px;
  color: #168044;
  font-size: .75rem;
}


.location { background: var(--surface); }
.location-layout {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 28px;
  align-items: stretch;
}
.map-wrapper {
  min-height: 510px;
  overflow: hidden;
  border-radius: 10px;
  background: #dfe4e9;
  box-shadow: var(--shadow);
}
.map-wrapper iframe { width: 100%; height: 100%; min-height: 510px; border: 0; display: block; }
.location-card {
  padding: 42px 36px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}
.location-card h3 { font-size: 2rem; line-height: 1.1; margin-bottom: 12px; }
.location-address { color: rgba(255,255,255,.72); margin-bottom: 30px; }
.location-details { display: grid; gap: 23px; border-top: 1px solid rgba(255,255,255,.13); padding-top: 26px; }
.location-details > div { display: grid; gap: 5px; }
.location-details strong { color: var(--orange); font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; }
.location-details a, .location-details p { color: rgba(255,255,255,.78); font-size: .82rem; overflow-wrap: anywhere; }
.location-details a:hover { color: var(--orange); }
.location-actions { display: grid; gap: 10px; margin-top: 30px; }
.button-whatsapp { background: #25d366; color: #062714; }
.button-whatsapp:hover { background: #38e277; box-shadow: 0 12px 28px rgba(37,211,102,.22); }

.footer { background: var(--navy); color: white; padding: 55px 0 20px; }
.footer-main { display: grid; grid-template-columns: 1.25fr 1fr 1fr .7fr; gap: 50px; }
.footer-identity img { width: 102px; height: auto; }
.footer-about > p { color: rgba(255,255,255,.6); font-size: .78rem; max-width: 290px; margin-top: 20px; }
.footer h3 { color: var(--orange); text-transform: uppercase; font-size: .68rem; margin-bottom: 18px; }
.footer-main > div > a, .footer-main > div > p {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .76rem;
  margin: 9px 0;
}
.footer-main > div > a:hover { color: var(--orange); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; border-top:1px solid rgba(255,255,255,.12); margin-top:38px; padding-top:18px; color:rgba(255,255,255,.42); font-size:.67rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .navigation {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw,380px);
    background: white;
    padding: 105px 32px 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(100%);
    transition: .3s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,.18);
  }
  .navigation.open { transform: none; }
  .navigation > a { color: var(--navy); padding: 12px 5px; font-size: .9rem; }
  .menu-button { display: block; }
  .menu-button.active i { background: var(--navy); }
  .menu-button.active i:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-button.active i:nth-child(2) { opacity: 0; }
  .menu-button.active i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .fleet { grid-template-columns: 1fr; }
  .fleet-image { min-height: 430px; }
  .fleet-image::after { background: linear-gradient(0deg,var(--navy),transparent 45%); }
  .fleet-copy { padding: 65px 35px; }
  .quote-layout { grid-template-columns: 1fr; gap: 36px; }
  .quote-intro { padding-bottom: 0; }
  .map-wrapper, .map-wrapper iframe { min-height: 430px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .identity img { width: 84px; height: auto; }
  .identity-text strong { font-size: 1.12rem; }
  .identity-text span { font-size: .49rem; }
  .hero { height: auto; min-height: 760px; background-position: 38% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(4,17,31,.94),rgba(4,17,31,.58)); }
  .hero-content h1 { font-size: 3.25rem; }
  .hero-buttons .button { width: 100%; }
  .service-grid, .two-columns, .footer-main { grid-template-columns: 1fr; }
  .fleet-image { min-height: 330px; }
  .fleet-stats { grid-template-columns: 1fr 1fr; }
  .quote-form { padding: 20px 16px; border-radius: 14px; }
  .quote-benefits { gap: 8px; }
  .quote-benefits span { width: 100%; justify-content: flex-start; }
  .map-wrapper, .map-wrapper iframe { min-height: 350px; }
  .footer-bottom { flex-direction: column; }
}


.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

.form-status.error { color: #b42318; }
.quote-form button:disabled { opacity: .65; cursor: wait; transform: none; }
