:root {
  --blue-950: #03172b;
  --blue-900: #062544;
  --blue-800: #083760;
  --blue-700: #0d4e82;
  --green: #4fc315;
  --green-2: #71db2c;
  --yellow: #ffe135;
  --white: #fff;
  --ice: #f4f9fb;
  --muted: #61768a;
  --text: #10243a;
  --line: rgba(6, 37, 68, 0.12);
  --shadow: 0 24px 70px rgba(3, 23, 43, 0.14);
  --shadow-strong: 0 34px 110px rgba(3, 23, 43, 0.28);
  --radius: 28px;
  --container: min(1180px, calc(100% - 48px));
  --header-h: 86px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  transition: 0.2s;
}
.skip-link:focus {
  top: 16px;
}
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  z-index: 500;
}
.section {
  position: relative;
  padding: 118px 0;
}
.section-dark {
  position: relative;
  color: #fff;
  background: var(--blue-950);
  overflow: hidden;
}
.section-heading {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.problem-section {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.50)),
    url("../img/media-bg.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  letter-spacing: -0.055em;
  line-height: 0.95;
}
h1 {
  font-size: clamp(3rem, 6.25vw, 6.8rem);
  margin-bottom: 22px;
  text-transform: uppercase;
}
h1 span,
h2 span {
  color: var(--green);
}
h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  margin-bottom: 18px;
}
h3 {
  line-height: 1.15;
  font-size: 1.22rem;
  margin-bottom: 10px;
}
p {
  color: #5d7185;
}
.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #06220d;
  box-shadow: 0 16px 42px rgba(79, 195, 21, 0.34);
}
.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.btn-light {
  background: #fff;
  color: var(--blue-950);
}
.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.88rem;
}
.text-link {
  font-weight: 950;
  color: var(--blue-900);
  display: inline-flex;
  margin-top: 8px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 250;
  display: flex;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(3, 23, 43, 0.74),
    rgba(3, 23, 43, 0.22),
    transparent
  );
  transition: 0.25s ease;
}
.site-header.is-scrolled,
.site-header.menu-open {
  height: 74px;
  background: rgba(3, 23, 43, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}
.brand img {
  height: 10rem;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.main-nav > a:not(.btn) {
  position: relative;
  padding: 12px 10px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s;
}
.main-nav > a:is(:hover, .active)::after {
  transform: scaleX(1);
}
.btn-nav {
  background: var(--green);
  color: #052111;
  margin-left: 8px;
}
.menu-toggle {
  display: none;
  align-items: center;
  gap: 5px;
  border: 0;
  color: #fff;
  background: transparent;
  font-weight: 900;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}
.menu-toggle strong {
  margin-left: 6px;
  font-size: 0.88rem;
}
.hero {
  min-height: 940px;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-bg.webp") center/cover no-repeat;
  z-index: -3;
  transform: scale(1.04);
  will-change: transform;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 23, 43, 0.95) 0%,
    rgba(3, 23, 43, 0.88) 31%,
    rgba(3, 23, 43, 0.42) 56%,
    rgba(3, 23, 43, 0.08) 100%
  );
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -1px 0;
  width: 54%;
  height: 170px;
  background: #fff;
  clip-path: polygon(0 38%, 100% 100%, 0 100%);
  z-index: -1;
}
.hero-grid {
  
  grid-template-columns: minmax(520px, 620px) 1fr;
  align-items: center;
  width: var(--container);
}
.hero-copy {
  max-width: 650px;
}
.hero-copy p {
  max-width: 590px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 620px;
}
.hero-points li {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.hero-points strong {
  display: block;
  color: var(--yellow);
  font-size: 1.1rem;
  line-height: 1;
}
.hero-points span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  margin-top: 4px;
}
.hero-card {
  position: absolute;
  right: max(42px, calc((100vw - 1180px) / 2));
  bottom: 80px;
  z-index: 2;
  display: grid;
  gap: 10px;
  min-width: 310px;
  padding: 18px 20px;
  border-radius: 22px;
  color: #fff;
  background: rgba(3, 23, 43, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}
.hero-card span {
  font-size: 0.92rem;
  font-weight: 800;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scroll-cue span {
  display: grid;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}
.scroll-cue span::before {
  content: "";
  width: 4px;
  height: 7px;
  background: #fff;
  border-radius: 99px;
  margin: 7px auto;
  animation: scrollDot 1.5s infinite;
}
@keyframes scrollDot {
  50% {
    transform: translateY(11px);
    opacity: 0.4;
  }
}
.trust-strip {
  position: relative;
  z-index: 8;
  margin-top: -46px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
  overflow: hidden;
}
.trust-grid article {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}
.trust-grid article:last-child {
  border-right: 0;
}
.trust-grid strong {
  display: block;
  color: var(--blue-950);
  font-size: 1rem;
}
.trust-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 5px;
}
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.two-col-wide {
  grid-template-columns: 410px 1fr;
}
.sticky-heading {
  position: sticky;
  top: 120px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card,
.review-card,
.faq-list details {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 55px rgba(3, 23, 43, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.service-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(79, 195, 21, 0.38);
}
.service-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(79, 195, 21, 0.09);
}
.service-card-wide {
  grid-column: 1/-1;
  background: linear-gradient(135deg, #fff, #f0faec);
}
.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #ecffe5;
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.method-section {
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(79, 195, 21, 0.18),
      transparent 34%
    ),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, 0.25));
  opacity: 0.75;
}
.timeline-step {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}
.timeline-step > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #06220d;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(79, 195, 21, 0.25);
}
.timeline-step h3 {
  color: #fff;
}
.vehicles-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #06130d;
}

