/* =========================
   Base
========================= */

:root {
  --brand-red: #e01f26;
  --brand-red-dark: #b9141a;
  --brand-red-soft: #fff0f1;

  --text: #171717;
  --text-soft: #555555;
  --text-muted: #767676;

  --line: rgba(23, 23, 23, 0.12);
  --line-strong: rgba(23, 23, 23, 0.2);

  --bg: #ffffff;
  --bg-soft: #fbfbfb;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --container: 1280px;
  --container-wide: 1480px;

  --shadow-sm: 0 12px 30px rgba(17, 17, 17, 0.08);
  --shadow-md: 0 24px 70px rgba(17, 17, 17, 0.12);
  --shadow-red: 0 18px 42px rgba(224, 31, 38, 0.24);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(224, 31, 38, 0.06), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 46%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-lead-modal-open {
  overflow: hidden;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus-visible {
  outline: 3px solid rgba(224, 31, 38, 0.32);
  outline-offset: 4px;
}

/* =========================
   Header
========================= */

.lpHeader {
  position: sticky;
  top: 0;
  z-index: 320;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lpHeader__bar {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
}

.lpHeader__inner {
  width: min(100% - 32px, 1180px);
  min-height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.lpHeader__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.lpHeader__logo {
  width: 156px;
  max-height: 58px;
  object-fit: contain;
}

.lpHeader__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 36px);
}

.lpHeader__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(23, 23, 23, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition: color 0.2s var(--ease);
}

.lpHeader__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-red);
  transition: right 0.24s var(--ease);
}

.lpHeader__link:hover {
  color: var(--text);
}

.lpHeader__link:hover::after {
  right: 0;
}

.lpHeader__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.lpHeader__cta,
.lpHeader__mobileCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  box-shadow: var(--shadow-red);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    filter 0.22s var(--ease);
}

.lpHeader__cta:hover,
.lpHeader__mobileCta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(224, 31, 38, 0.32);
  filter: saturate(1.05);
}

/* =========================
   Menu Mobile
========================= */

.lpHeader__mobile {
  display: none;
  position: relative;
}

.lpHeader__mobile summary {
  list-style: none;
}

.lpHeader__mobile summary::-webkit-details-marker {
  display: none;
}

.lpHeader__toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: var(--radius-sm);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.lpHeader__toggle span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 0.22s var(--ease),
    opacity 0.22s var(--ease),
    background 0.22s var(--ease);
}

.lpHeader__mobile[open] .lpHeader__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--brand-red);
}

.lpHeader__mobile[open] .lpHeader__toggle span:nth-child(2) {
  opacity: 0;
}

.lpHeader__mobile[open] .lpHeader__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--brand-red);
}

.lpHeader__drawer {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(330px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 8px;
}

.lpHeader__mobileLink {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}

.lpHeader__mobileLink:hover {
  color: var(--brand-red);
  background: rgba(224, 31, 38, 0.08);
}

.lpHeader__mobileCta {
  width: 100%;
  margin-top: 6px;
}

/* =========================
   Banner
========================= */

.campaignBanner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 31, 38, 0.08), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.campaignBanner__inner {
  width: min(100% - 32px, var(--container-wide));
  margin-inline: auto;
  padding: clamp(18px, 2.5vw, 32px) 0 clamp(12px, 2vw, 24px);
}

.campaignBanner__img {
  width: 100%;
  height: auto;
  border-radius: clamp(18px, 2vw, 30px);
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
}

/* =========================
   Intro
========================= */

.productIntro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) 0 clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 0% 20%, rgba(224, 31, 38, 0.075), transparent 24rem),
    radial-gradient(circle at 100% 16%, rgba(23, 23, 23, 0.045), transparent 24rem),
    linear-gradient(180deg, #fbfbfb 0%, #ffffff 100%);
}

.productIntro__inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.productIntro__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.08fr) minmax(250px, 0.78fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}

.quickQuote,
.productIntro__content,
.productIntro__figure {
  min-width: 0;
}

.productIntro__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 2.8vw, 38px);
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(224, 31, 38, 0.08), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.productIntro__eyebrow,
.sectionKicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 32px;
  padding: 8px 12px;
  border: 1px solid rgba(224, 31, 38, 0.18);
  border-radius: var(--radius-pill);
  color: var(--brand-red-dark);
  background: rgba(224, 31, 38, 0.08);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.productIntro__eyebrow::before,
.sectionKicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-red);
  box-shadow: 0 0 0 6px rgba(224, 31, 38, 0.12);
}

.productIntro__title,
.sectionTitle {
  color: var(--text);
  font-size: clamp(2.15rem, 4.2vw, 4.45rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.productIntro__title {
  margin-top: 18px;
}

.productIntro__title span,
.sectionTitle span {
  color: var(--brand-red);
}

.productIntro__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
}

.productIntro__text {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.72;
}

.productIntro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 24px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  box-shadow: var(--shadow-red);
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    filter 0.22s var(--ease);
}

.productIntro__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(224, 31, 38, 0.32);
  filter: saturate(1.05);
}

.productIntro__figure {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 15%, rgba(224, 31, 38, 0.08), transparent 16rem),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.productIntro__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

/* =========================
   Depoimentos / Avaliações
========================= */

.testimonials {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(38px, 5vw, 78px) 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(224, 31, 38, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.testimonials__inner {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.testimonials__head {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: clamp(22px, 3vw, 34px);
  text-align: center;
}

.testimonials .sectionTitle {
  max-width: 900px;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
}

.testimonials__widget {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: clamp(12px, 2vw, 22px);
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at top right, rgba(224, 31, 38, 0.08), transparent 16rem),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.testimonials__widget::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
  pointer-events: none;
}

@media (max-width: 560px) {
  .testimonials {
    padding: 36px 0 46px;
  }

  .testimonials__inner {
    width: min(100% - 24px, 1180px);
  }

  .testimonials__widget {
    min-height: 360px;
    padding: 10px;
    border-radius: 22px;
  }
}

/* =========================
   Formulário
========================= */

.quickQuote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(224, 31, 38, 0.09), transparent 14rem),
    linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
  box-shadow: var(--shadow-sm);
}

.quickQuote__head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.quickQuote__title {
  color: var(--text);
  font-size: clamp(1.75rem, 2.3vw, 2.35rem);
  font-weight: 930;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.quickQuote__text {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.52;
}

.quickQuote__form {
  display: grid;
  gap: 11px;
}

.quickQuote__row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10px;
}

.formField,
.modalField {
  display: grid;
  gap: 7px;
}

.formField__label,
.modalField__label {
  color: rgba(23, 23, 23, 0.82);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
}

.formField__label small,
.modalField__label small {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.formField__control,
.modalField__control {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(23, 23, 23, 0.13);
  border-radius: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(17, 17, 17, 0.04);
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}

.formField__control::placeholder,
.modalField__control::placeholder {
  color: rgba(23, 23, 23, 0.36);
}

.formField__control:focus,
.modalField__control:focus {
  border-color: rgba(224, 31, 38, 0.58);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(224, 31, 38, 0.1),
    0 10px 22px rgba(17, 17, 17, 0.06);
}

.formField__select,
.modalField__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(23, 23, 23, 0.62) 50%),
    linear-gradient(135deg, rgba(23, 23, 23, 0.62) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.formField__select:invalid,
.modalField__select:invalid {
  color: rgba(23, 23, 23, 0.42);
}

.quickQuote__submit,
.leadModal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
  padding: 14px 18px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  box-shadow: var(--shadow-red);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    filter 0.22s var(--ease);
}

.quickQuote__submit:hover,
.leadModal__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(224, 31, 38, 0.32);
  filter: saturate(1.05);
}

.quickQuote__note,
.leadModal__note {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
}

/* =========================
   Vídeo
========================= */

