@font-face {
  font-family: 'Ford F-1';
  src: url('../fonts/F1.woff2') format('woff2'),
       url('../fonts/F1.woff') format('woff'),
       url('../fonts/F1.ttf') format('truetype');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Ford F-1';
  src: url('../fonts/F1.woff2') format('woff2'),
       url('../fonts/F1.woff') format('woff'),
       url('../fonts/F1.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Ford F-1';
  src: url('../fonts/F1.woff2') format('woff2'),
       url('../fonts/F1.woff') format('woff'),
       url('../fonts/F1.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navesa-blue: #0668e7;
  --navesa-text: #111111;
  --navesa-white: #ffffff;
  --navesa-font: 'Ford F-1', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.navesa-landing-body {
  margin: 0;
  background: #ffffff;
  color: var(--navesa-text);
  font-family: var(--navesa-font);
}

body.navesa-landing-body button,
body.navesa-landing-body input,
body.navesa-landing-body textarea,
body.navesa-landing-body select,
body.navesa-landing-body a {
  font-family: var(--navesa-font);
}

body.navesa-landing-body.admin-bar {
  min-height: 100vh;
}

.navesa-landing {
  width: 100%;
  overflow-x: clip;
}

.navesa-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(9, 33, 73, 0.08);
  backdrop-filter: blur(12px);
}

.admin-bar .navesa-header {
  top: 32px;
}

.navesa-header__inner,
.navesa-offer__inner {
  width: min(100%, 1281px);
  margin: 0 auto;
}

.navesa-hero__media {
  width: 100%;
  margin: 0;
}

.navesa-hero__media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.navesa-header__inner {
  min-height: 85px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 22px;
  box-sizing: border-box;
}

.navesa-header__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 0 0 auto;
}

.navesa-header__panel {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.navesa-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.navesa-header__brand img {
  width: 124px;
  height: auto;
  display: block;
}

.navesa-header__nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 54px);
  min-width: 0;
}

.navesa-header__menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(9, 33, 73, 0.14) !important;
  border-radius: 12px;
  background: #ffffff !important;
  box-shadow: none !important;
  color: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .navesa-header__menu-button {
    display: none !important;
  }
}

.navesa-header__menu-line {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  border-radius: 999px;
  background: #092149;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navesa-header__menu-line:nth-child(1) {
  top: 15px;
}

.navesa-header__menu-line:nth-child(2) {
  top: 21px;
}

.navesa-header__menu-line:nth-child(3) {
  top: 27px;
}

.navesa-header__menu-button[aria-expanded="true"] .navesa-header__menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navesa-header__menu-button[aria-expanded="true"] .navesa-header__menu-line:nth-child(2) {
  opacity: 0;
}

.navesa-header__menu-button[aria-expanded="true"] .navesa-header__menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.navesa-header__nav a,
.navesa-header__cta,
.navesa-offer__eyebrow,
.navesa-offer__price {
  font-family: var(--navesa-font);
  letter-spacing: -0.02em;
}

.navesa-header__nav a {
  color: var(--navesa-text);
  text-decoration: none;
  white-space: nowrap;
  font-size: 14.34px;
  line-height: 35.4px;
  font-weight: 400;
}

.navesa-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 133px;
  height: 48px;
  padding: 6px 13px;
  border-radius: 69px;
  background: var(--navesa-blue);
  color: var(--navesa-white);
  text-decoration: none;
  font-size: 14.34px;
  line-height: 35.4px;
  font-weight: 400;
  box-sizing: border-box;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.navesa-header__cta:hover,
.navesa-header__cta:focus,
.navesa-header__cta:active {
  color: var(--navesa-white);
}

.navesa-offer__eyebrow,
.navesa-offer__price {
  text-transform: uppercase;
}

.navesa-main {
  display: block;
}

.navesa-hero {
  background: #fff;
  width: 100%;
  position: relative;
}

.navesa-hero__media {
  height: clamp(520px, 50vw, 640px);
}

.navesa-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.navesa-model-page-body .navesa-hero__media {
  height: auto;
  background: #f6f8fc;
}

.navesa-model-page-body .navesa-hero__media picture {
  height: auto;
}

.navesa-model-page-body .navesa-hero__media img {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.navesa-model-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  box-sizing: border-box;
}