.vehicles-section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -2;
}

/* filtro sobre o vídeo */
.vehicles-section-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.50) 45%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

/* garante que o conteúdo fique acima do vídeo */
.vehicles-section .container {
  position: relative;
  z-index: 2;

}
.vehicle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(420px, 0.83fr);
  gap: 48px;
  align-items: center;
}
.vehicle-visual {
  position: relative;
}
.vehicle-visual::before {
  content: "";
  position: absolute;
  inset: 6% -5% -7% 7%;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  transform: rotate(-2deg);
  z-index: 0;
}
.vehicle-visual img {
  position: relative;
  z-index: 1;
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16/9;
  object-fit: cover;
}
.vehicle-copy {
  padding: 20px 0;
}
.vehicle-copy p {
  font-size: 1.06rem;
}
.vehicle-tabs {
  margin: 30px 0 26px;
  padding: 12px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #eef5f8;
}
.tab-buttons button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--blue-900);
  padding: 12px 10px;
  font-weight: 950;
  cursor: pointer;
}
.tab-buttons button.active {
  background: var(--green);
  color: #052111;
}
.tab-panel {
  display: none;
  padding: 24px 16px 12px;
}
.tab-panel.active {
  display: block;
}
.tab-panel h3 {
  color: var(--blue-950);
}
.proof-section {
  background: #fff;
}
.proof-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.proof-header h2 {
  max-width: 720px;
}
.score-box {
  min-width: 190px;
  text-align: center;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  box-shadow: var(--shadow);
  color: #fff;
}
.score-box strong {
  font-size: 3.3rem;
  line-height: 1;
}
.score-box span {
  display: block;
  color: var(--yellow);
  letter-spacing: 0.08em;
}
.score-box small {
  color: rgba(255, 255, 255, 0.7);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card strong {
  display: block;
  color: var(--blue-950);
}
.review-card span {
  display: block;
  color: #f2a600;
  font-weight: 950;
  margin: 8px 0 12px;
}
.media-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) 0;
}

.media-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 33, 66, 0.94), rgba(0, 63, 92, 0.82)),
    url("../img/bg-media.webp") center / cover no-repeat;
  z-index: 0;
}

.media-section .container {
  position: relative;
  z-index: 1;
}

.video-grid {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.video-grid-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  cursor: pointer;
  background: #061d36;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #061d36;
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 33, 66, 0.08), rgba(0, 20, 40, 0.86)),
    linear-gradient(135deg, rgba(48, 180, 38, 0.18), rgba(255, 216, 0, 0.08));
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  pointer-events: none;
}

