:root {
  --bg: #08172a;
  --bg-deep: #071323;
  --bg-alt: #0d1f37;
  --bg-dark: #091a31;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --line: rgba(15, 31, 58, 0.12);
  --text: #11203a;
  --text-soft: #61708a;
  --muted: #aab6c8;
  --accent: #f1aa25;
  --whatsapp: #1da04d;
  --accent-strong: #ffbf47;
  --accent-soft: rgba(240, 176, 58, 0.16);
  --shadow: 0 18px 45px rgba(4, 10, 20, 0.2);
  --radius: 20px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(240, 176, 58, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #08182c 0 64px, #ffffff 64px 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 30;
  background: rgba(7, 19, 35, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 66px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 52px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-text strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

.brand-text small {
  margin-top: -2px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 600;
  position: relative;
  padding: 24px 0 20px;
}

.site-nav a.active {
  color: var(--accent);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.whatsapp-btn,
.section-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  border-radius: 10px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-btn {
  min-height: 40px;
  padding: 0 18px;
  color: var(--accent);
  border: 1.5px solid rgba(240, 176, 58, 0.7);
  background: rgba(255, 255, 255, 0.01);
  box-shadow: inset 0 0 0 1px rgba(240, 176, 58, 0.08);
}

.whatsapp-btn svg,
.btn svg,
.stat-icon svg,
.card-icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.whatsapp-btn:hover,
.btn:hover,
.section-link:hover,
.carousel-btn:hover,
.floating-wa:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 9px 10px;
  margin-left: auto;
}

.whatsap-icon {
  color: var(--whatsapp);
}

.whatsap-icon svg {
  height: 24px;
  width: 24px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.hero {
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(255, 198, 90, 0.18),
      transparent 26%
    ),
    linear-gradient(180deg, rgba(5, 16, 31, 0.96), rgba(5, 16, 31, 0.98));
  color: #ffffff;
}

.hero-background-image {
  width: 100vw;

  background: url('assets/helicoptero_preto.png') center/cover no-repeat;
}

.hero-grid {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  min-height: 530px;
  z-index: 10;
}

.hero-background-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 18%; /* ajuste conforme necessário */
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(5, 22, 45, 0.15) 20%,
    rgba(5, 22, 45, 0.45) 45%,
    rgba(5, 22, 45, 0.75) 70%,
    #05162d 100%
  );
  z-index: 1;

  pointer-events: none;
}

.hero-background {
  background-color: #05162d;
  inset: 0;
}

.hero-copy {
  padding: 52px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.eyebrow {
  border-radius: 2px;
}

.eyebrow,
.section-kicker,
.section-kicker-frota {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: var(--accent);
  color: #071323;
  border-radius: 2px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--accent);
}

.section-kicker-frota {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
  color: var(--accent);
}

.hero h1 {
  margin: 18px 0 0;
  font-family: 'GothamBold', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 6vw, 5rem);
  line-height: 1.06;
  /* letter-spacing: -0.05em; */
  text-transform: uppercase;
}

.hero-accent {
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  margin: 14px 0 18px;
}

.hero-lead {
  margin: 0;
  max-width: 380px;
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(180deg, #f4b650, #d99322);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(240, 176, 58, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  border: 1.4px solid rgba(255, 255, 255, 0.7);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1.4px solid rgba(240, 176, 58, 0.95);
}

.hero-visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 16, 31, 0.98) 0%,
      rgba(5, 16, 31, 0.3) 26%,
      rgba(5, 16, 31, 0.02) 48%
    ),
    linear-gradient(180deg, rgba(5, 16, 31, 0.06), rgba(5, 16, 31, 0.2));
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.04);
}

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 21, 38, 0.98);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 16px 18px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:first-child {
  border-left: 0;
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  color: var(--accent);
}

.stat-item strong {
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
}

.stat-item span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.section-light {
  background: #f6f7fb;
  padding: 40px 0 42px;
}

.section-dark {
  background: var(--bg);
  color: #fff;
  padding: 36px 0 38px;
}

.services h2,
.differentials h2,
.quote-panel h2,
.section-head h2 {
  margin: 8px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-align: center;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head-dark h2,
.section-head-dark .section-kicker {
  text-align: left;
}

.section-head-dark h2 {
  margin-top: 8px;
}

/* .section-kicker {
  margin: 0 auto;
  color: #ffffff;
} */

.section-head .section-kicker {
  margin-left: 0;
}

.section-link {
  min-height: 44px;
  padding: 0 18px;
  color: #ffffff;
  border: 1.5px solid rgba(240, 176, 58, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 0.84rem;
}

.section-link span {
  color: var(--accent);
  font-weight: 800;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 24px;
}

.service-card,
.feature-card {
  min-height: 206px;
  padding: 26px 20px 22px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 9px 18px rgba(13, 24, 44, 0.04);
}

.service-card {
  text-align: center;
}

.card-icon {
  width: fit-content;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  /* stroke-width: 4px; */
}

/* .stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
} */

.card-icon svg {
  width: 100%;
  height: 100%;
  color: var(--accent);
}
/* 
.service-card .card-icon {
  width: 62px;
  height: 62px;
} */

.service-card h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1.02rem;
  line-height: 1.15;
  color: #0f1b30;
}

.service-card p,
.feature-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #4e5a72;
}

