:root {
  --red: #0878df;
  --red-dark: #0453a8;
  --dark: #070a0f;
  --dark-2: #0d121a;
  --ink: #151a22;
  --muted: #6f747d;
  --light: #f3f6f9;
  --line: #dce2e8;
  --white: #fff;
  --green: #25d366;
  --font-display: 'Open Sans', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --container: 1180px
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%
}

button,
input,
textarea {
  font: inherit
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 84px;
  background: rgba(12, 13, 16, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: .3s
}

.header.scrolled {
  height: 72px;
  background: rgba(12, 13, 16, .96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .16)
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1
}

.brand-mark {
  width: 46px;
  height: 40px;
  color: var(--red);
  display: flex
}

.brand-mark svg {
  width: 100%
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .08em
}

.brand small {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: .36em;
  color: #adb0b6
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto
}

.nav a {
  position: relative;
  color: #babdc3;
  font-size: 14px;
  font-weight: 600;
  transition: .25s
}

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--red);
  transition: .25s
}

.nav a:hover,
.nav a.active {
  color: #fff
}

.nav a:hover:after,
.nav a.active:after {
  right: 0
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: 13px;
  font-weight: 700;
  transition: .25s
}

.nav-cta svg {
  width: 18px;
  color: var(--green)
}

.nav-cta:hover {
  background: #fff;
  color: var(--dark)
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 34px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: .3s
}

.hero {
  position: relative;
  min-height: 800px;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 84px;
  background: var(--dark);
  color: #fff;
  overflow: hidden
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(30deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 72px 72px
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(8, 120, 223, .11);
  filter: blur(90px);
  right: -250px;
  top: -180px
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 700;
  color: #aeb1b7;
  margin-bottom: 24px
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--red)
}

.eyebrow.dark {
  color: #737780
}

.hero h1,
.section h2,
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 700
}

.hero h1 em,
.section h2 em,
.cta-band h2 em {
  font-style: normal;
  color: var(--red)
}

.hero-copy>p {
  font-size: 18px;
  line-height: 1.75;
  color: #b6b9c0;
  max-width: 580px;
  margin: 28px 0 35px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 35px rgba(8, 120, 223, .22)
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px)
}

.btn-link {
  padding: 0;
  color: #d5d7da
}

.btn-link:hover {
  color: #fff
}

.btn span,
.text-link span {
  font-size: 20px
}

.hero-trust {
  display: flex;
  gap: 40px;
  margin-top: 55px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.hero-trust div {
  display: flex;
  flex-direction: column
}

.hero-trust strong {
  font-family: var(--font-display);
  font-size: 18px
}

.hero-trust span {
  color: #b9b9b9;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em
}

.hero-visual {
  position: relative;
  height: 565px
}

.image-frame {
  height: 100%;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
  background: #1b1d22
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.05)
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 13, 16, .6), transparent 55%);
  pointer-events: none
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  background: rgba(22, 24, 29, .9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .25)
}

.floating-card small {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #90949b
}

.floating-card strong {
  display: block;
  font-size: 13px
}

.card-top {
  top: 48px;
  right: -30px
}

.card-bottom {
  bottom: 50px;
  left: -35px
}

.card-bottom svg {
  width: 31px;
  color: var(--red)
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(37, 211, 102, .14)
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 14px
}

.scroll-hint span {
  position: absolute;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: #fff;
  left: 10px;
  top: 8px;
  animation: scroll 1.8s infinite
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0)
  }

  30% {
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: translateY(15px)
  }
}

.benefits {
  background: #fff;
  border-bottom: 1px solid #e8e8e6
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 31px 22px;
  border-right: 1px solid #e8e8e6
}

.benefits article:first-child {
  border-left: 1px solid #e8e8e6
}

.benefit-icon {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  width: 32px
}

.benefits strong {
  font-size: 13px
}

.benefits p {
  font-size: 11px;
  color: #8a8d93;
  line-height: 1.4
}

.section {
  padding: 125px 0
}