.video-card:hover video {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.video-play {
  position: absolute;
  left: 24px;
  bottom: 72px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #08233f;
  background: linear-gradient(135deg, #ffd800, #35c52b);
  font-size: 21px;
  box-shadow: 0 16px 34px rgba(53, 197, 43, 0.26);
  transition: transform 0.35s ease;
}

.video-card:hover .video-play {
  transform: scale(1.08);
}

.video-card strong {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  color: #ffffff;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.25;
  text-align: left;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 13, 27, 0.86);
  backdrop-filter: blur(10px);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.video-modal__content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #08233f;
  background: #ffffff;
  font-size: 30px;
  line-height: 1;
  z-index: 2;
}

body.video-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .video-grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .video-grid-6 {
    grid-template-columns: 1fr;
  }

  .video-card {
    min-height: 220px;
    border-radius: 22px;
  }

  .video-play {
    width: 52px;
    height: 52px;
    bottom: 68px;
  }

  .video-modal {
    padding: 16px;
  }

  .video-modal__content {
    border-radius: 18px;
  }

  .video-modal__close {
    top: -48px;
    right: 0;
  }
}
.gallery-section {
  background: #f7fbfd;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 235px;
  gap: 16px;
}
.gallery-item {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  background: #ddd;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.faq-section {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.50)),
    url("../img/hero-bg.webp");
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  padding: 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 950;
  color: var(--blue-950);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--green);
}
.faq-list details[open] summary::after {
  content: "–";
}
.faq-list p {
  padding: 0 24px 22px;
  margin: 0;
}
.final-cta {
  padding: 116px 0;
  background: linear-gradient(135deg, var(--green), #86e944);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(255, 255, 255, 0.45),
      transparent 24%
    ),
    radial-gradient(circle at 80% 80%, rgba(6, 37, 68, 0.24), transparent 30%);
}
.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 980px;
  margin: auto;
  border-radius: 40px;
  padding: 72px 54px;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: #fff;
  box-shadow: var(--shadow-strong);
}
.cta-card::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 21, 0.32), transparent 64%);
}
.cta-card p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}
.center-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.site-footer {
  background: var(--blue-950);
  color: #dbeafe;
  padding: 56px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 48px;
}
.site-footer img {
  height: 10rem;
  width: auto;
  margin-bottom: 18px;
}
.site-footer p,
.site-footer span,
.site-footer a {
  color: #a9c1d5;
}
.site-footer h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
}
.site-footer a {
  display: block;
  margin: 0.38rem 0;
}
.footer-bottom {
  text-align: center;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #86a4ba;
  font-size: 0.88rem;
}
.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  z-index: 90;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;
  border-radius: 50%;

  color: #ffffff;
  background: #25d366;
  box-shadow:
    0 18px 38px rgba(37, 211, 102, 0.36),
    0 8px 18px rgba(0, 0, 0, 0.22);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  display: block;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  background: #20bf5a;
  box-shadow:
    0 22px 46px rgba(37, 211, 102, 0.46),
    0 10px 22px rgba(0, 0, 0, 0.26);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid #ffd800;
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp svg {
    width: 31px;
    height: 31px;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
  place-items: center;
  background: rgba(3, 23, 43, 0.88);
  padding: 24px;
}
.modal.is-open {
  display: grid;
}
.modal-content {
  width: min(1060px, 100%);
  max-height: 86svh;
}
.modal-content img {
  width: 100%;
  max-height: 86svh;
  object-fit: contain;
  border-radius: 22px;
}
.modal-content iframe {
  width: min(1060px, 100%);
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 22px;
  background: #000;
}
.modal-close {
  position: fixed;
  right: 22px;
  top: 20px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #061e37;
  font-size: 2rem;
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  
}
@media (min-width: 1300px) {
  :root {
    --container: 1220px;
  }
  .hero {
    min-height: 960px;
  }
  .hero-grid {
    grid-template-columns: 660px 1fr;
  }
}
@media (max-width: 1080px) {
  :root {
    --header-h: 74px;
  }
  .section {
    padding: 92px 0;
  }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(3, 23, 43, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    padding: 10px 12px;
  }
  .btn-nav {
    margin-left: 0;
  }
  .menu-toggle {
    display: flex;
  }
  .site-header {
    height: var(--header-h);
    background: rgba(3, 23, 43, 0.85);
    backdrop-filter: blur(14px);
  }
  .brand img {
    height: 100px;
  }
  .hero {
    min-height: 780px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid article:nth-child(2) {
    border-right: 0;
  }
  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .two-col,
  .two-col-wide,
  .vehicle-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .sticky-heading {
    position: static;
  }
  .service-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before {
    display: none;
  }
  .vehicle-copy {
    order: -1;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-card:first-child {
    grid-row: auto;
    grid-column: 1/-1;
    min-height: 400px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  :root {
    --container: calc(100% - 28px);
    --header-h: 68px;
  }
  .section {
    padding: 74px 0;
  }
 
  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .brand {
    min-width: 0;
  }
  .brand img {
    height: 100px;
  }
  .hero {
    min-height: 92svh;
    align-items: flex-end;
    padding-bottom: 86px;
  }
  .hero-bg {
    background-position: 63% center;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(3, 23, 43, 0.46) 0%,
      rgba(3, 23, 43, 0.88) 52%,
      rgba(3, 23, 43, 0.97) 100%
    );
  }
  .hero-copy p {
    font-size: 1rem;
  }
  .hero-actions,
  .center-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .hero-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-points li {
    padding: 14px;
  }
  .trust-strip {
    margin-top: 0;
  }
  .trust-grid,
  .service-grid,
  .timeline,
  .reviews-grid,
  .video-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid article {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid article:last-child {
    border-bottom: 0;
  }
  .service-card-wide,
  .gallery-item.big,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }
  .vehicle-visual img {
    border-radius: 24px;
  }
  .vehicle-visual::before {
    border-radius: 28px;
  }
  .tab-buttons {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .video-card,
  .video-card:first-child {
    min-height: 300px;
  }
  .gallery-grid {
    grid-auto-rows: 250px;
  }
  .proof-header {
    display: block;
  }
  .score-box {
    margin-top: 22px;
  }
  .cta-card {
    padding: 48px 22px;
    border-radius: 30px;
  }
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }
  .scroll-cue {
    display: none;
  }
  .modal {
    padding: 12px;
  }
  .modal-close {
    right: 12px;
    top: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-bg,
  .media-bg {
    transform: none !important;
  }
}
