﻿:root {
  --navy-950: #020816;
  --navy-900: #061225;
  --navy-850: #0a1a33;
  --navy-800: #102847;
  --navy-700: #183b67;
  --steel-500: #70859f;
  --steel-300: #a5b5c9;
  --white: #f4f8ff;
  --brand-blue: #3f80ff;
  --brand-blue-dark: #2458b6;
  --brand-blue-soft: #b9d8ff;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--navy-900);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--brand-blue);
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  position: relative;
  z-index: 50;
  min-height: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: #03080f;
}

.topbar__content {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--steel-300);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.topbar__content p {
  margin: 0;
}

.topbar__content a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue-soft);
}

.topbar__content svg {
  width: 14px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 5px rgba(63, 128, 255, .12), 0 0 20px rgba(63, 128, 255, .55);
}

.header {
  position: absolute;
  z-index: 40;
  top: 38px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: background .3s ease, backdrop-filter .3s ease, transform .3s ease;
}

.header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(3, 9, 18, .88);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .2);
}

.header__content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  display: block;
  width: 102px;
  height: 68px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav > a:not(.button) {
  position: relative;
  color: #ced8e2;
  font-size: .86rem;
  font-weight: 700;
}

.nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav > a:not(.button):hover::after,
.nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  color: var(--white);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: .78rem;
}

.button--outline {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .04);
}

.button--outline:hover {
  border-color: var(--brand-blue);
  background: rgba(63, 128, 255, .07);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #4d8dff 0%, #285fbd 100%);
  box-shadow: 0 15px 35px rgba(63, 128, 255, .2);
}

.button--primary:hover {
  background: linear-gradient(135deg, #64a0ff 0%, #316bcf 100%);
  box-shadow: 0 18px 42px rgba(63, 128, 255, .3);
}

.hero__actions .button--primary,
.request-card .button--primary,
.final-cta .button--light,
.floating-whatsapp {
  animation: premium-pulse 2.4s ease-out infinite;
}

.request-card .button--primary {
  animation-delay: .6s;
}

.floating-whatsapp {
  animation-delay: 1.2s;
}

@keyframes premium-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(63, 128, 255, .38), 0 15px 35px rgba(20, 73, 158, .22);
  }
  55% {
    box-shadow: 0 0 0 9px rgba(63, 128, 255, 0), 0 20px 42px rgba(20, 73, 158, .32);
  }
}

.button--ghost {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(6, 15, 25, .45);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .1);
}

.button--full {
  width: 100%;
  border: 0;
}

.menu-toggle {
  width: 46px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: white;
  background: rgba(255, 255, 255, .05);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--navy-950);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("assets/pro/web/hero-guincho-premium.webp");
  background-position: 63% center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.01);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(3, 9, 18, .98) 0%, rgba(3, 9, 18, .88) 35%, rgba(3, 9, 18, .25) 72%, rgba(3, 9, 18, .1) 100%),
    linear-gradient(180deg, rgba(3, 9, 18, .12) 50%, var(--navy-950) 100%);
}

.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 850px;
  padding-top: 164px;
  padding-bottom: 94px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .68fr);
  align-items: center;
  gap: 92px;
}

.hero__copy {
  max-width: 660px;
}

.eyebrow {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #c8d5df;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow__icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63, 128, 255, .4);
  border-radius: 50%;
  color: var(--brand-blue);
  background: rgba(63, 128, 255, .08);
}

.eyebrow__icon svg {
  width: 16px;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.4rem, 5.3vw, 5.15rem);
  line-height: .98;
}

.hero h1 span,
.section h2 span,
.final-cta h2 span {
  color: var(--brand-blue);
}

.hero__lead {
  margin: 22px 0 0;
  color: #dce7ef;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -.025em;
}

.hero__description {
  max-width: 520px;
  margin: 13px 0 0;
  color: var(--steel-300);
  font-size: 1rem;
  line-height: 1.75;
}