.about {
  background: var(--light)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center
}

.about-visual {
  height: 560px;
  position: relative
}

.about-shape {
  position: absolute;
  inset: 0 45px 35px 0;
  background: var(--dark);
  clip-path: polygon(0 0, 87% 0, 100% 13%, 100% 100%, 13% 100%, 0 87%)
}

.about-shape:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 35%, rgba(8, 120, 223, .22), transparent 35%), linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, .04) 48% 50%, transparent 50%)
}

.about-card-main {
  position: absolute;
  z-index: 1;
  left: 55px;
  top: 105px;
  width: 300px;
  color: #fff
}

.about-card-main span {
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--red)
}

.about-card-main strong {
  display: block;
  font-family: var(--font-display);
  font-size: 43px;
  line-height: 1.15;
  margin: 20px 0
}

.about-card-main p {
  font-size: 14px;
  color: #92969d
}

.about-seal {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 175px;
  height: 175px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%)
}

.about-seal strong {
  font-family: var(--font-display);
  font-size: 43px
}

.about-seal span {
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .1em
}

.section-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
  color: var(--ink);
  margin-bottom: 30px
}

.section-copy>p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 17px
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
  list-style: none;
  margin: 30px 0
}

.check-list li {
  font-weight: 600;
  font-size: 13px
}

.check-list span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: rgba(8, 120, 223, .1);
  color: var(--red);
  margin-right: 8px
}

.text-link {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px
}

.text-link:hover {
  color: var(--red);
  border-color: var(--red)
}

.products {
  background: var(--dark);
  color: #fff
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px
}

.section-heading h2 {
  font-size: clamp(40px, 4.5vw, 62px)
}

.section-heading>p {
  max-width: 415px;
  color: #92959c;
  padding-bottom: 8px
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-left: 1px solid rgba(255, 255, 255, .12)
}

.product-card {
  position: relative;
  height: 320px;
  min-height: 0;
  max-height: 320px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: .35s;
  overflow: hidden
}

.product-card:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: var(--red);
  transition: .35s
}

.product-card>* {
  position: relative;
  z-index: 1
}

.product-card:hover {
  transform: translateY(-5px)
}

.product-card:hover:before {
  height: 100%
}

.product-number {
  font-family: var(--font-display);
  font-size: 11px;
  color: #62666f;
  letter-spacing: .1em
}

.product-icon {
  height: 72px;
  margin: 10px 0 16px;
  color: var(--red)
}

.product-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2
}

.product-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: filter .25s ease
}

.product-card:hover .product-icon {
  color: #fff
}

.product-card:hover .product-icon img {
  filter: brightness(0) invert(1)
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 25px;
  margin-bottom: 9px
}

.product-card p {
  color: #858991;
  font-size: 13px;
  max-width: 270px
}

.product-card:hover p,
.product-card:hover .product-number {
  color: rgba(255, 255, 255, .72)
}

.card-link {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: #b5b8be
}

.product-card:hover .card-link {
  color: #fff
}

.card-link b {
  font-size: 18px
}

.featured-product {
  background: #17191e
}

.more-icon {
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 200;
  line-height: 1;
  color: var(--red);
  margin: 7px 0 12px
}

.vehicle-showcase {
  margin-top: 25px;
  padding-top: 46px
}

.vehicle-showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px
}

.vehicle-showcase-head h3 {
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.12
}

.vehicle-title-accent {
  color: var(--red)
}

.vehicle-controls {
  display: flex;
  gap: 8px
}

.vehicle-control {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: background .2s, border-color .2s, opacity .2s
}

.vehicle-control:hover:not(:disabled),
.vehicle-control:focus-visible {
  border-color: var(--red);
  background: var(--red)
}

.vehicle-control:disabled {
  cursor: default;
  opacity: .3
}

.vehicle-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  outline: none
}

.vehicle-slider::-webkit-scrollbar {
  display: none
}

.vehicle-slider:focus-visible {
  box-shadow: 0 0 0 2px var(--red)
}