.videoSection {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(224, 31, 38, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.videoSection__inner {
  width: min(100% - 32px, 1080px);
  margin-inline: auto;
}

.videoSection__head {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: clamp(18px, 3vw, 30px);
  text-align: center;
}

.videoSection .sectionTitle {
  max-width: 840px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.videoSection__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at center, rgba(224, 31, 38, 0.14), transparent 55%),
    #111111;
  box-shadow:
    0 28px 80px rgba(17, 17, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.videoSection__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   Modelos
========================= */

.plxModels {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(30px, 4vw, 54px) 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(224, 31, 38, 0.055), transparent 22rem),
    linear-gradient(180deg, #fbfbfb 0%, #ffffff 100%);
}

.plxModels::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.028) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  pointer-events: none;
}

.plxModels__inner {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.plxModels__head {
  display: block;
  margin-bottom: clamp(14px, 2vw, 22px);
}

.plxModels__title {
  color: #171717;
  font-size: clamp(1.65rem, 2.35vw, 2.45rem);
  font-weight: 930;
  line-height: 1.05;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.plxModels__title span {
  color: var(--brand-red);
}

.plxModels__carousel {
  position: relative;
}

.plxModels__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-radius: 24px;
}

.plxModels__viewport::-webkit-scrollbar {
  display: none;
}

.plxModels__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 140px) / 4);
  gap: 20px;
  padding: 4px 2px 10px;
}

.plxModelCard {
  scroll-snap-align: start;
  position: relative;
  display: grid;
  grid-template-rows: 170px auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 20%, rgba(224, 31, 38, 0.07), transparent 10rem),
    linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.07);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.plxModelCard:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 31, 38, 0.2);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.11);
}

.plxModelCard__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 4px;
  background:
    radial-gradient(circle at center, rgba(224, 31, 38, 0.1), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 248, 248, 0.9));
}

.plxModelCard__media::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 14px;
  height: 24px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.1);
  filter: blur(16px);
  pointer-events: none;
}

.plxModelCard__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(17, 17, 17, 0.13));
  transition: transform 0.28s var(--ease);
}

.plxModelCard:hover .plxModelCard__img {
  transform: translateY(-4px) scale(1.03);
}

.plxModelCard__body {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.plxModelCard__product {
  color: var(--brand-red);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plxModelCard__model {
  color: #171717;
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.035em;
}

.plxModelCard__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  box-shadow: 0 12px 24px rgba(224, 31, 38, 0.2);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    filter 0.18s var(--ease);
}

.plxModelCard__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(224, 31, 38, 0.28);
  filter: saturate(1.05);
}

.plxModels__nav {
  position: absolute;
  top: 45%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 999px;
  color: #171717;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition:
    transform 0.18s var(--ease),
    opacity 0.18s var(--ease),
    background 0.18s var(--ease);
}

.plxModels__nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.plxModels__nav:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.plxModels__nav span {
  display: block;
  margin-top: -3px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.plxModels__nav--prev {
  left: -18px;
}

.plxModels__nav--next {
  right: -18px;
}

.plxModels__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 10px;
  margin-top: 6px;
}

.plxModels__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.2);
  transition:
    width 0.2s var(--ease),
    background 0.2s var(--ease);
}

.plxModels__dot.is-active {
  width: 24px;
  background: var(--brand-red);
}

/* =========================
   Modal
========================= */

.leadModal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  align-items: end;
  justify-items: end;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
}

.leadModal[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
}

.leadModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0);
  opacity: 0;
  transition:
    opacity 0.22s var(--ease),
    background 0.22s var(--ease);
}

.leadModal[aria-hidden="false"] .leadModal__backdrop {
  opacity: 1;
  background: rgba(17, 17, 17, 0.18);
}

.leadModal__dialog {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100vw - 48px));
  transform: translate3d(18px, 18px, 0) scale(0.96);
  opacity: 0;
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.leadModal[aria-hidden="false"] .leadModal__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.leadModal__card {
  position: relative;
  overflow: hidden;
  max-height: calc(100dvh - 48px);
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(224, 31, 38, 0.1), transparent 13rem),
    linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
  box-shadow:
    0 24px 70px rgba(17, 17, 17, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.leadModal__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
}

.leadModal__close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 13px;
  color: #171717;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  font-size: 1.55rem;
  line-height: 1;
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    color 0.18s var(--ease);
}

.leadModal__close:hover {
  transform: translateY(-1px);
  color: var(--brand-red);
  background: #ffffff;
}

.leadModal__head {
  padding: 24px 22px 14px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.leadModal__title {
  margin-right: 42px;
  color: #171717;
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
  font-weight: 940;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.leadModal__text {
  margin-top: 8px;
  margin-right: 34px;
  color: #555555;
  font-size: 0.93rem;
  line-height: 1.48;
}

.leadModal__form {
  display: grid;
  gap: 11px;
  padding: 16px 22px 20px;
}

.leadModal__row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10px;
}

/* =========================
   Footer
========================= */

.lpFooter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px) 0 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(224, 31, 38, 0.22), transparent 22rem),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.07), transparent 20rem),
    linear-gradient(180deg, #151515 0%, #090909 100%);
}

