/* ===================================================================
   TRANSPORTADORA SIQUEIRA CAMILO — LANDING PAGE PREMIUM
   =================================================================== */

:root {
  --blue:        #00319A;
  --blue-deep:   #001F66;
  --blue-night:  #050A1F;
  --blue-soft:   #0A1638;
  --orange:      #FA4C00;
  --orange-soft: #FF6B26;
  --gray-900:    #0F1424;
  --gray-700:    #2A3047;
  --gray-500:    #5A6378;
  --gray-400:    #8089A0;
  --gray-300:    #B3BAC9;
  --gray-200:    #DEE2EC;
  --gray-100:    #F1F3F8;
  --white:       #FFFFFF;
  --bg:          #FFFFFF;

  --shadow-sm: 0 4px 14px -4px rgba(0, 49, 154, .08);
  --shadow-md: 0 14px 40px -12px rgba(0, 49, 154, .14);
  --shadow-lg: 0 30px 80px -20px rgba(0, 49, 154, .22);

  --container: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--blue-night);
  overscroll-behavior: none;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--blue-night);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overscroll-behavior: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 {
  font-family: 'Big Shoulders Display', 'Space Grotesk', sans-serif;
  color: var(--gray-900);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.text-accent { color: var(--orange); }

/* ===================== TAG ===================== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 49, 154, .18);
  background: rgba(0, 49, 154, .04);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tag__dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
}
.tag--dark { color: var(--blue); }
.tag--light {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(250, 76, 0, .55);
}
.btn--primary:hover {
  background: #d83f00;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(250, 76, 0, .65);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(0, 49, 154, .22);
  color: var(--blue);
}
.btn--ghost:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn--outline-light {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--outline-light:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--xl { padding: 20px 36px; font-size: 16px; }

/* ===================== NAVBAR ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: all .4s var(--ease);
  background: transparent;
}
.nav--blur {
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}
.nav--scrolled {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-width: 0;
}
.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}
.nav__brand-img {
  height: 76px;
  width: auto;
  display: block;
  transition: all .3s var(--ease);
}
.nav--scrolled .nav__brand-img {
  height: 62px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 1;
}
.nav__link {
  position: relative;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  border-radius: 100px;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.nav__link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, .1);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::before { opacity: 1; }
.nav--scrolled .nav__link { color: var(--gray-700); }
.nav--scrolled .nav__link::before { background: rgba(0, 49, 154, .06); }
.nav--scrolled .nav__link:hover { color: var(--blue); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__cta {
  padding: 11px 20px;
  font-size: 13px;
}

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav--scrolled .nav__toggle {
  background: transparent;
  border-color: var(--gray-200);
}
.nav--scrolled .nav__toggle span { background: var(--gray-900); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 76px 0 auto 0;
  background: #fff;
  padding: 24px 28px 32px;
  display: none;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  visibility: hidden;
  transition: transform .45s var(--ease), visibility 0s linear .45s;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  z-index: -1;
}
.nav__mobile.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform .45s var(--ease), visibility 0s linear 0s;
}
.nav__mobile-link {
  padding: 14px 4px;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile-cta {
  margin-top: 18px;
  justify-content: center;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 200px 0 150px;
  overflow: hidden;
  background: var(--blue-night);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__image {
  position: absolute;
  inset: 0;
  background-image:
    url('assets/background.jpg');
  background-color: var(--blue-night);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: .35;
}
.hero__glow--blue {
  display: none;
}
.hero__glow--orange {
  display: none;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero__content {
  max-width: 880px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  margin: 22px 0 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .45);
}
.hero__title-accent { color: var(--orange); }

.hero__sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  max-width: 580px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
  justify-content: center;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .02em;
}
.hero__trust-item svg {
  width: 20px; height: 20px;
  color: var(--orange);
}

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero__scroll span {
  display: block;
  width: 1px; height: 38px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .55) 60%, var(--orange));
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, var(--orange));
  animation: scrollLine 2s ease-in-out infinite;
}
.hero__scroll em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ===================== BIG NUMBERS ===================== */
.numbers {
  padding: 60px 0 80px;
  background: #fff;
  position: relative;
}
.numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 49, 154, .05), transparent 70%);
  pointer-events: none;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow-md);
}
.numbers__item {
  position: relative;
  padding: 36px 32px;
  border-right: 1px solid var(--gray-200);
}
.numbers__item:last-child { border-right: none; }
.numbers__value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.03em;
}
.numbers__value--cycle {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.numbers__label {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: .02em;
}
.numbers__line {
  position: absolute;
  bottom: 28px; right: 32px;
  width: 32px; height: 2px;
  background: var(--orange);
}

/* ===================== SECTION HEAD ===================== */
.section-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.section-head .tag { margin-bottom: 22px; }
.section-head__title {
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.02;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.section-head__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}
.section-head--light .section-head__title,
.section-head--light .section-head__sub { color: #fff; }
.section-head--light .section-head__sub { color: rgba(255, 255, 255, .7); }

/* ===================== FROTA ===================== */
.frota {
  padding: 120px 0;
  background: #fff;
}
.frota__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.frota__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px 28px;
  transition: all .45s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.frota__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.frota__card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 49, 154, .08), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.frota__card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 49, 154, .25);
  box-shadow: var(--shadow-md);
}
.frota__card:hover::before { transform: scaleX(1); }
.frota__card:hover::after { opacity: 1; }