.hero__actions {
  margin-top: 33px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  margin-top: 38px;
  padding-top: 27px;
  display: flex;
  gap: 35px;
  border-top: 1px solid var(--line);
}

.hero__trust > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--steel-300);
  font-size: .72rem;
  line-height: 1.45;
}

.hero__trust svg {
  width: 24px;
  color: var(--brand-blue);
}

.hero__trust strong {
  display: block;
  color: var(--white);
  font-size: .82rem;
}

.request-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(13, 30, 46, .93), rgba(5, 14, 24, .87));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.request-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 34px;
  width: 62px;
  height: 3px;
  background: var(--brand-blue);
  box-shadow: 0 0 18px rgba(63, 128, 255, .6);
}

.request-card__step {
  color: var(--brand-blue);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.request-card h2 {
  margin: 10px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.85rem;
  letter-spacing: -.035em;
}

.request-card__header > p {
  margin: 0 0 26px;
  color: var(--steel-300);
  font-size: .79rem;
  line-height: 1.6;
}

.request-card label {
  display: block;
  margin: 16px 0 8px;
  color: #c9d4dd;
  font-size: .7rem;
  font-weight: 700;
}

.input-wrap {
  position: relative;
}

.input-wrap > svg {
  position: absolute;
  z-index: 1;
  left: 15px;
  top: 50%;
  width: 19px;
  color: var(--brand-blue);
  transform: translateY(-50%);
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  height: 53px;
  padding: 0 15px 0 46px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  outline: none;
  color: var(--white);
  background: rgba(2, 8, 14, .56);
  font-size: .78rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.input-wrap input::placeholder {
  color: #748493;
}

.input-wrap select {
  appearance: none;
}

.input-wrap--select::after {
  content: "";
  position: absolute;
  right: 17px;
  top: calc(50% - 4px);
  width: 7px;
  height: 7px;
  border-right: 1px solid #8da0b0;
  border-bottom: 1px solid #8da0b0;
  pointer-events: none;
  transform: rotate(45deg);
}

.input-wrap select option {
  color: var(--white);
  background: var(--navy-800);
}

.input-wrap input:focus,
.input-wrap select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(63, 128, 255, .12);
}

.request-card .button {
  margin-top: 23px;
}

.form-note {
  margin: 13px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #8494a3;
  font-size: .64rem;
}

.form-note svg {
  width: 14px;
  color: var(--brand-blue);
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #708294;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll span {
  position: relative;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.hero__scroll span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--brand-blue);
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  to { top: 120%; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal .7s cubic-bezier(.2,.7,.2,1) forwards;
}

.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .15s; }
.reveal:nth-child(4) { animation-delay: .22s; }
.reveal:nth-child(5) { animation-delay: .3s; }
.reveal:nth-child(6) { animation-delay: .38s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #07101b;
}