.vehicle-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #111318;
  scroll-snap-align: start
}

.vehicle-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .35s ease
}

.vehicle-card:hover .vehicle-photo {
  transform: scale(1.025)
}

.vehicle-card figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 22px;
  background: #111318
}

.vehicle-details {
  min-width: 0
}

.vehicle-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.2
}

.vehicle-card p {
  margin-top: 6px;
  color: #858991;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.vehicle-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .2s
}

.vehicle-cta:hover,
.vehicle-cta:focus-visible {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px)
}

.vehicle-cta span {
  font-size: 15px;
  line-height: 1
}

.cta-band {
  background: var(--red);
  color: #fff;
  padding: 78px 0
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.cta-content>div>span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em
}

.cta-band h2 {
  font-size: clamp(35px, 4vw, 52px);
  margin-top: 10px
}

.cta-band h2 em {
  color: #17191f
}

.btn-light {
  background: #fff;
  color: var(--ink);
  min-width: 225px
}

.btn-light:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px)
}

.contact {
  background: #f8f8f6
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px
}

.contact-info h2 {
  font-size: clamp(38px, 4vw, 57px);
  margin-bottom: 24px
}

.contact-info>p {
  color: var(--muted);
  max-width: 470px
}

.contact-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column
}

.contact-list>a,
.contact-row {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid #dedfdd
}

.contact-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--red);
  font-size: 19px;
  flex: 0 0 auto
}

.contact-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block
}

.contact-list small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #93969a
}

.contact-list strong {
  display: block;
  font-size: 15px
}

.contact-list p {
  font-size: 12px;
  color: #777b82
}

.contact-form {
  background: #fff;
  padding: 43px;
  box-shadow: 0 20px 70px rgba(19, 21, 25, .08)
}

.form-head {
  margin-bottom: 27px
}

.form-head span {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700
}

.form-head p {
  font-size: 13px;
  color: #84878d
}

.contact-form label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: 18px
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d9dadd;
  background: transparent;
  padding: 11px 0;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  resize: vertical;
  transition: .2s
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--red)
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a6a8ad
}

.contact-form select {
  color: #9ca1aa;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9ca1aa 50%), linear-gradient(135deg, #9ca1aa 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form select:valid {
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px
}

.form-submit {
  width: 100%;
  margin-top: 7px
}

.privacy {
  display: block;
  text-align: center;
  color: #97999e;
  font-size: 10px;
  margin-top: 12px
}

.map-section {
  height: 390px;
  filter: grayscale(1) contrast(.9)
}

.map-section iframe {
  border: 0;
  width: 100%;
  height: 100%
}

.footer {
  background: #0a0b0e;
  color: #fff
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
  gap: 60px;
  padding: 70px 0 55px
}

.footer-brand p {
  color: #777b83;
  font-size: 13px;
  max-width: 290px;
  margin-top: 20px
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px
}

.footer-col>strong {
  font-family: var(--font-display);
  font-size: 13px;
  margin-bottom: 10px
}

.footer-col a,
.footer-col p {
  font-size: 12px;
  color: #858991;
  transition: .2s
}

.footer-col a:hover {
  color: var(--red)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 10px;
  color: #5e6269;
  text-transform: uppercase;
  letter-spacing: .06em
}

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, .22))
}

.wa-label {
  background: #fff;
  padding: 10px 15px;
  border-radius: 6px 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  transform: translateX(5px)
}

.wa-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  transition: .25s
}

.wa-icon svg {
  width: 29px
}

.whatsapp-float:hover .wa-icon {
  transform: scale(1.08)
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .12s
}

.delay-2 {
  transition-delay: .24s
}