.frota__icon {
  position: relative;
  width: 100%;
  height: 92px;
  background: linear-gradient(135deg, rgba(0, 49, 154, .09) 0%, rgba(0, 49, 154, .02) 100%);
  border: 1px solid rgba(0, 49, 154, .12);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 24px;
  overflow: hidden;
  transition: all .5s var(--ease);
}
.frota__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 49, 154, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 49, 154, .07) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .55;
  transition: all .5s var(--ease);
}
.frota__icon::after {
  content: '';
  position: absolute;
  top: 14px; right: 14px;
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--orange);
  opacity: .75;
  transition: all .4s var(--ease);
}
.frota__icon svg {
  position: relative;
  z-index: 2;
  width: 96px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 49, 154, .22));
  transition: transform .55s var(--ease), filter .4s var(--ease);
}
.frota__card:hover .frota__icon {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-color: var(--blue);
  color: #fff;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, .15);
}
.frota__card:hover .frota__icon::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  opacity: .8;
}
.frota__card:hover .frota__icon::after {
  opacity: 1;
  box-shadow: 0 0 18px var(--orange), 0 0 6px var(--orange);
}
.frota__card:hover .frota__icon svg {
  transform: translateX(6px);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .35));
}
.frota__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.frota__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray-500);
  margin: 0 0 24px;
  flex: 1;
}
.frota__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 20px;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0, 49, 154, .06);
  border: 1.5px solid rgba(0, 49, 154, .2);
  border-radius: 100px;
  transition: all .3s var(--ease);
}
.frota__btn svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.frota__btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(0, 49, 154, .45);
}
.frota__btn:hover svg { transform: translateX(4px); }

/* ===================== EQUIPAMENTOS ===================== */
.equip {
  padding: 100px 0 120px;
  background: #fff;
  position: relative;
}
.equip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.equip__item {
  position: relative;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.equip__view {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
}
.equip__view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.equip__view::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 31, 0) 45%, rgba(5, 10, 31, .55) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.equip__zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--blue);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: all .35s var(--ease);
  z-index: 2;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .35);
}
.equip__zoom svg { width: 24px; height: 24px; }
.equip__cta {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px -6px rgba(250, 76, 0, .55);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.equip__cta svg { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.equip__cta:hover {
  background: #d83f00;
  box-shadow: 0 12px 28px -6px rgba(250, 76, 0, .65);
}
.equip__cta:hover svg { transform: translateX(3px); }
.equip__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.equip__item:hover .equip__view img { transform: scale(1.06); }
.equip__item:hover .equip__view::after { opacity: 1; }
.equip__item:hover .equip__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.equip__item:hover .equip__cta,
.equip__item:focus-within .equip__cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (hover: none) {
  .equip__cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.equip__view:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -4px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 31, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 60px 32px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  animation: lbZoom .35s var(--ease);
}
@keyframes lbZoom {
  from { transform: scale(.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
  z-index: 2;
}
.lightbox__nav svg { width: 26px; height: 26px; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(3px); }
@media (max-width: 768px) {
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav svg { width: 20px; height: 20px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}

/* ===================== DILEMA ===================== */
.dilema {
  position: relative;
  padding: 120px 0;
  background: var(--blue-night);
  color: #fff;
  overflow: hidden;
}
.dilema__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 49, 154, .4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(250, 76, 0, .14) 0%, transparent 55%);
  pointer-events: none;
}
.dilema .container { position: relative; }
.dilema__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dilema__card {
  position: relative;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  backdrop-filter: blur(20px);
  transition: all .45s var(--ease);
  overflow: hidden;
}
.dilema__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--orange) 50%, transparent);
  transform: scaleY(0);
  transition: transform .5s var(--ease);
}
.dilema__card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  transform: translateY(-4px);
}
.dilema__card:hover::after { transform: scaleY(1); }