.trust-strip__grid {
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip__grid > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-strip__grid > div + div {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.trust-strip__number {
  color: rgba(63, 128, 255, .28);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.trust-strip p {
  margin: 0;
  color: #758696;
  font-size: .74rem;
  line-height: 1.65;
}

.trust-strip strong {
  color: #eaf2f8;
  font-size: .86rem;
}

.section {
  padding: 116px 0;
}

.section-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1.2fr .55fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.coverage h2 {
  max-width: 700px;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  line-height: 1.06;
}

.overline {
  margin-bottom: 16px;
  display: block;
  color: var(--brand-blue);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-heading > p,
.coverage__content > p {
  margin: 0;
  color: var(--steel-300);
  font-size: .88rem;
  line-height: 1.8;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 5%, rgba(31, 91, 143, .13), transparent 35%),
    var(--navy-900);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, .025);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(63, 128, 255, .35);
  background: rgba(255, 255, 255, .045);
}

.service-card--featured {
  background: linear-gradient(145deg, rgba(63, 128, 255, .1), rgba(255,255,255,.025));
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63, 128, 255, .25);
  border-radius: 8px;
  color: var(--brand-blue);
  background: rgba(63, 128, 255, .06);
}

.service-card__icon svg {
  width: 26px;
}

.service-card > span {
  position: absolute;
  top: 31px;
  right: 31px;
  color: #415162;
  font-family: "Space Grotesk", sans-serif;
  font-size: .77rem;
}

.service-card h3 {
  margin: 44px 0 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: #8798a8;
  font-size: .8rem;
  line-height: 1.75;
}

.service-card > a {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dbe6ee;
  font-size: .72rem;
  font-weight: 800;
}

.service-card > a svg,
.text-link svg,
.final-cta__whatsapp svg {
  width: 16px;
  color: var(--brand-blue);
  transition: transform .2s ease;
}

.service-card > a:hover svg,
.text-link:hover svg,
.final-cta__whatsapp:hover svg {
  transform: translateX(5px);
}

.fleet {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 10%, rgba(63, 128, 255, .06), transparent 30%),
    #08121e;
}

.fleet__gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: repeat(2, 255px);
  gap: 14px;
}

.fleet__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--navy-950);
}

.fleet__item--main {
  grid-row: 1 / 3;
}

.fleet__item:last-child {
  grid-column: 2 / 4;
}

.fleet__item picture {
  width: 100%;
  height: 100%;
  display: block;
}

.fleet__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.fleet__item--main img {
  object-position: 58% center;
}

.fleet__item:hover img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.04);
}

.fleet__item::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(3, 9, 18, .88));
}

.fleet__item figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.fleet__item figcaption span {
  font-family: "Space Grotesk", sans-serif;
  font-size: .93rem;
  font-weight: 700;
}

.fleet__item figcaption small {
  color: #9eb0c1;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.coverage {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #050d17;
}

.coverage__grid {
  display: grid;
  grid-template-columns: 1.05fr .9fr;
  align-items: center;
  gap: 100px;
}

.coverage__glow {
  position: absolute;
  left: 14%;
  top: 40%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(26, 109, 159, .12);
  filter: blur(80px);
}

.coverage__visual {
  min-height: 470px;
  display: grid;
  place-items: center;
}

.radar {
  position: relative;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(74, 120, 151, .17);
  border-radius: 50%;
  background:
    linear-gradient(rgba(75, 111, 139, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 111, 139, .11) 1px, transparent 1px);
  background-size: 43px 43px;
  box-shadow: inset 0 0 80px rgba(12, 47, 71, .28), 0 0 90px rgba(0,0,0,.25);
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  background: rgba(106, 144, 169, .14);
}

.radar::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.radar::after {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}

.radar__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(85, 138, 173, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar__circle--one { width: 74%; height: 74%; }
.radar__circle--two { width: 48%; height: 48%; }
.radar__circle--three { width: 22%; height: 22%; }

.radar__scan {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  animation: radar 9s linear infinite;
}

.radar__scan::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  background: linear-gradient(35deg, rgba(63, 128, 255, .13), transparent 62%);
  transform-origin: 0 0;
}

@keyframes radar {
  to { transform: rotate(360deg); }
}

.radar__center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 7px solid rgba(63, 128, 255, .12);
  border-radius: 50%;
  color: #07162f;
  background: var(--brand-blue);
  background-clip: padding-box;
  box-shadow: 0 0 28px rgba(63, 128, 255, .35);
  transform: translate(-50%, -50%);
}

.radar__center svg {
  width: 22px;
}

.radar__point {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #d9e6ed;
  font-size: .67rem;
  font-weight: 800;
  white-space: nowrap;
}

.radar__point::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #07111d;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(63, 128, 255, .15);
}

.radar__point small {
  color: #6e8192;
  font-size: .58rem;
}