@media(max-width:1050px) {
  .nav-cta {
    display: none
  }

  .hero-grid {
    gap: 35px
  }

  .hero h1 {
    font-size: 54px
  }

  .hero-trust {
    gap: 20px
  }

  .about-grid,
  .contact-grid {
    gap: 60px
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-main {
    grid-template-columns: 1.7fr 1fr 1fr
  }

  .footer-address {
    display: none
  }
}

@media(max-width:800px) {
  .container {
    width: min(calc(100% - 32px), var(--container))
  }

  .header,
  .header.scrolled {
    height: 70px
  }

  .menu-toggle {
    display: flex;
    z-index: 2
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }

  .nav {
    position: fixed;
    inset: 70px 0 auto;
    background: #0c0d10;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 25px 25px;
    transform: translateY(-130%);
    opacity: 0;
    transition: .35s;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .nav.open {
    transform: none;
    opacity: 1
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 16px
  }

  .nav a:after {
    display: none
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 130px 0 85px
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 60px)
  }

  .hero-visual {
    height: 440px;
    margin-top: 25px
  }

  .card-top {
    right: -6px
  }

  .card-bottom {
    left: -6px
  }

  .scroll-hint {
    display: none
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr
  }

  .section {
    padding: 85px 0
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .about-visual {
    height: 480px
  }

  .section-heading {
    display: block
  }

  .section-heading>p {
    margin-top: 25px
  }

  .product-grid {
    grid-template-columns: 1fr 1fr
  }

  .vehicle-slider {
    grid-auto-columns: calc((100% - 18px) / 2);
    gap: 18px
  }

  .cta-content {
    align-items: flex-start;
    flex-direction: column
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr
  }

  .contact-grid {
    gap: 50px
  }
}

@media(max-width:560px) {
  .brand-mark {
    width: 39px
  }

  .brand strong {
    font-size: 15px
  }

  .brand small {
    font-size: 8px
  }

  .hero-copy>p {
    font-size: 16px
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px
  }

  .btn {
    width: 100%
  }

  .btn-link {
    justify-content: flex-start
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
  }

  .hero-visual {
    height: 340px
  }

  .floating-card {
    padding: 11px 13px
  }

  .card-top {
    top: 22px
  }

  .card-bottom {
    bottom: 22px
  }

  .benefits-grid {
    grid-template-columns: 1fr
  }

  .benefits article,
  .benefits article:first-child {
    border-left: 0
  }

  .about-grid {
    gap: 30px
  }

  .about-visual {
    height: 390px
  }

  .about-shape {
    inset: 0 20px 25px 0
  }

  .about-card-main {
    left: 30px;
    top: 65px;
    width: 245px
  }

  .about-card-main strong {
    font-size: 35px
  }

  .about-seal {
    width: 135px;
    height: 135px
  }

  .about-seal strong {
    font-size: 33px
  }

  .check-list {
    grid-template-columns: 1fr
  }

  .product-grid {
    grid-template-columns: 1fr
  }

  .product-card {
    height: 300px;
    max-height: 300px;
    padding: 25px 28px
  }

  .product-icon {
    height: 64px;
    margin: 8px 0 14px
  }

  .product-icon img,
  .product-icon svg {
    width: 64px;
    height: 64px
  }

  .card-link {
    bottom: 22px;
    left: 28px;
    right: 28px
  }

  .vehicle-showcase {
    margin-top: 25px;
    padding-top: 36px
  }

  .vehicle-showcase-head {
    align-items: center;
    margin-bottom: 22px
  }

  .vehicle-slider {
    grid-auto-columns: 86%;
    gap: 14px
  }

  .vehicle-card figcaption {
    padding: 18px
  }

  .vehicle-cta {
    padding-inline: 11px;
    font-size: 9px
  }

  .contact-form {
    padding: 28px 22px
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px
  }

  .wa-label {
    display: none
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px
  }

  .wa-icon {
    width: 54px;
    height: 54px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  .scroll-hint span {
    animation: none
  }
}

/* Hero tÃ©cnico vetorial: independente de imagens externas. */
.brand-logo {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  transition: width .3s, height .3s
}

.header.scrolled .brand-logo {
  width: 64px;
  height: 64px
}

.footer-logo .brand-logo {
  width: 160px;
  height: 160px
}

.footer-logo {
  display: inline-flex
}

.image-frame {
  position: relative;
  background: linear-gradient(145deg, #22252c, #111318)
}

.hero-car-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(.95) contrast(1.05) brightness(.86)
}

.image-overlay {
  background: linear-gradient(180deg, rgba(7, 10, 15, .04), rgba(7, 10, 15, .28) 62%, rgba(7, 10, 15, .58))
}

.visual-grid {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent)
}

.car-drawing {
  position: absolute;
  width: 112%;
  left: -6%;
  top: -3%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .25))
}