.dilema__num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 88px;
  font-weight: 900;
  color: rgba(250, 76, 0, .9);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.dilema__title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 800;
}
.dilema__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

/* ===================== SOLUÇÃO ===================== */
.solucao {
  padding: 120px 0 40px;
  background: #fff;
  position: relative;
}
.solucao::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 0% 30%, rgba(0, 49, 154, .04), transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 70%, rgba(250, 76, 0, .03), transparent 60%);
  pointer-events: none;
}
.solucao .container { position: relative; }
.solucao__quick-item { background: #fff; }
.solucao__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 80px;
}
.solucao__visual {
  position: relative;
}
.solucao__image {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.solucao__image img { width: 100%; height: 100%; object-fit: cover; }

.solucao__content .tag { margin-bottom: 22px; }
.solucao__content .section-head__title {
  text-align: left;
  font-size: clamp(34px, 3.8vw, 50px);
  margin-bottom: 18px;
}
.solucao__content .section-head__sub {
  text-align: left;
  margin: 0 0 36px;
}

.solucao__quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.solucao__quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-900);
  transition: all .3s var(--ease);
}
.solucao__quick-item span {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.solucao__quick-item:hover {
  border-color: var(--blue);
  transform: translateX(4px);
}

.solucao__check {
  display: grid;
  gap: 14px;
}
.solucao__check li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  color: var(--gray-700);
  font-weight: 500;
}
.solucao__check svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--orange);
  background: rgba(250, 76, 0, .1);
  border-radius: 50%;
  padding: 2px;
}

.solucao__quote {
  position: relative;
  margin: 100px auto 0;
  max-width: 900px;
  padding: 70px 40px 50px;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  letter-spacing: -.015em;
  box-shadow: none;
  overflow: visible;
}
.solucao__quote::before { display: none; }
.solucao__quote::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(250, 76, 0, .06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.solucao__quote-mark {
  width: 52px; height: 52px;
  color: var(--orange);
  margin: 0 auto 28px;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 14px rgba(250, 76, 0, .3));
}
.solucao__quote-text {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
}
.solucao__quote-sign {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.solucao__quote-sign::before,
.solucao__quote-sign::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 76, 0, .55));
}
.solucao__quote-sign::after {
  background: linear-gradient(90deg, rgba(250, 76, 0, .55), transparent);
}
.solucao__quote .text-accent {
  color: var(--orange);
  position: relative; z-index: 2;
}

/* ===================== QUEM SOMOS ===================== */
.quem {
  padding: 70px 0 120px;
  background: #fff;
}
.quem__grid {
  display: grid;
  grid-template-columns: minmax(auto, 480px) 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.quem__visual {
  position: relative;
  max-width: 480px;
  width: 100%;
}
.quem__image {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 5/6;
  box-shadow: var(--shadow-lg);
}
.quem__image img { width: 100%; height: 100%; object-fit: cover; }
.quem__stat {
  position: absolute;
  top: 28px; right: -20px;
  background: var(--blue);
  color: #fff;
  padding: 22px 26px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 18px 40px -12px rgba(0, 49, 154, .5);
}
.quem__stat-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
}
.quem__stat-label {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}

.quem__content .tag { margin-bottom: 22px; }
.quem__content .section-head__title {
  text-align: left;
  font-size: clamp(34px, 3.8vw, 50px);
  margin-bottom: 18px;
}
.quem__content .section-head__sub {
  text-align: left;
  margin: 0;
}

.quem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quem__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: all .45s var(--ease);
  overflow: hidden;
}
.quem__card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.quem__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 49, 154, .2);
}
.quem__card:hover::before { transform: scaleX(1); transform-origin: left; }
.quem__card-icon {
  width: 56px; height: 56px;
  background: rgba(0, 49, 154, .08);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 24px;
  transition: all .4s var(--ease);
}
.quem__card-icon svg { width: 28px; height: 28px; }
.quem__card:hover .quem__card-icon {
  background: var(--orange);
  color: #fff;
}
.quem__card-title {
  font-size: 26px;
  margin-bottom: 14px;
  font-weight: 800;
}
.quem__card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500);
  margin: 0;
}