.lpFooter::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  pointer-events: none;
}

.lpFooter__inner {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.lpFooter__main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.7fr) minmax(260px, 0.9fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  padding-bottom: clamp(28px, 4vw, 44px);
}

.lpFooter__brand,
.lpFooter__contact {
  min-width: 0;
}

.lpFooter__logoLink {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.lpFooter__logo {
  width: 142px;
  max-height: 52px;
  object-fit: contain;
}

.lpFooter__text {
  max-width: 430px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.68;
}

.lpFooter__title {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lpFooter__title::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
}

.lpFooter__list {
  display: grid;
  gap: 10px;
}

.lpFooter__list li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.lpFooter__list a {
  position: relative;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.72);
  transition:
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.lpFooter__list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.lpFooter__cta,
.lpFooter__sellerBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 22px;
  padding: 13px 18px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  box-shadow: 0 18px 42px rgba(224, 31, 38, 0.28);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    filter 0.22s var(--ease);
}

.lpFooter__cta:hover,
.lpFooter__sellerBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(224, 31, 38, 0.36);
  filter: saturate(1.05);
}

.lpFooter__sellerBtn {
  margin-top: 18px;
}

.lpFooter__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lpFooter__copyright {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.45;
}

.lpFooter__dev {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
}

.lpFooter__dev img {
  width: 118px;
  max-height: 38px;
  object-fit: contain;
  opacity: 0.86;
}

/* =========================
   Mobile WhatsApp Bar
========================= */

.mobile-whatsapp-bar {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 340;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(34px) scale(0.96);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 620ms ease;
  will-change: opacity, transform;
}

.mobile-whatsapp-bar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-whatsapp-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  padding: 13px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #25d366 0%, #16b955 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 34px rgba(20, 138, 75, 0.24),
    0 8px 18px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    filter 0.18s var(--ease);
}

.mobile-whatsapp-bar__link:hover {
  transform: translateY(-1px);
  filter: saturate(1.03);
}

.mobile-whatsapp-bar__icon-wrap {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.mobile-whatsapp-bar__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.mobile-whatsapp-bar__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 0;
}

.mobile-whatsapp-bar__title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.mobile-whatsapp-bar__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  line-height: 1.2;
}

html.is-mobile-menu-open .mobile-whatsapp-bar,
body.is-mobile-menu-open .mobile-whatsapp-bar,
body.is-lead-modal-open .mobile-whatsapp-bar {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(34px) scale(0.96) !important;
}

/* =========================
   Responsivo
========================= */

@media (max-width: 1180px) {
  .productIntro__grid {
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
  }

  .productIntro__figure {
    grid-column: 1 / -1;
  }

  .productIntro__img {
    max-height: 460px;
  }

  .plxModels__track {
    grid-auto-columns: calc((100% - 120px) / 3);
  }
}