.car-line {
  stroke: #b4b9c2;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.car-line.faint {
  stroke: #4e535e;
  stroke-width: 1.5
}

.car-line.accent {
  stroke: var(--red);
  stroke-width: 3
}

.tech-ring {
  stroke: var(--red);
  stroke-width: 2;
  stroke-dasharray: 4 10;
  transform-origin: 310px 117px;
  animation: ring 25s linear infinite
}

.visual-caption {
  position: absolute;
  z-index: 2;
  left: 52px;
  bottom: 42px
}

.visual-caption span {
  display: block;
  color: var(--red);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 7px
}

.visual-caption strong {
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.2
}

@keyframes ring {
  to {
    transform: rotate(360deg)
  }
}

@media(max-width:560px) {
  .brand-logo {
    width: 59px;
    height: 59px
  }

  .header.scrolled .brand-logo {
    width: 54px;
    height: 54px
  }

  .footer-logo .brand-logo {
    width: 135px;
    height: 135px
  }
}

/* Escala ampliada da abertura e da marca. */
@media(min-width:801px) {
  .header {
    height: 96px
  }

  .header.scrolled {
    height: 82px
  }

  .brand-logo {
    width: 87px;
    height: 87px
  }

  .header.scrolled .brand-logo {
    width: 73px;
    height: 73px
  }

  .hero {
    min-height: 920px;
    padding-top: 96px
  }

  .hero-visual {
    height: 650px
  }

  .footer-logo .brand-logo {
    width: 184px;
    height: 184px
  }
}

@media(max-width:800px) {

  .header,
  .header.scrolled {
    height: 78px
  }

  .brand-logo {
    width: 68px;
    height: 68px
  }

  .header.scrolled .brand-logo {
    width: 62px;
    height: 62px
  }

  .nav {
    inset: 78px 0 auto
  }

  .hero {
    padding-top: 145px;
    padding-bottom: 98px
  }

  .hero-visual {
    height: 506px
  }

  .footer-logo .brand-logo {
    width: 155px;
    height: 155px
  }
}

@media(max-width:560px) {

  .header,
  .header.scrolled {
    height: 74px
  }

  .brand-logo {
    width: 66px;
    height: 66px
  }

  .header.scrolled .brand-logo {
    width: 60px;
    height: 60px
  }

  .nav {
    inset: 74px 0 auto
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 95px
  }

  .hero-visual {
    height: 391px
  }
}

.wa-icon svg {
  display: block;
  width: 31px;
  height: 31px
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06)
}

.btn-secondary:hover {
  background: #fff;
  color: var(--dark);
  transform: translateY(-2px)
}

.featured-product {
  background: var(--red);
}

.featured-product:before {
  background: #070a0f;
}

.featured-product .more-icon,
.featured-product h3,
.featured-product .card-link {
  color: #fff;
}

.featured-product p {
  color: rgba(255, 255, 255, .78);
}

.featured-product:hover p {
  color: rgba(255, 255, 255, .78);
}

.about-photo-frame {
  overflow: hidden;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 50%;
  filter: saturate(1.04) contrast(1.04) brightness(.82);
}

.about-photo-frame::after {
  background: linear-gradient(90deg, rgba(7, 10, 15, .9), rgba(7, 10, 15, .42) 54%, rgba(7, 10, 15, .12));
}

.about-video-frame {
  overflow: hidden;
  background: #070a0f;
}

.about-video-frame::after {
  display: none;
}

.about-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