/* ===================== CTA CENTRAL ===================== */
.cta-central {
  position: relative;
  padding: 120px 0;
  background: var(--blue-night);
  color: #fff;
  overflow: hidden;
}
.cta-central__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-central__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 49, 154, .55), transparent 60%);
  filter: blur(80px);
}
.cta-central__lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(250, 76, 0, .1), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 49, 154, .25), transparent 50%);
}
.cta-central__inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cta-central__inner .tag { margin-bottom: 24px; }
.cta-central__title {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  font-weight: 900;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.cta-central__sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .7);
  margin: 0 auto 40px;
  max-width: 580px;
}

/* ===================== CONTATO ===================== */
.contato {
  padding: 120px 0;
  background: #fff;
  position: relative;
}
.contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 0%, rgba(0, 49, 154, .04), transparent 60%);
  pointer-events: none;
}
.contato .container { position: relative; }
.contato__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}
.contato__cards {
  display: grid;
  gap: 18px;
  align-content: start;
}
.contato__card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  transition: all .35s var(--ease);
}
.contato__card:hover {
  border-color: rgba(0, 49, 154, .25);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.contato__card-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(0, 49, 154, .08);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  transition: all .35s var(--ease);
}
.contato__card-icon svg { width: 24px; height: 24px; }
.contato__card:hover .contato__card-icon {
  background: var(--orange);
  color: #fff;
}
.contato__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contato__card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contato__card-body strong {
  font-size: 17px;
  color: var(--gray-900);
  font-weight: 700;
}
.contato__card-body a,
.contato__card-body span {
  font-size: 14.5px;
  color: var(--gray-500);
  transition: color .25s var(--ease);
}
.contato__card-body a:hover { color: var(--blue); }
.contato__card-body em {
  font-style: normal;
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contato__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  min-height: 480px;
}
.contato__map iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
  min-height: 480px;
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 90px 0 30px;
  background: var(--blue-night);
  color: rgba(255, 255, 255, .7);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 4px;
}
.footer__logo img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(1.25) contrast(1.05);
}
.footer__brand p {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, .65);
  max-width: 360px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.footer__social-link {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  color: rgba(255, 255, 255, .85);
  transition: all .35s var(--ease);
}
.footer__social-link svg { width: 20px; height: 20px; }
.footer__social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(250, 76, 0, .55);
}
.footer__col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 22px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin: 0 0 12px;
  line-height: 1.7;
  transition: color .25s var(--ease);
}
.footer__col a:hover { color: var(--orange); }
.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__contact-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-top: 2px;
}
.footer__contact-icon svg { width: 18px; height: 18px; }
.footer__contact-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.footer__contact-body a,
.footer__contact-body p {
  margin: 0;
  display: block;
}
.footer__cnpj {
  font-size: 12px !important;
  color: rgba(255, 255, 255, .4) !important;
  margin-top: 18px !important;
  letter-spacing: .04em;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}