.radar__point--a { left: 8%; top: 29%; }
.radar__point--b { right: 5%; top: 22%; }
.radar__point--c { left: 14%; bottom: 21%; }
.radar__point--d { right: 3%; bottom: 28%; }

.coverage__content > p {
  max-width: 480px;
  margin-top: 22px;
}

.coverage__cities {
  margin: 34px 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.coverage__cities > div {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coverage__cities span {
  width: 30px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  color: var(--brand-blue);
  background: rgba(63, 128, 255, .08);
  font-size: .56rem;
  font-weight: 800;
}

.coverage__cities strong {
  font-size: .75rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dce7ef;
  font-size: .73rem;
  font-weight: 800;
}

.process {
  background:
    radial-gradient(circle at 50% 100%, rgba(24, 90, 137, .1), transparent 37%),
    var(--navy-900);
}

.section-heading--center {
  max-width: 700px;
  margin-inline: auto;
  display: block;
  text-align: center;
}

.section-heading--center h2 {
  margin-inline: auto;
}

.section-heading--center > p {
  margin-top: 18px;
}

.process__list {
  position: relative;
  margin: 76px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process__list::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 17%;
  right: 17%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63,128,255,.4), rgba(63,128,255,.4), transparent);
}

.process__list li {
  position: relative;
  padding: 0 35px;
  text-align: center;
}

.process__icon {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63, 128, 255, .28);
  border-radius: 50%;
  color: var(--brand-blue);
  background: var(--navy-900);
  box-shadow: 0 0 0 10px var(--navy-900);
}

.process__icon svg {
  width: 28px;
}

.process__number {
  position: absolute;
  top: -15px;
  left: calc(50% + 30px);
  z-index: 3;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07162f;
  background: var(--brand-blue);
  font-size: .55rem;
  font-weight: 800;
}

.process h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
}

.process p {
  margin: 0;
  color: #8293a2;
  font-size: .76rem;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: var(--white);
  border-top: 1px solid rgba(137, 181, 255, .3);
  border-bottom: 1px solid rgba(137, 181, 255, .2);
  background:
    radial-gradient(circle at 88% 15%, rgba(138, 187, 255, .28), transparent 30%),
    linear-gradient(135deg, #0c2c59 0%, #174f96 52%, #0a2751 100%);
}

.final-cta__pattern {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(0,0,0,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.3) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent);
}

.final-cta__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta .overline {
  color: #b9d8ff;
}

.final-cta h2 {
  max-width: 720px;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.final-cta h2 span {
  color: #b9d8ff;
  opacity: 1;
}

.final-cta p {
  margin: 19px 0 0;
  color: #c4d6eb;
  font-size: .85rem;
}

.final-cta__actions {
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}

.button--light {
  color: #0a2344;
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(1, 8, 20, .24);
}

.final-cta__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff;
  font-size: .7rem;
  font-weight: 800;
}

.final-cta__whatsapp svg {
  color: #b9d8ff;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--navy-950);
}

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

.brand--footer img {
  width: 120px;
  height: 82px;
  opacity: .9;
}

.footer__legal,
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #687988;
  font-size: .65rem;
  line-height: 1.5;
}

.footer__legal {
  text-align: center;
}

.footer__legal strong {
  color: #aebbc6;
}

.footer__legal a {
  transition: color .2s ease;
}

.footer__legal a:hover {
  color: var(--brand-blue);
}