.fleet {
  position: relative;
  padding: 26px 0 30px;
  background: linear-gradient(180deg, #08182c, #071224);
  color: #fff;
}

.fleet .container {
  position: relative;
}

.fleet .section-head {
  align-items: center;
}

.fleet .section-head h2 {
  color: #fff;
  text-align: left;
}

.fleet-carousel {
  position: relative;
  margin-top: 8px;
  padding: 0 6px;
}

.fleet-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0 4px;
}

.fleet-track::-webkit-scrollbar {
  display: none;
}

.fleet-card {
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  color: #0f1b30;
}

.fleet-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.fleet-body {
  padding: 14px 16px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-items: center;
}

.fleet-body h3 {
  width: fit-content;
  margin: 0 auto 6px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 1.15;
}

.fleet-body p {
  margin: 0 auto 10px;
  color: #5f6d84;
  font-size: 0.95rem;
}

.fleet-meta {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 14px;
  flex-wrap: wrap;
  color: #5f6d84;
  font-size: 0.88rem;
}

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

.fleet-meta i {
  color: var(--accent);
  font-style: normal;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-btn.prev {
  left: -10px;
}

.carousel-btn.next {
  right: -10px;
}

.diff-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 24px;
}

.feature-card {
  text-align: center;
  min-height: 172px;
}

.contact-split {
  padding: 0;
  background: linear-gradient(180deg, #091a31, #091a31);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 0;
  align-items: stretch;
  padding: 18px 0 0;
}

.quote-panel {
  align-self: end;
  background: linear-gradient(
    180deg,
    rgba(6, 17, 32, 0.94),
    rgba(6, 17, 32, 0.98)
  );
  border-radius: 10px 10px 10px 10px;
  padding: 16px 18px 14px;
  margin-right: -10px;
  z-index: 2;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.quote-panel h2 {
  text-align: left;
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.3vw, 2.45rem);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quote-form label {
  display: grid;
  gap: 6px;
}

.quote-form label:nth-last-child(2),
.quote-form label:last-of-type {
  grid-column: 1 / -1;
}

.quote-form span {
  font-size: 0.74rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #ffffff;
  color: #0f1b30;
  border-radius: 6px;
  min-height: 33px;
  padding: 0 12px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.quote-form textarea {
  padding-top: 8px;
  resize: vertical;
  min-height: 66px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8b94a4;
}

.form-submit {
  margin-top: 2px;
  width: fit-content;
}

.contact-visual {
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.site-footer {
  background: linear-gradient(180deg, #091a31 0%, #06111f 100%);
  color: #fff;
  padding: 18px 0 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1fr;
  gap: 22px;
  padding-top: 10px;
}

.footer-brand p {
  margin: 16px 0 14px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 12px;
  padding: 8px 0 0;
}

.socials a {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  font-weight: 800;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.96rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-list,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
}

.footer-list a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact span {
  color: #ffffff;
  width: 16px;
  flex: 0 0 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom span {
  color: #ffcf73;
  font-size: larger;
}

.brand,
.site-nav a,
.btn,
.section-link,
.whatsapp-btn,
.carousel-btn {
  -webkit-tap-highlight-color: transparent;
}

.helio {
  color: #00ff88;
  letter-spacing: 0.02em;
}

.brand-mark-footer {
  width: 160px;
  /* height: auto; */
}

.logo-call p {
  margin: 12px 0;
  /* display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px; */
}

@media (max-width: 1180px) {
  .services-grid,
  .diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body {
    background:
      radial-gradient(
        circle at top left,
        rgba(240, 176, 58, 0.12),
        transparent 28%
      ),
      linear-gradient(180deg, #08182c 0 64px, #ffffff 64px 100%);
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    padding: 12px 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: flex;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    order: 4;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 19, 35, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
    z-index: 40;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      transform 260ms ease,
      padding 260ms ease,
      visibility 0s linear 260ms;
  }

  .site-nav.is-open {
    max-height: 340px;
    padding: 12px 20px 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      transform 260ms ease,
      padding 260ms ease,
      visibility 0s;
  }

  .site-nav a {
    padding: 8px 0;
  }

  .site-nav a.active::after,
  .site-nav a:hover::after {
    bottom: 3px;
  }

  .whatsapp-btn {
    margin-left: auto;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
    max-width: 100%;
  }

  .hero-line {
    text-wrap: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
  }

  .hero-visual {
    min-height: 390px;
    border-left: 0;
    margin-top: 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .services-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .section-head-dark {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head .section-link {
    align-self: flex-start;
  }

  .fleet-track {
    grid-template-columns: repeat(4, minmax(230px, 1fr));
  }

  .quote-panel {
    margin-right: 0;
  }

  .contact-visual {
    min-height: 300px;
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .brand-text strong {
    font-size: 1.55rem;
  }

  .brand-text small {
    font-size: 0.64rem;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 18vw, 4.5rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .whatsapp-btn {
    display: none;
  }

  .whatsapp-badge {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--whatsapp);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    z-index: 40;
  }

  .whatsapp-badge i {
    color: #fff;
    font-size: 2.5rem;
  }

  .btn-primary,
  .btn-outline,
  .btn-ghost {
    width: calc(100vw - 42px);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form label,
  .quote-form label:nth-last-child(2),
  .quote-form label:last-of-type {
    grid-column: auto;
  }

  .footer-grid {
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin: 12px;
    padding-top: 12px;
  }

  .footer-bottom p {
    margin: 0;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: auto;
  }

  .footer-grid p {
    font-size: 0.8rem;
  }
}