.footer__legal { font-style: italic; }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 62px; height: 62px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, .5), 0 4px 12px rgba(0, 0, 0, .15);
  transition: all .35s var(--ease);
  isolation: isolate;
}
.wa-float svg {
  width: 30px; height: 30px;
  position: relative;
  z-index: 2;
}
.wa-float:hover {
  transform: scale(1.06);
  background: #1ebd5a;
  box-shadow: 0 14px 36px -6px rgba(37, 211, 102, .65), 0 6px 16px rgba(0, 0, 0, .18);
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .6;
  animation: waPulse 2.2s ease-out infinite;
  z-index: 1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */ @media (max-width: 1100px) { .nav__menu { display: none; } .nav__toggle { display: flex; } .nav__cta { display: none; } .nav__mobile { display: flex; z-index: 99; } .hero { padding: 130px 0 90px; } .frota__grid, .equip__grid, .quem__cards, .dilema__grid { grid-template-columns: repeat(2, 1fr); } .solucao__grid, .quem__grid { grid-template-columns: 1fr; gap: 60px; } .solucao__content .section-head__title, .quem__content .section-head__title { font-size: clamp(30px, 5vw, 44px); } .contato__grid { grid-template-columns: 1fr; } .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } } @media (max-width: 768px) { .container { padding: 0 22px; } .tag { font-size: 10.5px; padding: 6px 12px; letter-spacing: .08em; max-width: 100%; line-height: 1.35; text-align: center; } .hero { padding: 110px 0 70px; } .hero__title { font-size: clamp(28px, 6.5vw, 38px); margin: 18px 0 16px; } .hero__sub { font-size: 14.5px; margin-bottom: 28px; } .hero__ctas { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 40px; width: 100%; } .hero__ctas .btn { justify-content: center; width: 100%; max-width: 380px; padding: 14px 24px; font-size: 14.5px; } .hero__trust { gap: 18px; } .hero__trust-item { font-size: 12.5px; } .hero__trust-item svg { width: 18px; height: 18px; } .hero__scroll { display: none; } .numbers { padding: 40px 0 60px; } .numbers__grid { grid-template-columns: repeat(2, 1fr); padding: 8px; } .numbers__item { padding: 28px 22px; border-right: none; } .numbers__item:nth-child(odd) { border-right: 1px solid var(--gray-200); } .numbers__item:nth-child(1), .numbers__item:nth-child(2) { border-bottom: 1px solid var(--gray-200); } .numbers__line { right: 22px; bottom: 22px; } .frota, .equip, .dilema, .solucao, .quem, .cta-central, .contato { padding: 80px 0; } .section-head { margin-bottom: 50px; } .frota__grid, .equip__grid, .quem__cards, .dilema__grid { grid-template-columns: 1fr; } .frota__card { padding: 32px 26px 24px; } .dilema__card { padding: 36px 28px; } .dilema__num { font-size: 64px; margin-bottom: 18px; } .solucao__grid, .quem__grid { gap: 50px; } .solucao__quote { padding: 50px 20px 36px; } .solucao__quick { grid-template-columns: 1fr; } .quem__stat { right: 0; padding: 18px 22px; } .quem__stat-num { font-size: 36px; } .contato__map { min-height: 380px; } .contato__map iframe { min-height: 380px; } .footer { padding: 70px 0 28px; } .footer__grid { grid-template-columns: 1fr; gap: 40px; } .footer__bottom { text-align: center; justify-content: center; } .wa-float { width: 56px; height: 56px; bottom: 22px; right: 22px; } .wa-float svg { width: 28px; height: 28px; } .nav__brand-img { height: 40px; } .nav--scrolled .nav__brand-img { height: 34px; } } @media (max-width: 420px) { .container { padding: 0 18px; } .hero__title { font-size: 30px; } .hero__sub { font-size: 13.5px; } .hero__ctas .btn { max-width: 320px; padding: 13px 20px; font-size: 13.5px; } .tag { font-size: 9.5px; padding: 5px 10px; letter-spacing: .05em; } .section-head__title { font-size: 32px; } .nav { padding: 14px 0; } .nav__mobile { inset: 68px 0 auto 0; } }
/* ===================== RESPONSIVE FIXES (overrides) ===================== */
@media (max-width: 768px) {
  .contato__card {
    padding: 22px;
    gap: 14px;
    align-items: flex-start;
  }
  .contato__card-icon {
    width: 46px;
    height: 46px;
  }
  .contato__card-icon svg { width: 22px; height: 22px; }
  .contato__card-body {
    min-width: 0;
    flex: 1;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .contato__card-body strong { font-size: 15.5px; }
  .contato__card-body a,
  .contato__card-body span { font-size: 14px; }

  .footer__contact-body {
    min-width: 0;
    flex: 1;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .hero__sub { font-size: 15.5px; }
  .hero__title { font-size: clamp(30px, 7vw, 40px); }
  .section-head__sub { font-size: 16px; line-height: 1.6; }
  .footer__col a,
  .footer__col p { font-size: 14.5px; }

  .wa-float { z-index: 95; }
}

@media (max-width: 420px) {
  .contato__card {
    padding: 18px;
    gap: 12px;
  }
  .contato__card-icon { width: 42px; height: 42px; }
  .contato__card-body strong { font-size: 14.5px; }
  .contato__card-body a,
  .contato__card-body span { font-size: 13.5px; }
  .contato__card-label { font-size: 10.5px; }
}