.footer__address {
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 35;
  right: 22px;
  bottom: 22px;
  min-height: 50px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 50px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(135deg, #4d8dff 0%, #285fbd 100%);
  box-shadow: 0 12px 35px rgba(0,0,0,.3), 0 0 0 5px rgba(63,128,255,.1);
  font-size: .7rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #64a0ff 0%, #316bcf 100%);
}

.floating-whatsapp svg {
  width: 20px;
}

@media (max-width: 1040px) {
  .hero__content {
    grid-template-columns: 1fr .72fr;
    gap: 40px;
  }

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

  .coverage__grid {
    gap: 50px;
  }

  .radar {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 860px) {
  .header__content {
    min-height: 72px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 110px 0 auto;
    padding: 28px 20px 34px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 9, 18, .98);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
  }

  .header.is-scrolled .nav {
    inset: 72px 0 auto;
  }

  .menu-open .nav {
    transform: translateY(0);
    opacity: 1;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: auto;
    padding-top: 165px;
    padding-bottom: 80px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__copy {
    max-width: 690px;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(3, 9, 18, .96), rgba(3, 9, 18, .52)),
      linear-gradient(180deg, rgba(3, 9, 18, .08) 45%, var(--navy-950) 100%);
  }

  .request-card {
    max-width: 580px;
  }

  .hero__scroll {
    display: none;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .trust-strip__grid > div {
    min-height: 82px;
  }

  .trust-strip__grid > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p {
    max-width: 560px;
  }

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

  .fleet__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 250px 250px;
  }

  .fleet__item--main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .fleet__item:last-child {
    grid-column: 1 / 3;
  }

  .service-card {
    min-height: 300px;
  }

  .coverage__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .coverage__content {
    order: -1;
  }

  .coverage__visual {
    min-height: 390px;
  }

  .process__list {
    gap: 35px;
  }

  .process__list li {
    padding: 0 10px;
  }

  .final-cta__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

  .final-cta__actions {
    min-width: 270px;
  }
}

@media (max-width: 600px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .topbar__content {
    min-height: 42px;
    justify-content: center;
  }

  .topbar__content p {
    display: none;
  }

  .header {
    top: 42px;
  }

  .header__content {
    min-height: 68px;
  }

  .brand img {
    width: 88px;
    height: 60px;
  }

  .nav {
    inset: 110px 0 auto;
  }

  .header.is-scrolled .nav {
    inset: 68px 0 auto;
  }

  .hero__media {
    inset: 0 0 auto;
    height: 100vh;
    height: 100svh;
    min-height: 760px;
    background-image: url("assets/pro/mobile/web/hero-guincho-frontal-mobile-v2.webp");
    background-position: center center;
    background-size: cover;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(3, 9, 18, .2) 0%, rgba(3, 9, 18, .65) 31%, rgba(3, 9, 18, .98) 63%, var(--navy-950) 100%);
  }

  .hero__content {
    padding-top: 280px;
    padding-bottom: 64px;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.6rem);
  }

  .hero__lead {
    font-size: 1.18rem;
  }

  .hero__description {
    font-size: .88rem;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .request-card {
    padding: 28px 21px;
  }

  .trust-strip__number {
    min-width: 55px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .coverage h2 {
    font-size: 2.25rem;
  }

  .service-card {
    min-height: 315px;
    padding: 27px;
  }

  .fleet__gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .fleet__item--main,
  .fleet__item:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .fleet__item {
    aspect-ratio: 4 / 5;
  }

  .fleet__item figcaption {
    left: 18px;
    right: 18px;
    bottom: 17px;
  }

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

  .coverage__visual {
    min-height: 320px;
  }

  .radar {
    width: 310px;
    height: 310px;
  }

  .radar__point--a { left: 2%; }
  .radar__point--b { right: -2%; }
  .radar__point--c { left: 5%; }
  .radar__point--d { right: -5%; }

  .process__list {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .process__list::before {
    top: 50px;
    bottom: 50px;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(transparent, rgba(63,128,255,.35), transparent);
  }

  .process__list li {
    padding: 0 25px 10px;
  }

  .process__icon {
    box-shadow: 0 0 0 10px var(--navy-900);
  }

  .final-cta {
    padding: 64px 0;
  }

  .final-cta h2 {
    font-size: 2.35rem;
  }

  .final-cta__actions {
    width: 100%;
    min-width: 0;
  }

  .footer__content {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 15px;
  }

  .footer__legal,
  .footer__address {
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