@media (max-width: 980px) {
  .lpHeader__inner {
    display: flex;
    justify-content: space-between;
    min-height: 70px;
    gap: 16px;
  }

  .lpHeader__logo {
    width: 132px;
    max-height: 52px;
  }

  .lpHeader__nav,
  .lpHeader__cta {
    display: none;
  }

  .lpHeader__mobile {
    display: block;
  }

  .lpFooter__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 981px) {
  .mobile-whatsapp-bar {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .productIntro__grid {
    grid-template-columns: 1fr;
  }

  .quickQuote {
    order: 1;
  }

  .productIntro__content {
    order: 2;
  }

  .productIntro__figure {
    order: 3;
    grid-column: auto;
  }

  .productIntro__btn {
    width: 100%;
  }

  .productIntro__img {
    min-height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .plxModels__title {
    white-space: normal;
  }

  .plxModels__track {
    grid-auto-columns: calc((100% - 100px) / 2);
    gap: 18px;
  }

  .plxModels__nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .leadModal {
    align-items: end;
    justify-items: center;
    padding: 10px;
  }

  .leadModal[aria-hidden="false"] .leadModal__backdrop {
    background: rgba(17, 17, 17, 0.42);
  }

  .leadModal__dialog {
    width: 100%;
    transform: translate3d(0, 26px, 0);
  }

  .leadModal[aria-hidden="false"] .leadModal__dialog {
    transform: translate3d(0, 0, 0);
  }

  .leadModal__card {
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    border-radius: 24px 24px 18px 18px;
    overscroll-behavior: contain;
  }

  .leadModal__card::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: rgba(23, 23, 23, 0.18);
    transform: translateX(-50%);
  }

  .leadModal__close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .leadModal__head {
    padding: 28px 16px 12px;
  }

  .leadModal__title {
    margin-right: 42px;
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .leadModal__text {
    margin-right: 0;
    font-size: 0.9rem;
  }

  .leadModal__form {
    padding: 14px 16px 16px;
    gap: 10px;
  }

  .leadModal__row {
    grid-template-columns: 1fr;
  }

  .modalField__control {
    min-height: 48px;
  }

  .lpFooter__main {
    grid-template-columns: 1fr;
    gap: 28px;  
  }

  .lpFooter__cta,
  .lpFooter__sellerBtn {
    width: 100%;
  }

  .lpFooter__bottom {
    display: grid;
    justify-items: start;
    gap: 12px;
    padding-bottom: 100px;
  }
}

@media (max-width: 560px) {
  .lpHeader__inner {
    width: min(100% - 24px, 1180px);
    min-height: 64px;
  }

  .lpHeader__logo {
    width: 118px;
  }

  .lpHeader__toggle {
    width: 46px;
    height: 46px;
  }

  .lpHeader__drawer {
    width: min(320px, calc(100vw - 24px));
  }

  .campaignBanner__inner,
  .productIntro__inner,
  .videoSection__inner,
  .plxModels__inner,
  .lpFooter__inner {
    width: min(100% - 24px, var(--container));
  }

  .campaignBanner__inner {
    padding-top: 14px;
  }

  .campaignBanner__img {
    border-radius: 18px;
  }

  .productIntro {
    padding: 18px 0 42px;
  }

  .productIntro__content,
  .quickQuote {
    border-radius: 22px;
    padding: 20px;
  }

  .productIntro__title,
  .sectionTitle {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .productIntro__text {
    margin-top: 14px;
  }

  .quickQuote__row {
    grid-template-columns: 1fr;
  }

  .videoSection {
    padding: 34px 0;
  }

  .videoSection__frame {
    border-radius: 18px;
  }

  .plxModels {
    padding: 28px 0 42px;
  }

  .plxModels__title {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    line-height: 1.06;
  }

  .plxModels__viewport {
    overflow: visible;
  }

  .plxModels__track {
    grid-auto-columns: 70%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 10px;
  }

  .plxModels__track::-webkit-scrollbar {
    display: none;
  }

  .plxModelCard {
    grid-template-rows: 160px auto;
    border-radius: 20px;
  }

  .plxModelCard__body {
    padding: 13px;
  }

  .plxModelCard__btn {
    min-height: 40px;
  }

  .mobile-whatsapp-bar {
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .mobile-whatsapp-bar__link {
    min-height: 68px;
    padding: 12px 15px;
    border-radius: 20px;
    gap: 12px;
  }

  .mobile-whatsapp-bar__icon-wrap {
    width: 42px;
    height: 42px;
  }

  .mobile-whatsapp-bar__icon {
    width: 22px;
    height: 22px;
  }

  .mobile-whatsapp-bar__title {
    font-size: 0.9rem;
  }

  .mobile-whatsapp-bar__text {
    font-size: 0.77rem;
  }
}

@media (max-width: 390px) {
  .productIntro__content,
  .quickQuote {
    padding: 18px;
  }

  .plxModels__track {
    grid-auto-columns: 76%;
  }

  .plxModelCard {
    grid-template-rows: 150px auto;
  }

  .mobile-whatsapp-bar__link {
    min-height: 64px;
    padding: 11px 14px;
    gap: 10px;
  }

  .mobile-whatsapp-bar__title {
    font-size: 0.86rem;
  }

  .mobile-whatsapp-bar__text {
    font-size: 0.74rem;
  }
}