.navesa-model-hero-grid__item {
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.navesa-model-hero-grid__item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.navesa-model-hero-grid__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.navesa-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.navesa-hero__overlay-inner {
  width: min(100%, 1281px);
  height: 100%;
  margin: 0 auto;
  padding: 36px 22px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navesa-hero__form-card {
  position: relative;
  width: min(100%, 420px);
  padding: 28px 24px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(7, 17, 42, 0.22);
  pointer-events: auto;
  box-sizing: border-box;
}

.navesa-hero__anchor {
  position: absolute;
  top: -92px;
  left: 0;
}

.navesa-hero__form-eyebrow,
.navesa-hero__form-title,
.navesa-hero__form-description,
.navesa-hero__form-context-title,
.navesa-hero__form-context-subtitle,
.navesa-hero__form-field span,
.navesa-hero__form-field input,
.navesa-hero__form-privacy,
.navesa-hero__form-submit,
.navesa-success-modal__dialog h2,
.navesa-success-modal__dialog p,
.navesa-success-modal__button {
  font-family: var(--navesa-font);
  letter-spacing: -0.02em;
}

.navesa-hero__form-eyebrow {
  margin: 0;
  color: #0668e7;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}

.navesa-hero__form-title {
  margin: 10px 0 0;
  color: #00114f;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 700;
}

.navesa-hero__form-description {
  margin: 12px 0 0;
  color: rgba(0, 17, 79, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.navesa-hero__form-context {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f3f8ff;
}

.navesa-hero__form-context-title {
  margin: 0;
  color: #00114f;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.navesa-hero__form-context-subtitle {
  margin: 6px 0 0;
  color: rgba(0, 17, 79, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.navesa-hero__form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.navesa-hero__form-field {
  display: grid;
  gap: 8px;
}

.navesa-hero__form-field span {
  color: #00114f;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.navesa-hero__form-field input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(9, 33, 73, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: #00114f;
  font-size: 14px;
  box-sizing: border-box;
}

.navesa-hero__form-field input::placeholder {
  color: rgba(0, 17, 79, 0.45);
}

.navesa-hero__form-privacy {
  margin: 2px 0 0;
  color: rgba(0, 17, 79, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.navesa-hero__form-feedback {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
}

.navesa-hero__form-feedback.is-error {
  background: rgba(153, 27, 27, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #7f1d1d;
}

body.navesa-landing-body .navesa-hero__form .navesa-hero__form-submit {
  min-height: 54px;
  padding: 10px 24px;
  border: none !important;
  border-radius: 69px !important;
  background: var(--navesa-blue) !important;
  color: var(--navesa-white) !important;
  font-size: 14.34px !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.navesa-landing-body .navesa-hero__form .navesa-hero__form-submit:hover,
body.navesa-landing-body .navesa-hero__form .navesa-hero__form-submit:focus,
body.navesa-landing-body .navesa-hero__form .navesa-hero__form-submit:active {
  background: var(--navesa-blue) !important;
  color: var(--navesa-white) !important;
  transform: translateY(-1px);
}

body.navesa-landing-body.navesa-lead-modal-open {
  overflow: hidden;
}

body.navesa-landing-body.navesa-gallery-lightbox-open {
  overflow: hidden;
}

.navesa-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
}

.navesa-lead-modal[hidden] {
  display: none;
}

.navesa-lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 35, 0.56);
  backdrop-filter: blur(5px);
}

.navesa-lead-modal__dialog {
  position: relative;
  width: min(100%, 560px);
  padding: 30px 28px 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 62px rgba(7, 17, 42, 0.26);
}

.navesa-lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 0 !important;
  border-radius: 0;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: var(--navesa-blue) !important;
  font-size: 36px;
  font-weight: 400;
  line-height: 0.8;
  cursor: pointer;
}

.navesa-lead-modal__eyebrow,
.navesa-lead-modal__hero-copy,
.navesa-lead-modal__title,
.navesa-lead-modal__description,
.navesa-lead-modal__field span,
.navesa-lead-modal__field input,
.navesa-lead-modal__privacy,
.navesa-lead-modal__feedback,
.navesa-lead-modal__submit {
  font-family: var(--navesa-font);
  letter-spacing: -0.02em;
}

.navesa-lead-modal__eyebrow {
  margin: 0;
  color: #0668e7;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}

.navesa-lead-modal__hero {
  margin-top: 14px;
  display: block;
}

.navesa-lead-modal__title {
  margin: 0;
  color: #00114f;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 700;
}

.navesa-lead-modal__title span {
  color: #1bbf47;
}

.navesa-lead-modal__description {
  margin: 12px 0 0;
  color: rgba(0, 17, 79, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.navesa-lead-modal__form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.navesa-lead-modal__field {
  display: grid;
  gap: 8px;
}

.navesa-lead-modal__field span {
  color: #00114f;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.navesa-lead-modal__field input {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 2px solid rgba(9, 33, 73, 0.18);
  border-radius: 16px;
  background: #ffffff;
  color: #00114f;
  font-size: 16px;
  box-sizing: border-box;
}

.navesa-lead-modal__field input::placeholder {
  color: rgba(0, 17, 79, 0.45);
}

.navesa-lead-modal__privacy {
  margin: 0;
  color: rgba(0, 17, 79, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.navesa-lead-modal__feedback {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
}

.navesa-lead-modal__feedback.is-error {
  background: rgba(153, 27, 27, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #7f1d1d;
}

.navesa-lead-modal__submit {
  min-height: 58px;
  border: none !important;
  border-radius: 999px !important;
  background: var(--navesa-blue) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
}

.navesa-lead-modal__submit-icon,
.navesa-lead-modal__submit-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.navesa-lead-modal__submit-icon {
  justify-self: start;
}

.navesa-lead-modal__submit-icon img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) saturate(100%) invert(60%) sepia(77%) saturate(745%) hue-rotate(83deg) brightness(92%) contrast(97%);
}

.navesa-lead-modal__submit-label {
  line-height: 1.05;
  text-align: center;
  justify-self: center;
  align-self: center;
  transform: translateY(-1px);
}

.navesa-lead-modal__submit-arrow {
  justify-self: end;
}

.navesa-lead-modal__submit-arrow svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: #ffffff;
}

.navesa-thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at top left, rgba(6, 104, 231, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #edf3ff 100%);
}

.navesa-thank-you__card {
  width: min(100%, 560px);
  padding: 38px 34px;
  border: 1px solid rgba(9, 33, 73, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 54px rgba(7, 17, 42, 0.14);
  text-align: center;
  box-sizing: border-box;
}

.navesa-thank-you__brand {
  display: inline-flex;
  margin-bottom: 22px;
}

.navesa-thank-you__brand img {
  width: 126px;
  height: auto;
  display: block;
}

.navesa-thank-you__eyebrow {
  margin: 0;
  color: #0668e7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.navesa-thank-you__title {
  margin: 12px 0 0;
  color: #00114f;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 700;
}

.navesa-thank-you__description {
  margin: 14px 0 0;
  color: rgba(0, 17, 79, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.navesa-thank-you__countdown {
  margin-top: 24px;
  color: #00114f;
  font-size: 14px;
  font-weight: 700;
}

.navesa-thank-you__countdown span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e7f1ff;
  color: #0668e7;
  font-size: 18px;
}

.navesa-thank-you__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 56px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 999px;
  background: #0668e7;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.navesa-whatsapp-float {
	position: fixed;
	right: max(16px, env(safe-area-inset-right));
	bottom: max(16px, env(safe-area-inset-bottom));
	z-index: 50;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 999px;
	background: #25d366;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.navesa-whatsapp-float:hover,
.navesa-whatsapp-float:focus-visible,
.navesa-whatsapp-float:active {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.navesa-whatsapp-float__icon {
	width: 28px;
	height: 28px;
	display: block;
	filter: brightness(0) invert(1);
}

.navesa-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
}

.navesa-gallery-lightbox[hidden] {
  display: none;
}

.navesa-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 7, 28, 0.84);
  backdrop-filter: blur(8px);
}

.navesa-gallery-lightbox__dialog {
  position: relative;
  width: min(100%, 1240px);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
  z-index: 1;
}

.navesa-gallery-lightbox__figure {
  margin: 0;
}

.navesa-gallery-lightbox__figure img {
  width: 100%;
  max-height: calc(100vh - 96px);
  display: block;
  object-fit: contain;
}

.navesa-gallery-lightbox__close,
.navesa-gallery-lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.navesa-gallery__slot {
  cursor: zoom-in;
}

.navesa-gallery__slot:focus-visible {
  outline: 3px solid rgba(6, 104, 231, 0.35);
  outline-offset: 4px;
}

.navesa-gallery-lightbox__close {
  position: absolute;
  top: -2px;
  right: 0;
  z-index: 2;
}

.navesa-gallery-lightbox__nav {
  opacity: 0.92;
}

.navesa-gallery-lightbox__close:hover,
.navesa-gallery-lightbox__close:focus-visible,
.navesa-gallery-lightbox__nav:hover,
.navesa-gallery-lightbox__nav:focus-visible {
  opacity: 1;
  transform: scale(1.04);
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.navesa-gallery-lightbox__close svg,
.navesa-gallery-lightbox__nav svg {
  width: 34px;
  height: 34px;
  display: block;
  color: #ffffff;
}

.navesa-gallery-lightbox__close path,
.navesa-gallery-lightbox__nav path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navesa-offer {
  background: var(--navesa-blue);
}

.navesa-offer__inner {
  min-height: 213px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 22px;
  box-sizing: border-box;
}

.navesa-offer__eyebrow,
.navesa-offer__price {
  margin: 0;
  color: var(--navesa-white);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  flex-wrap: wrap;
}

.navesa-offer__eyebrow {
  font-size: 28px;
  line-height: 35.4px;
  font-weight: 400;
}

.navesa-offer__highlight {
  font-weight: 700;
}

.navesa-offer__price {
  margin-top: 8px;
  font-size: 35.34px;
  line-height: 35.4px;
  font-weight: 400;
}

.navesa-features {
  background: #00114f;
}

.navesa-features__inner {
  width: min(100%, 1281px);
  margin: 0 auto;
  padding: 74px 34px 84px;
  box-sizing: border-box;
}

.navesa-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 72px;
}

.navesa-feature + .navesa-feature {
  margin-top: 84px;
}

.navesa-feature--image-right {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.04fr);
}

.navesa-feature--image-right .navesa-feature__media {
  order: 2;
}

.navesa-feature--image-right .navesa-feature__content {
  order: 1;
}

.navesa-feature__media img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.navesa-feature__content {
  max-width: 510px;
}

.navesa-feature__title,
.navesa-feature__body,
.navesa-features__cta {
  font-family: var(--navesa-font);
  letter-spacing: -0.02em;
}

.navesa-feature__title {
  margin: 0;
  color: #0668e7;
  font-size: 28px;
  line-height: 35.4px;
  font-weight: 700;
}

.navesa-feature__body {
  margin: 34px 0 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.navesa-features__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 72px;
}

.navesa-features__cta {
  min-height: 58px;
  padding: 11px 13px;
  border-radius: 41px;
  border: 3px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18.34px;
  line-height: 35.4px;
  font-weight: 400;
  box-sizing: border-box;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.navesa-features__cta:hover,
.navesa-features__cta:focus,
.navesa-features__cta:active {
  color: #ffffff;
}

.navesa-features__cta--primary {
  min-width: 190px;
  background: #0668e7;
  color: #ffffff;
}

.navesa-features__cta--secondary {
  min-width: 302px;
  background: #0f21ec;
  color: #ffffff;
}

.navesa-features__cta--outline {
  min-width: 151px;
  background: transparent;
  border-color: #0f21ec;
  color: #ffffff;
}

.navesa-video {
  background: #ffffff;
}

.navesa-video__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.navesa-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  overflow: hidden;
}

.navesa-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.navesa-showcase {
  background: #ffffff;
}

.navesa-showcase__inner {
  width: min(100%, 1281px);
  margin: 0 auto;
  padding: 54px 34px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 58px;
  box-sizing: border-box;
}

.navesa-showcase__media {
  position: relative;
}

.navesa-showcase__badge {
  position: absolute;
  top: 44px;
  right: 42px;
  min-width: 118px;
  min-height: 34px;
  padding: 9px 13px;
  border: 1px solid #0668e7;
  border-radius: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #000000;
  font-family: var(--navesa-font);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  box-sizing: border-box;
}

.navesa-showcase__vehicle-frame {
  width: 100%;
}

.navesa-showcase__vehicle-frame img {
  width: 100%;
  display: block;
}

.navesa-showcase__swatches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.navesa-showcase__swatch {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none !important;
  outline: 0;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: transparent !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: visible;
}

.navesa-showcase__swatch-dot {
  width: 40px;
  height: 40px;
  display: block;
  border: none !important;
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(9, 33, 73, 0.12) !important;
  border-radius: 999px;
  background: var(--navesa-swatch-color, #1f5fbf);
}

.navesa-showcase__swatch.is-active {
  transform: scale(1.04);
}

.navesa-showcase__swatch::before,
.navesa-showcase__swatch::after,
.navesa-showcase__swatch-dot::before,
.navesa-showcase__swatch-dot::after {
  display: none !important;
  content: none !important;
}

.navesa-showcase__swatch:hover,
.navesa-showcase__swatch:focus,
.navesa-showcase__swatch:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.navesa-showcase__content {
  max-width: 430px;
}

.navesa-showcase__eyebrow,
.navesa-showcase__title,
.navesa-showcase__body p,
.navesa-showcase__cta {
  font-family: var(--navesa-font);
  letter-spacing: -0.02em;
}

.navesa-showcase__eyebrow {
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 35.4px;
  font-weight: 400;
}

.navesa-showcase__title {
  margin: 8px 0 0;
  color: #0668e7;
  font-size: 28px;
  line-height: 35.4px;
  font-weight: 700;
}

.navesa-showcase__body {
  margin-top: 28px;
}

.navesa-showcase__body p {
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.navesa-showcase__body p + p {
  margin-top: 4px;
}

.navesa-showcase__cta {
  min-width: 118px;
  min-height: 58px;
  margin-top: 30px;
  padding: 11px 20px;
  border-radius: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0668e7;
  color: #ffffff;
  text-decoration: none;
  font-size: 18.34px;
  line-height: 35.4px;
  font-weight: 400;
  box-sizing: border-box;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.navesa-showcase__cta:hover,
.navesa-showcase__cta:focus,
.navesa-showcase__cta:active {
  color: #ffffff;
}

.navesa-offers {
  background: #ffffff;
}

.navesa-offers__inner {
  width: min(100%, 1281px);
  margin: 0 auto;
  padding: 40px 34px 56px;
  box-sizing: border-box;
}

.navesa-offers__title {
  margin: 0;
  color: #001528;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--navesa-font);
  font-size: 29.34px;
  line-height: 35.4px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.navesa-offers__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.navesa-offers__slider {
  overflow: hidden;
  margin-top: 24px;
}

.navesa-offers__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  transition: transform 0.28s ease;
  will-change: transform;
}

.navesa-offers__card {
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 0;
  padding: 0 6px;
  box-sizing: border-box;
}

.navesa-offers__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

.navesa-offers__card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 18px;
}

.navesa-offers__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.navesa-offers__arrow {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.navesa-offers__arrow img {
  width: 36px;
  height: 36px;
  display: block;
  border: none !important;
  box-shadow: none !important;
}

.navesa-offers__arrow:hover,
.navesa-offers__arrow:focus,
.navesa-offers__arrow:active,
.navesa-offers__arrow:disabled {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.navesa-models {
  background: #ffffff;
}

.navesa-models__inner {
  width: min(100%, 1281px);
  margin: 0 auto;
  padding: 44px 34px 72px;
  box-sizing: border-box;
}

.navesa-models__title {
  margin: 0;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--navesa-font);
  font-size: 29.34px;
  line-height: 35.4px;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.navesa-models__title span {
  font-weight: 700;
}

.navesa-models__grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.navesa-models__media-link {
  display: block;
  text-decoration: none;
}

.navesa-models__slider {
  overflow: hidden;
  margin-top: 52px;
}

.navesa-models__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  transition: transform 0.28s ease;
  will-change: transform;
}

.navesa-models__card {
  text-align: center;
}

.navesa-models__card img {
  width: 100%;
  display: block;
}

.navesa-models__name,
.navesa-models__cta {
  font-family: var(--navesa-font);
  letter-spacing: -0.02em;
}

.navesa-models__name {
  margin: 26px 0 0;
  color: #000000;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.navesa-models__cta {
  min-width: 118px;
  min-height: 34px;
  margin-top: 18px;
  padding: 9px 13px;
  border: 1px solid #0668e7;
  border-radius: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  box-sizing: border-box;
}

.navesa-models__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.navesa-models__arrow {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.navesa-models__arrow img {
  width: 36px;
  height: 36px;
  display: block;
  border: none !important;
  box-shadow: none !important;
}

.navesa-models__arrow:hover,
.navesa-models__arrow:focus,
.navesa-models__arrow:active,
.navesa-models__arrow:disabled {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.navesa-gallery {
  background: #f4f9ff;
}

.navesa-gallery__inner {
  width: min(100%, 1281px);
  margin: 0 auto;
  padding: 56px 34px 40px;
  box-sizing: border-box;
}

.navesa-gallery__title,
.navesa-gallery__disclaimer p {
  font-family: var(--navesa-font);
  letter-spacing: -0.02em;
}

.navesa-gallery__title {
  margin: 0;
  color: #00095b;
  text-align: center;
  text-transform: uppercase;
  font-size: 29.34px;
  line-height: 35.4px;
  font-weight: 400;
}

.navesa-gallery__layout {
  margin-top: 48px;
  padding: 0;
}

.navesa-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.72fr);
  align-items: stretch;
  gap: 42px;
}

.navesa-gallery__left,
.navesa-gallery__right {
  min-width: 0;
}

.navesa-gallery__slot {
  overflow: hidden;
  min-width: 0;
  transition: opacity 0.28s ease;
}

.navesa-gallery__slot.is-fading {
  opacity: 0.34;
}

.navesa-gallery__slot img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  border-radius: inherit;
}

.navesa-gallery__left {
  border-radius: 16px;
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  height: 100%;
}

.navesa-gallery__right {
  display: grid;
  height: 100%;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 38px;
  min-width: 0;
}

.navesa-gallery__slot--stack {
  border-radius: 15px;
  height: 100%;
}

.navesa-gallery__left img,
.navesa-gallery__slot--stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navesa-gallery__disclaimer {
  width: 100%;
  margin-top: 38px;
  clear: both;
  position: relative;
  z-index: 1;
}

.navesa-gallery__disclaimer p {
  margin: 0;
  color: #000000;
  font-size: 8px;
  line-height: 11px;
  font-weight: 400;
  text-align: justify;
}

.navesa-gallery__disclaimer p + p {
  margin-top: 6px;
}

.navesa-footer {
  background: #00114f;
}

.navesa-footer__inner {
  width: min(100%, 1281px);
  margin: 0 auto;
  padding: 54px 34px 28px;
  box-sizing: border-box;
}

.navesa-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 212px) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.navesa-footer__brand {
  display: inline-flex;
  align-items: center;
}

.navesa-footer__brand img {
  width: min(100%, 184px);
  height: auto;
  display: block;
}

.navesa-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.navesa-footer__title,
.navesa-footer__text,
.navesa-footer__text-link,
.navesa-footer__bottom p {
  font-family: var(--navesa-font);
  letter-spacing: -0.02em;
}

.navesa-footer__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 14px;
  line-height: 13.1px;
  font-weight: 700;
}

.navesa-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navesa-footer__item + .navesa-footer__item {
  margin-top: 2px;
}

.navesa-footer__text,
.navesa-footer__text-link {
  color: #ffffff;
  font-size: 11px;
  line-height: 20px;
  font-weight: 300;
  text-decoration: none;
  text-transform: capitalize;
  transition: opacity 0.2s ease;
}

.navesa-footer__text-link.is-email,
.navesa-footer__text.is-email {
  text-transform: none;
}

.navesa-footer__text-link:hover,
.navesa-footer__text-link:focus,
.navesa-footer__text-link:active {
  color: #ffffff;
  opacity: 0.72;
}

.navesa-footer__socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.navesa-footer__social-link {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.navesa-footer__social-link img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.navesa-footer__divider {
  height: 3px;
  margin-top: 34px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.05) 100%);
  mix-blend-mode: overlay;
}

.navesa-footer__bottom {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}

.navesa-footer__safety {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.navesa-footer__safety img {
  width: 28px;
  height: auto;
  display: block;
}

.navesa-footer__safety p,
.navesa-footer__legal {
  margin: 0;
  color: #ffffff;
  font-size: 11px;
  line-height: 20.1px;
  font-weight: 300;
}

.navesa-footer__legal {
  text-align: right;
}

.navesa-model-page__hero {
  background: #f4f9ff;
}

.navesa-model-page__hero-inner,
.navesa-model-page__highlights-inner,
.navesa-model-page__content-inner {
  width: min(100%, 1281px);
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
  box-sizing: border-box;
}

.navesa-model-page__hero-inner {
  padding-top: 54px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  align-items: center;
  gap: 42px;
}

.navesa-model-page__eyebrow,
.navesa-model-page__title,
.navesa-model-page__summary,
.navesa-model-page__cta,
.navesa-model-page__highlight h2,
.navesa-model-page__highlight p,
.navesa-model-page__content-copy h2,
.navesa-model-page__content-copy p {
  font-family: var(--navesa-font);
  letter-spacing: -0.02em;
}

.navesa-model-page__eyebrow {
  margin: 0;
  color: #0668e7;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.navesa-model-page__title {
  margin: 12px 0 0;
  color: #001528;
  font-size: 42px;
  line-height: 44px;
  font-weight: 700;
}

.navesa-model-page__summary {
  margin: 18px 0 0;
  color: #1c2a45;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.navesa-model-page__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.navesa-model-page__cta {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
}

.navesa-model-page__cta--primary {
  background: #0668e7;
  color: #ffffff;
}

.navesa-model-page__cta--secondary {
  background: transparent;
  border: 1px solid #0668e7;
  color: #001528;
}

.navesa-model-page__hero-media img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.navesa-model-page__highlights {
  background: #ffffff;
}

.navesa-model-page__highlights-inner {
  padding-top: 46px;
  padding-bottom: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.navesa-model-page__highlight {
  padding: 24px;
  border-radius: 20px;
  background: #f7faff;
}

.navesa-model-page__highlight h2 {
  margin: 0;
  color: #001528;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.navesa-model-page__highlight p {
  margin: 12px 0 0;
  color: #1c2a45;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.navesa-model-page__content {
  background: #ffffff;
}

.navesa-model-page__content-inner {
  padding-top: 0;
  padding-bottom: 72px;
}

.navesa-model-page__content-copy {
  max-width: 760px;
}

.navesa-model-page__content-copy h2 {
  margin: 0;
  color: #001528;
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
}

.navesa-model-page__content-copy p {
  margin: 18px 0 0;
  color: #1c2a45;
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
}

.navesa-model-page__offers,
.navesa-model-page__gallery {
  background: #ffffff;
}

.navesa-model-page__offers-inner,
.navesa-model-page__gallery-inner {
  width: min(100%, 1281px);
  margin: 0 auto;
  padding: 0 34px 72px;
  box-sizing: border-box;
}

.navesa-model-page__section-heading p,
.navesa-model-page__section-heading h2,
.navesa-model-page__offer-copy h3,
.navesa-model-page__offer-copy p,
.navesa-model-page__offer-copy a {
  font-family: var(--navesa-font);
  letter-spacing: -0.02em;
}

.navesa-model-page__section-heading p {
  margin: 0;
  color: #0668e7;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.navesa-model-page__section-heading h2 {
  margin: 10px 0 0;
  color: #001528;
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
}

.navesa-model-page__offers-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.navesa-model-page__offer-card {
  border-radius: 22px;
  overflow: hidden;
  background: #f7faff;
}

.navesa-model-page__offer-card img {
  width: 100%;
  display: block;
}

.navesa-model-page__offer-copy {
  padding: 22px;
}

.navesa-model-page__offer-copy h3 {
  margin: 0;
  color: #001528;
  font-size: 21px;
  line-height: 24px;
  font-weight: 700;
}

.navesa-model-page__offer-copy p {
  margin: 12px 0 0;
  color: #1c2a45;
  font-size: 14px;
  line-height: 22px;
}

.navesa-model-page__offer-copy a {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0668e7;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.navesa-model-page__gallery-block {
  margin-top: 24px;
}

.navesa-model-page__gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
}

.navesa-model-page__gallery-grid > img,
.navesa-model-page__gallery-stack img {
  width: 100%;
  display: block;
  border-radius: 22px;
  object-fit: cover;
}

.navesa-model-page__gallery-stack {
  display: grid;
  gap: 18px;
}

@media (max-width: 1024px) {
  .navesa-offers__grid,
  .navesa-models__grid,
  .navesa-model-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .navesa-header__inner {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .navesa-header__topbar {
    width: 100%;
  }

  .navesa-header__panel {
    width: 100%;
    flex-direction: column;
    gap: 18px;
  }

  .navesa-header__nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .navesa-hero__media {
    height: 460px;
  }

  .navesa-hero__overlay-inner {
    padding: 28px 24px;
  }

  .navesa-hero__form-card {
    width: min(100%, 390px);
  }

  .navesa-offer__eyebrow {
    font-size: 24px;
  }

  .navesa-offer__price {
    font-size: 31px;
  }

  .navesa-features__inner {
    padding: 60px 24px 72px;
  }

  .navesa-feature,
  .navesa-feature--image-right {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .navesa-feature--image-right .navesa-feature__media,
  .navesa-feature--image-right .navesa-feature__content {
    order: initial;
  }

  .navesa-feature + .navesa-feature {
    margin-top: 56px;
  }

  .navesa-feature__content {
    max-width: none;
  }

  .navesa-features__cta-row {
    margin-top: 56px;
  }

  .navesa-video__inner {
    width: 100%;
  }

  .navesa-showcase__inner {
    padding: 48px 24px 60px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .navesa-showcase__content {
    max-width: none;
  }

  .navesa-showcase__badge {
    right: 12px;
    top: 28px;
  }

  .navesa-offers__inner {
    padding: 32px 24px 60px;
  }

  .navesa-offers__slider {
    margin-top: 20px;
  }

  .navesa-offers__track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .navesa-models__inner {
    padding: 36px 24px 60px;
  }

  .navesa-models__track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .navesa-gallery__inner {
    padding: 48px 24px 36px;
  }

  .navesa-gallery__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .navesa-gallery__layout {
    margin-top: 40px;
  }

  .navesa-gallery__right {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 20px;
  }

  .navesa-gallery__right img {
    height: auto;
    min-height: 240px;
  }

  .navesa-gallery__disclaimer {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(6, 104, 231, 0.12);
    background: #f4f9ff;
  }

  .navesa-footer__inner {
    padding: 48px 24px 28px;
  }

  .navesa-footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .navesa-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .navesa-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .navesa-footer__legal {
    text-align: left;
  }

  .navesa-model-page__hero-inner,
  .navesa-model-page__highlights-inner,
  .navesa-model-page__content-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .navesa-model-page__hero-inner {
    grid-template-columns: 1fr;
  }

  .navesa-model-page__highlights-inner {
    grid-template-columns: 1fr;
  }

  .navesa-model-page__offers-grid,
  .navesa-model-page__gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  .admin-bar .navesa-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  .navesa-offers__grid,
  .navesa-models__grid,
  .navesa-model-hero-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .navesa-model-hero-grid {
    padding: 14px;
  }

  .navesa-header__inner {
    padding: 16px;
    gap: 12px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .navesa-header__topbar {
    width: auto;
  }

  .navesa-header__brand img {
    width: 108px;
  }

  .navesa-header__menu-button {
    display: none !important;
  }

  .navesa-header__panel {
    display: flex;
    width: auto;
    margin-top: 0;
    padding: 0;
    border-top: 0;
    flex: 0 0 auto;
    gap: 0;
  }

  .navesa-header__nav {
    display: none;
  }

  .navesa-header__cta {
    font-size: 13px;
    line-height: 22px;
  }

  .navesa-header__cta {
    width: auto;
    margin-top: 0;
    min-width: 0;
    padding: 6px 16px;
    min-height: 42px;
  }

  .navesa-hero__media {
    height: 520px;
  }

  .navesa-hero__overlay {
    position: static;
    inset: auto;
    background: #ffffff;
  }

  .navesa-hero__overlay-inner {
    padding: 18px 18px 0;
  }

  .navesa-hero__form-card {
    width: 100%;
    padding: 22px 18px 20px;
    border-radius: 24px;
    margin-top: -40px;
  }

  .navesa-hero__form-title {
    font-size: 24px;
  }

  .navesa-hero__form-description,
  .navesa-hero__form-context-subtitle {
    font-size: 13px;
  }

  .navesa-hero__form-field input,
  .navesa-hero__form-submit {
    min-height: 50px;
  }

  .navesa-lead-modal {
    padding: 16px;
  }

  .navesa-lead-modal__dialog {
    width: 100%;
    padding: 26px 18px 22px;
    border-radius: 24px;
  }

  .navesa-lead-modal__hero {
    display: block;
  }

  .navesa-lead-modal__title {
    font-size: 24px;
  }

  .navesa-lead-modal__description {
    font-size: 13px;
  }

  .navesa-lead-modal__field span {
    font-size: 13px;
  }

  .navesa-lead-modal__field input {
    min-height: 60px;
    padding: 0 18px;
    font-size: 16px;
  }

  .navesa-lead-modal__privacy {
    font-size: 12px;
  }

  .navesa-lead-modal__submit {
    min-height: 62px;
    font-size: 16px !important;
    grid-template-columns: 24px 1fr 24px;
    gap: 10px;
    padding: 0 18px;
  }

  .navesa-lead-modal__submit-arrow,
  .navesa-lead-modal__submit-icon {
    width: 24px;
    height: 24px;
  }

  .navesa-lead-modal__submit-icon img {
    width: 22px;
    height: 22px;
  }

  .navesa-lead-modal__submit-arrow svg {
    width: 20px;
    height: 20px;
  }

  .navesa-lead-modal__field input,
  .navesa-lead-modal__submit {
    min-height: 52px;
  }

  .navesa-gallery-lightbox {
    padding: 14px;
  }

  .navesa-gallery-lightbox__dialog {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .navesa-gallery-lightbox__figure {
    border-radius: 0;
  }

  .navesa-gallery-lightbox__figure img {
    max-height: calc(100vh - 120px);
  }

  .navesa-gallery-lightbox__close {
    top: -6px;
    right: -2px;
    width: 40px;
    height: 40px;
  }

  .navesa-gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 2;
  }

  .navesa-gallery-lightbox__nav--prev {
    left: 10px;
  }

  .navesa-gallery-lightbox__nav--next {
    right: 10px;
  }

  .navesa-gallery-lightbox__close svg,
  .navesa-gallery-lightbox__nav svg {
    width: 28px;
    height: 28px;
  }

	.navesa-whatsapp-float {
		right: 14px;
		bottom: 14px;
		width: 56px;
		height: 56px;
	}

	.navesa-whatsapp-float__icon {
		width: 25px;
		height: 25px;
	}

  .navesa-offer__inner {
    min-height: 180px;
    padding: 22px 18px;
  }

  .navesa-offer__eyebrow {
    font-size: 20px;
    line-height: 28px;
  }

  .navesa-offer__price {
    margin-top: 10px;
    font-size: 25px;
    line-height: 28px;
  }

  .navesa-features__inner {
    padding: 48px 18px 58px;
  }

  .navesa-feature__title {
    font-size: 20px;
    line-height: 28px;
  }

  .navesa-feature__body {
    margin-top: 20px;
  }

  .navesa-features__cta-row {
    gap: 16px;
  }

  .navesa-features__cta,
  .navesa-features__cta--primary,
  .navesa-features__cta--secondary,
  .navesa-features__cta--outline {
    width: 100%;
    min-width: 0;
  }

  .navesa-showcase__inner {
    padding: 36px 18px 48px;
  }

  .navesa-showcase__badge {
    position: static;
    margin: 0 auto 16px;
    display: inline-flex;
  }

  .navesa-showcase__title {
    font-size: 20px;
    line-height: 28px;
  }

  .navesa-showcase__eyebrow {
    line-height: 24px;
  }

  .navesa-showcase__cta {
    margin-top: 24px;
  }

  .navesa-thank-you__card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .navesa-thank-you__title {
    font-size: 28px;
  }

  .navesa-thank-you__description {
    font-size: 14px;
  }

  .navesa-thank-you__button {
    width: 100%;
    min-width: 0;
  }

  .navesa-offers__inner {
    padding: 28px 18px 48px;
  }

  .navesa-offers__title {
    font-size: 24px;
    line-height: 30px;
  }

  .navesa-offers__slider {
    margin-top: 18px;
  }

  .navesa-offers__track {
    grid-auto-columns: 100%;
  }

  .navesa-offers__card {
    min-height: auto;
    padding: 0;
  }

  .navesa-offers__media {
    aspect-ratio: 1 / 1;
    padding: 8px;
  }

  .navesa-offers__card img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .navesa-offers__controls {
    margin-top: 14px;
  }

  .navesa-models__inner {
    padding: 28px 18px 48px;
  }

  .navesa-models__title {
    font-size: 24px;
    line-height: 30px;
  }

  .navesa-models__slider {
    margin-top: 36px;
  }

  .navesa-models__track {
    grid-auto-columns: 100%;
  }

  .navesa-gallery__inner {
    padding: 40px 18px 30px;
  }

  .navesa-gallery__title {
    font-size: 24px;
    line-height: 30px;
  }

  .navesa-gallery__layout {
    margin-top: 32px;
  }

  .navesa-gallery__grid {
    gap: 16px;
  }

  .navesa-gallery__left {
    aspect-ratio: 4 / 5;
  }

  .navesa-gallery__left img {
    height: 100%;
  }

  .navesa-gallery__right {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .navesa-gallery__right img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .navesa-gallery__disclaimer {
    margin-top: 24px;
    padding: 18px 14px 0;
    background: #f4f9ff;
  }

  .navesa-gallery__disclaimer p {
    font-size: 11px;
    line-height: 16px;
    text-align: left;
  }

  .navesa-gallery__right {
    height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .navesa-gallery__disclaimer {
    margin-top: 22px;
  }

  .navesa-gallery__disclaimer p {
    font-size: 9px;
    line-height: 13px;
  }

  .navesa-footer__inner {
    padding: 40px 18px 24px;
  }

  .navesa-footer__brand img {
    width: 150px;
  }

  .navesa-footer__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .navesa-footer__title {
    margin-bottom: 14px;
  }

  .navesa-footer__divider {
    margin-top: 28px;
  }

  .navesa-footer__bottom {
    margin-top: 18px;
    gap: 14px;
  }

  .navesa-footer__safety {
    align-items: flex-start;
  }

  .navesa-footer__safety img {
    width: 24px;
    flex: 0 0 auto;
  }

  .navesa-footer__safety p,
  .navesa-footer__legal {
    font-size: 10px;
    line-height: 16px;
  }

  .navesa-model-page__hero-inner,
  .navesa-model-page__highlights-inner,
  .navesa-model-page__content-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .navesa-model-page__hero-inner {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .navesa-model-page__title {
    font-size: 28px;
    line-height: 32px;
  }

  .navesa-model-page__summary,
  .navesa-model-page__content-copy p {
    font-size: 14px;
    line-height: 24px;
  }

  .navesa-model-page__cta,
  .navesa-model-page__cta--primary,
  .navesa-model-page__cta--secondary {
    width: 100%;
  }

  .navesa-model-page__highlight {
    padding: 18px;
  }

  .navesa-model-page__content-inner {
    padding-bottom: 48px;
  }

  .navesa-model-page__offers-inner,
  .navesa-model-page__gallery-inner {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 48px;
  }

  .navesa-whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }
}
