@font-face {
  font-family: "NouvelR";
  src: url("../fonts/NouvelRLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "NouvelR";
  src: url("../fonts/NouvelRBook.ttf") format("truetype");
  font-style: normal;
  font-weight: 350;
  font-display: swap;
}

@font-face {
  font-family: "NouvelR";
  src: url("../fonts/NouvelRRegular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "NouvelR";
  src: url("../fonts/NouvelRSemibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "NouvelR";
  src: url("../fonts/NouvelRBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "NouvelR";
  src: url("../fonts/NouvelRExtrabold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Read";
  src: url("../fonts/read-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Read";
  src: url("../fonts/read-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Read";
  src: url("../fonts/read-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --renault-shell-max: 1176px;
  --renault-shell-wide: 1440px;
  --renault-shell-gutter: 133px;
  --renault-section-space: 64px;
  --renault-header-side: 41px;
  --renault-white: #ffffff;
  --renault-black: #000000;
  --renault-yellow: #efdf00;
  --renault-yellow-dark: #e8d800;
  --renault-surface: #ffffff;
  --renault-surface-soft: #f4f8f7;
  --renault-border: #d9d9d6;
  --renault-text-secondary: #3e3f40;
  --renault-text-tertiary: #656666;
  --renault-text-quaternary: #888b8d;
  --renault-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  --renault-ease: 0.18s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--renault-surface);
  color: var(--renault-black);
  font-family: "NouvelR", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  width: fit-content;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 12px;
  background: var(--renault-black);
  color: var(--renault-white);
  inset: 12px auto auto 12px;
  z-index: 200;
}

.renault-page {
  min-height: 100vh;
  background: var(--renault-surface);
}

.renault-shell {
  width: min(var(--renault-shell-max), calc(100vw - (var(--renault-shell-gutter) * 2)));
  margin: 0 auto;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-search-hit {
  outline: 2px solid var(--renault-yellow);
  outline-offset: 4px;
}

.renault-menu-open {
  overflow: hidden;
}

.renault-button,
.renault-used-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  /* border: 1px solid var(--renault-black); */
  background: var(--renault-yellow);
  color: var(--renault-black);
  font-family: "NouvelR", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: background-color var(--renault-ease), border-color var(--renault-ease), color var(--renault-ease);
}

.renault-button.renault-button--light {
  border: 1px solid #000;
}

.renault-button:hover,
.renault-button:focus-visible {
  background: var(--renault-yellow-dark);
  border-color: var(--renault-black);
  color: var(--renault-black);
}

.renault-button--light {
  background: var(--renault-white);
  color: var(--renault-black);
}

.renault-button--light:hover,
.renault-button--light:focus-visible {
  background: #f1f1ed;
  border-color: var(--renault-black);
  color: var(--renault-black);
}

.renault-button:focus-visible,
.renault-used-card__cta:focus-visible,
.renault-nav a:focus-visible,
.renault-header__meta-link:focus-visible,
.renault-search-modal__result:focus-visible,
.renault-hero__arrow:focus-visible {
  outline: 2px solid var(--renault-yellow);
  outline-offset: 3px;
}

.renault-header {
  background: var(--renault-white);
  position: relative;
  z-index: 40;
}

.renault-header__inner {
  width: min(var(--renault-shell-wide), calc(100vw - (var(--renault-header-side) * 2)));
  min-height: 160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  column-gap: 32px;
}

.renault-brand {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--renault-black);
  text-decoration: none;
}

.renault-brand__emblem {
  flex: 0 0 auto;
  width: 67px;
  height: 88px;
}

.renault-brand__emblem img {
  width: 67px;
  height: 88px;
  object-fit: contain;
}

.renault-brand__copy {
  display: flex;
  flex-direction: column;
}

.renault-brand__title-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.renault-brand__title,
.renault-brand__divider {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
}

.renault-brand__location {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}

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

.renault-nav a {
  color: var(--renault-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.renault-nav a:hover,
.renault-nav a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.renault-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.renault-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--renault-black);
  transform-origin: center;
  transition: transform var(--renault-ease), opacity var(--renault-ease);
}

.renault-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.renault-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.renault-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.renault-header__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.renault-header__meta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 73px;
  color: var(--renault-black);
  text-decoration: none;
}

.renault-header__meta-link span {
  font-family: "NouvelR", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.renault-header__meta-link svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.renault-dealer {
  color: var(--renault-black);
  text-decoration: none;
}

.renault-dealer--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.renault-dealer__vertical-mark,
.renault-dealer__vertical-top {
  display: block;
  line-height: 0;
}

.renault-dealer__vertical-mark {
  order: 2;
}

.renault-dealer__vertical-top {
  order: 1;
}

.renault-dealer__vertical-mark img {
  width: 80px;
  height: 10px;
  object-fit: contain;
}

.renault-dealer__vertical-top img {
  width: 40px;
  height: 30px;
  object-fit: contain;
}

.renault-dealer__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  display: none;
}

/* .renault-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, 0.4);
} */

.renault-hero {
  background: var(--renault-white);
}

.renault-hero .renault-shell {
  width: 100%;
}

.renault-hero__frame {
  position: relative;
  min-height: 699px;
  overflow: hidden;
}

.renault-hero__slides {
  position: relative;
  min-height: 699px;
}

.renault-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.renault-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.renault-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.renault-hero__image {
  width: 100%;
  height: 699px;
  object-fit: cover;
}

.renault-hero__slide--renault-espace-full-hybrid-e-tech .renault-hero__image {
  object-position: center 78%;
}

.renault-hero__content {
  position: absolute;
  top: clamp(120px, 14vw, 176px);
  left: clamp(20px, 9vw, 133px);
  z-index: 2;
  width: min(610px, calc(100% - (clamp(20px, 9vw, 133px) * 2)));
  color: var(--renault-white);
}

.renault-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.renault-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: clamp(32px, 3.3vw, 40px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.renault-hero__subtitle {
  margin: 16px 0 0;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  line-height: clamp(18px, 1.9vw, 20px);
  text-transform: uppercase;
}

.renault-hero__copy {
  margin: 24px 0 0;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: clamp(20px, 2vw, 22px);
}

.renault-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.renault-hero__overlay {
  position: absolute;
  top: clamp(120px, 14vw, 176px);
  left: clamp(20px, 9vw, 133px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 1.6vw, 20px);
  width: min(570px, calc(100% - (clamp(20px, 9vw, 133px) * 2)));
  min-height: 202px;
  padding: clamp(14px, 1.6vw, 20px);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  color: var(--renault-white);
}

.renault-hero__overlay-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(14px, 1.6vw, 20px) 5px;
  width: 100%;
}

.renault-hero__overlay-hours,
.renault-hero__overlay-contact {
  display: flex;
  flex-direction: column;
}

.renault-hero__overlay-hours {
  align-items: center;
  gap: 10px;
}

.renault-hero__overlay-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.renault-hero__overlay-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #40d37c;
  flex: 0 0 8px;
}

.renault-hero__overlay-status h2 {
  margin: 0;
  font-family: "NouvelR", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
  text-align: center;
  color: var(--renault-white);
}

.renault-hero__overlay-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 14px;
  flex: 0 0 10px;
}

.renault-hero__overlay-arrow svg {
  display: block;
}

.renault-hero__overlay-schedule {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.renault-hero__overlay-schedule-row {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: auto;
  max-width: 100%;
}

.renault-hero__overlay-day {
  font-family: "NouvelR", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-align: center;
  color: var(--renault-white);
}

.renault-hero__overlay-time {
  font-family: "NouvelR", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-align: center;
  color: var(--renault-white);
}

.renault-hero__overlay-contact {
  justify-content: space-between;
  gap: 12px;
}

.renault-hero__overlay-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.renault-hero__overlay-icon {
  width: clamp(32px, 5vw, 60px);
  height: clamp(32px, 5vw, 60px);
  flex: 0 0 clamp(32px, 5vw, 60px);
  color: var(--renault-white);
}

.renault-hero__overlay-icon svg,
.renault-hero__overlay-icon path {
  fill: #ffffff;
}

.renault-hero__overlay-contact .renault-service-card__contact-icon--location svg {
  width: clamp(20px, 3.2vw, 37.9400024414px);
  height: clamp(19px, 3vw, 36.0400009155px);
  margin-top: clamp(3px, 0.8vw, 9.12px);
  margin-left: clamp(3px, 1vw, 11.9px);
}

.renault-hero__overlay-contact .renault-service-card__contact-icon--phone svg {
  width: clamp(20px, 3.2vw, 37.9400024414px);
  height: clamp(19px, 3vw, 36.0400009155px);
  margin-top: clamp(3px, 0.8vw, 9.12px);
  margin-left: clamp(3px, 1vw, 11.9px);
}

.renault-hero__overlay-contact-text {
  flex: 1 1 auto;
  font-family: "NouvelR", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: clamp(20px, 2vw, 24px);
  letter-spacing: 0.2px;
  text-align: center;
  color: var(--renault-white);
}

.renault-hero__overlay-footer {
  width: 100%;
  margin: 0;
  font-family: "NouvelR", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-align: center;
  color: var(--renault-white);
}

.renault-hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 131.5px;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.3);
  color: var(--renault-white);
  transform: translateY(-50%);
  transition: background-color var(--renault-ease), opacity var(--renault-ease);
}

.renault-hero__arrow:hover,
.renault-hero__arrow:focus-visible {
  background: rgba(0, 0, 0, 0.42);
}

.renault-hero__arrow:disabled {
  opacity: 0.4;
}

.renault-hero__arrow--prev {
  left: 0;
}

.renault-hero__arrow--next {
  right: 0;
}

.renault-hero__arrow span {
  width: 16px;
  height: 16px;
  border-top: 2px solid rgba(255, 255, 255, 0.88);
  border-right: 2px solid rgba(255, 255, 255, 0.88);
}

.renault-hero__arrow--prev span {
  transform: rotate(-135deg);
}

.renault-hero__arrow--next span {
  transform: rotate(45deg);
}

@media (min-width: 1181px) {
  .renault-header__inner {
    position: relative;
    display: block;
    /* width: min(1399px, calc(100vw - 82px)); */
    width: 97%;
    min-height: 152px;
    padding-top: 8px;
  }

  .renault-brand {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 554px;
    height: 116px;
  }

  .renault-brand__emblem {
    position: absolute;
    top: 28px;
    left: 0;
  }

  .renault-brand__copy {
    position: absolute;
    top: 0;
    left: 120px;
    max-width: 434px;
  }

  .renault-brand__title-row {
    gap: 0;
  }

  .renault-brand__divider {
    margin: 0 6px 0 2px;
  }

  .renault-nav {
    position: absolute;
    top: 63px;
    left: 120px;
  }

  .renault-header__meta {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 260px;
    justify-content: space-between;
  }

  .renault-dealer {
    /* position: absolute;
    top: 48px;
    right: 52px; */
  }

  .renault-dealer--vertical {
    gap: 0;
    width: 80px;
  }

  .renault-dealer__vertical-top {
    margin-bottom: 0;
  }

  .renault-dealer__vertical-mark {
    margin-top: -2px;
  }
}

.renault-section {
  padding: var(--renault-section-space) 0;
  background: var(--renault-surface);
}

.renault-range {
  background: var(--renault-white);
}

.renault-services {
  position: relative;
  z-index: 80;
  overflow: visible;
}

.renault-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0 auto 64px;
  text-align: center;
}

.renault-section-heading--wide {
  max-width: 760px;
}

.renault-section-heading h2 {
  margin: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0;
  text-transform: none;
}

.renault-section-heading p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
}

.renault-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 49px;
}

.renault-model-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 40px;
  justify-content: center;
}

.renault-model-filters__button {
  padding: 0 0 10px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--renault-text-secondary);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  cursor: pointer;
}

.renault-model-filters__button.is-active {
  border-bottom-color: var(--renault-yellow);
  color: var(--renault-text-primary);
}

.renault-model-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--renault-white);
}

.renault-model-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 183px;
  margin-bottom: 8px;
  background: var(--renault-white);
}

.renault-model-card__media img {
  width: 100%;
  max-width: 325px;
  object-fit: contain;
}

.renault-model-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  background: var(--renault-white);
}

.renault-model-card__badge-slot {
  position: relative;
  margin: 0 0 12px;
}

.renault-model-card__badge-slot:not(.is-active) {
  width: 0;
  height: 0;
  margin: 0;
}

.renault-model-card__badge-note {
  position: relative;
  inset: 0 0 auto;
  color: #656666;
  font-family: "NouvelR", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-transform: lowercase;
}

.renault-model-card__badge {
  position: relative;
  inset: auto 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 20px 4px;
  border: 1px solid #30a8de;
  border-radius: 4px;
  color: #30a8de;
  font-family: "NouvelR", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  text-transform: lowercase;
}

.renault-model-card__body h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.renault-model-card__price {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.renault-model-card__price span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  text-transform: lowercase;
}

.renault-model-card__price * {
  font-family: "NouvelR", sans-serif;
}

.renault-model-card__description {
  margin: 23px 0 0;
  color: var(--renault-text-secondary);
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
}

.renault-model-card__energetic {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.renault-model-card__energetic-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.renault-model-card__energetic-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 16px;
  background: #7bc567;
  color: var(--renault-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.renault-model-card__energetic-value.is-a { background: #00a651; }
.renault-model-card__energetic-value.is-b { background: #56b947; }
.renault-model-card__energetic-value.is-c { background: #8dc63f; }
.renault-model-card__energetic-value.is-d { background: #f7e017; color: #1f1f1f; }
.renault-model-card__energetic-value.is-e { background: #fdb813; color: #1f1f1f; }
.renault-model-card__energetic-value.is-f { background: #f47b20; }
.renault-model-card__energetic-value.is-g { background: #ed1c24; }

.renault-model-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.renault-model-card__action-link {
  width: fit-content;
}

.renault-model-grid .renault-model-card__action-link:not(.renault-button--light) {
  border: 1px solid var(--renault-black);
  background: var(--renault-black);
  color: var(--renault-white);
  font-family: "NouvelR";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: center;
}

.renault-model-grid .renault-model-card__action-link:not(.renault-button--light):hover,
.renault-model-grid .renault-model-card__action-link:not(.renault-button--light):focus-visible {
  background: var(--renault-black);
  border-color: var(--renault-black);
  color: var(--renault-white);
}

.renault-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px 22px;
  position: relative;
  isolation: isolate;
}

.renault-service-card {
  position: relative;
  min-height: 170px;
  padding: 27px 18px 16px 18px;
  overflow: visible;
  z-index: 1;
}

.renault-service-card:hover,
.renault-service-card:focus-within,
.renault-service-card.is-popover-open {
  z-index: 50;
}

.renault-service-card__bar {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 3px;
  background: var(--renault-yellow);
}

.renault-service-card__info {
  position: absolute;
  top: 27px;
  right: 18px;
  z-index: 60;
}

.renault-service-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1.5px solid var(--renault-black);
  border-radius: 50%;
  background: var(--renault-white);
  color: var(--renault-black);
  font-family: "NouvelR";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.renault-service-card__icon:focus-visible {
  outline: 2px solid var(--renault-yellow);
  outline-offset: 3px;
}

.renault-service-card__popover {
  position: absolute;
  top: 38px;
  right: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: min(314px, calc(100vw - 32px));
  min-height: 278px;
  padding: 20px;
  background: var(--renault-white);
  border: 1px solid var(--renault-black);
  box-shadow: 0 4px 6px rgba(16, 24, 40, 0.1), 0 2px 4px rgba(16, 24, 40, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 70;
  transform: translateY(8px);
  transition: opacity var(--renault-ease), transform var(--renault-ease), visibility var(--renault-ease);
}

.renault-service-card__info.is-open .renault-service-card__popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.renault-service-card__popover-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--renault-black);
  font-family: "NouvelR";
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  top: 6px;
  right: 6px;

}

.renault-service-card__popover-close:hover {
  opacity: 0.7;
}

.renault-service-card__popover-close:focus-visible {
  outline: 2px solid var(--renault-yellow);
  outline-offset: 3px;
}

.renault-service-card__popover-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0;
}

.renault-service-card__popover-section--hours {
  align-items: center;
  gap: 10px;
}

.renault-service-card__popover-section h4 {
  margin: 0;
  font-family: "NouvelR";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-align: center;
  text-transform: capitalize;
  color: var(--renault-black);
}

.renault-service-card__popover-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.renault-service-card__popover-label {
  min-width: 108px;
  font-family: "NouvelR";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.2px;
  color: var(--renault-black);
}

.renault-service-card__popover-value {
  min-width: 132px;
  font-family: "NouvelR";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.2px;
  color: var(--renault-black);
}

.renault-service-card__popover-divider {
  width: 100%;
  border-top: 1px solid #ccc;
}

.renault-service-card__contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.renault-service-card__contact-row + .renault-service-card__contact-row {
  margin-top: 12px;
}

.renault-service-card__contact-row--email {
  justify-content: center;
}

.renault-service-card__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--renault-black);
  font-size: 18px;
  line-height: 1;
}

.renault-service-card__contact-icon svg {
  display: block;
  flex: 0 0 auto;
}

.renault-service-card__contact-icon--location svg {
  width: 25.3133335114px;
  height: 24.0346660614px;
  margin-top: 4px;
  margin-left: 3.33px;
}

.renault-service-card__contact-icon--phone svg {
  width: 19.5860004425px;
  height: 19.5225124359px;
  margin-top: 6px;
  margin-left: 6px;
}

.renault-service-card__contact-icon--email svg {
  width: 24.0020008087px;
  height: 17.313331604px;
  margin-top: 7.33px;
  margin-left: 4px;
}

.renault-service-card__contact-text {
  flex: 1 1 auto;
  font-family: "NouvelR";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.2px;
  color: var(--renault-black);
}

.renault-service-card__contact-row--email .renault-service-card__contact-text {
  flex-grow: 0;
}

.renault-service-card h3 {
  max-width: 170px;
  margin: 0 48px 24px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.renault-service-card p {
  margin: 0;
  color: var(--renault-text-tertiary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.renault-used__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(253px, 253.5px));
  gap: 54px;
  justify-content: start;
}

.renault-used-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 253.5px;
  min-height: 544px;
}

.renault-used-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 177px;
  overflow: hidden;
  background: var(--renault-surface-soft);
}

.renault-used-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.renault-used-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  background: var(--renault-black);
  color: var(--renault-white);
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.02em;
}

.renault-used-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding-top: 19px;
}

.renault-used-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.renault-used-card__meta,
.renault-used-card__location {
  margin: 2px 0 0;
  color: var(--renault-text-secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.renault-used-card__meta.subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
}

.renault-used-card__meta.meta {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin-top: 2px;
}

.renault-used-card__price {
  margin: 28px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.renault-used-card__monthly {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: lowercase;
}

.renault-used-card__legal {
  margin: 6px 0 0;
  color: var(--renault-text-tertiary);
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
}

.renault-used-card__location {
  margin-top: 18px;
}

.renault-used__grid .renault-model-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 50px;
}

.renault-used__grid .renault-model-card__action-link:not(.renault-button--light) {
  border: 1px solid var(--renault-black);
  background: var(--renault-black);
  color: var(--renault-white);
}

.renault-used__grid .renault-model-card__action-link:not(.renault-button--light):hover,
.renault-used__grid .renault-model-card__action-link:not(.renault-button--light):focus-visible {
  background: var(--renault-black);
  border-color: var(--renault-black);
  color: var(--renault-white);
}

.renault-used__grid .renault-model-card__action-link.renault-button--light {
  border: 1px solid var(--renault-black);
  background: var(--renault-white);
  color: var(--renault-black);
}

.renault-used__grid .renault-model-card__action-link.renault-button--light:hover,
.renault-used__grid .renault-model-card__action-link.renault-button--light:focus-visible {
  background: var(--renault-white);
  border-color: var(--renault-black);
  color: var(--renault-black);
}

.renault-used-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 50px;
}

.renault-used-card__action-link,
.renault-used-card__cta {
  min-width: 125px;
}

.renault-used-card__cta {
  background: var(--renault-black);
  color: var(--renault-white);
}

.renault-used-card__cta:hover,
.renault-used-card__cta:focus-visible {
  background: #202020;
  border-color: #202020;
  color: var(--renault-white);
}

.renault-workshop__banner {
  /* display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start; */
}

.renault-workshop__content,
.renault-workshop__visuals {
  min-width: 0;
}

.renault-workshop__visuals {
  margin-top: 64px;
}

.renault-workshop__visuals h2 {
  margin-bottom: 24px !important;
}

.renault-workshop__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.renault-workshop__banner h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  white-space: pre-line;
}

.renault-workshop__banner p {
  max-width: 560px;
  margin: 0;
  color: var(--renault-text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.renault-workshop__details {
  display: grid;
  gap: 16px;
  margin: 0;
}

.renault-workshop__details div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.renault-workshop__details dt {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.renault-workshop__details dd,
.renault-workshop__details a {
  margin: 0;
  color: var(--renault-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.renault-workshop__details a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.renault-workshop__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.renault-workshop__actions .renault-button:not(.renault-button--light) {
  border: 1px solid var(--renault-black);
  background: var(--renault-black);
  color: var(--renault-white);
  font-family: "NouvelR";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: center;
}

.renault-workshop__actions .renault-button:not(.renault-button--light):hover,
.renault-workshop__actions .renault-button:not(.renault-button--light):focus-visible {
  background: var(--renault-black);
  border-color: var(--renault-black);
  color: var(--renault-white);
}

.renault-workshop__map {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  line-height: 0;
}

.renault-workshop__map-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 580 / 320;
}

.renault-workshop__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renault-workshop__pin {
  position: absolute;
  top: 44%;
  left: 43%;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: #e14536;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -100%) rotate(-45deg);
}

.renault-workshop__pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--renault-white);
}

.renault-form {
  max-width: 1176px;
}

.renault-form__status {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid var(--renault-border);
  font-size: 14px;
  line-height: 18px;
}

.renault-form__status--success {
  border-color: rgba(35, 94, 52, 0.2);
  background: rgba(35, 94, 52, 0.08);
  color: #235e34;
}

.renault-form__status--error {
  border-color: rgba(144, 32, 32, 0.18);
  background: rgba(144, 32, 32, 0.08);
  color: #742121;
}

.renault-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 32px;
}

.renault-form label {
  display: grid;
  gap: 8px;
}

.renault-form label span {
  color: var(--renault-text-secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.renault-form__full {
  grid-column: 1 / -1;
}

.renault-form input,
.renault-form select,
.renault-form textarea,
.renault-search-modal__field input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--renault-border);
  border-radius: 10px;
  background: var(--renault-white);
  color: var(--renault-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.renault-form input,
.renault-form select,
.renault-search-modal__field input {
  min-height: 50px;
}

.renault-form textarea {
  min-height: 128px;
  resize: vertical;
}

.renault-form select {
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--renault-black) 50%),
    linear-gradient(135deg, var(--renault-black) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.renault-form__consent {
  margin-top: 16px;
}

.renault-checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 12px;
  align-items: start;
}

.renault-form__consent label {
  display: flex;
  align-items: center;
}

.renault-form__consent label span {
  padding-top: 6px;
}

.renault-form__consent label span a {
  text-decoration: underline;
}

.renault-checkbox input {
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1.5px solid var(--renault-text-tertiary);
  border-radius: 4px;
  accent-color: var(--renault-yellow);
}

.renault-checkbox span {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.renault-checkbox a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.renault-form__actions {
  margin-top: 32px;
}

.renault-form__actions .renault-button {
  min-width: 199px;
}

.renault-form__note {
  margin: 32px 0 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
}

#pedido-informacoes .wpcf7 {
  max-width: 1176px;
}

#pedido-informacoes .wpcf7 form .top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 32px;
}

#pedido-informacoes .wpcf7 form .top .left,
#pedido-informacoes .wpcf7 form .top .right {
  display: grid;
  gap: 16px;
}

#pedido-informacoes .wpcf7 form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--renault-text-secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

#pedido-informacoes .wpcf7 input[type="text"],
#pedido-informacoes .wpcf7 input[type="email"],
#pedido-informacoes .wpcf7 input[type="tel"],
#pedido-informacoes .wpcf7 select,
#pedido-informacoes .wpcf7 textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--renault-border);
  border-radius: 10px;
  background: var(--renault-white);
  color: var(--renault-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

#pedido-informacoes .wpcf7 input[type="text"],
#pedido-informacoes .wpcf7 input[type="email"],
#pedido-informacoes .wpcf7 input[type="tel"],
#pedido-informacoes .wpcf7 select {
  min-height: 50px;
}

#pedido-informacoes .wpcf7 textarea {
  min-height: 128px;
  resize: vertical;
}

#pedido-informacoes .wpcf7 select {
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--renault-black) 50%),
    linear-gradient(135deg, var(--renault-black) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

#pedido-informacoes .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

#pedido-informacoes .wpcf7 .wpcf7-acceptance {
  display: block;
  margin-top: 16px;
}

#pedido-informacoes .wpcf7 .wpcf7-list-item {
  margin: 0;
}

#pedido-informacoes .wpcf7 .wpcf7-list-item > label {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 12px;
  align-items: start;
  color: var(--renault-black);
  font-size: 14px;
  line-height: 18px;
}

#pedido-informacoes .wpcf7 input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1.5px solid var(--renault-text-tertiary);
  border-radius: 4px;
  accent-color: var(--renault-yellow);
}

#pedido-informacoes .wpcf7 .wpcf7-list-item-label a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#pedido-informacoes .wpcf7 .wpcf7-submit {
  border: 1px solid var(--renault-black);
  background: var(--renault-black);
  color: var(--renault-white);
  font-family: "NouvelR";
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.02em;
  padding: 11px 16px;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--renault-ease), border-color var(--renault-ease), color var(--renault-ease);
}

#pedido-informacoes .wpcf7 .wpcf7-submit:hover,
#pedido-informacoes .wpcf7 .wpcf7-submit:focus-visible {
  background: var(--renault-black);
  border-color: var(--renault-black);
  color: var(--renault-white);
}

#pedido-informacoes .wpcf7 .wpcf7-spinner {
  margin: 0 0 0 10px;
}

#pedido-informacoes .wpcf7 .wpcf7-not-valid-tip,
#pedido-informacoes .wpcf7 .wpcf7-response-output {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 16px;
}

.renault-campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 32px;
}

.renault-campaign-card {
  min-height: 100%;
}

.renault-campaign-card__panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  color: var(--renault-black);
}

.renault-campaign-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.renault-campaign-card__media {
  overflow: hidden;
}

.renault-campaign-card__media img {
  width: 100%;
  height: 201px;
  object-fit: cover;
}

.renault-campaign-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
}

.renault-campaign-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.renault-campaign-card p {
  margin: 0;
  color: var(--renault-text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.renault-campaign-card__media-link:hover img,
.renault-campaign-card__media-link:focus-visible img {
  opacity: 0.94;
}

.renault-campaign-card__media-link:focus-visible {
  outline: 2px solid var(--renault-yellow);
  outline-offset: 4px;
}

.renault-return-top {
  display: flex;
  justify-content: center;
  background: var(--renault-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.renault-return-top a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 49px;
  color: var(--renault-black);
  font-family: "NouvelR", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
}

.renault-return-top a:hover,
.renault-return-top a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.renault-return-top__icon {
  position: relative;
  width: 12px;
  height: 16px;
}

.renault-return-top__icon::before,
.renault-return-top__icon::after {
  content: "";
  position: absolute;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--renault-black);
}

.renault-return-top__icon::before {
  top: 1px;
  transform: rotate(45deg);
}

.renault-return-top__icon::after {
  top: 7px;
  transform: rotate(-45deg);
}

.renault-footer {
  background: var(--renault-black);
  color: var(--renault-white);
  padding-top: 48px;
}

.renault-footer .renault-shell {
  width: min(1226px, calc(100vw - 120px));
}

.renault-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr auto;
  gap: 56px;
  align-items: start;
}

.renault-footer__column,
.renault-footer__brand-column {
  min-width: 0;
}

.renault-footer__column h2 {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  text-transform: none;
}

.renault-footer__column a,
.renault-footer__column p,
.renault-footer__link {
  display: block;
  margin: 0;
  color: var(--renault-white);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.renault-footer__column a,
.renault-footer__link {
  text-decoration: none;
}

.renault-footer__column > :not(h2) + :not(h2) {
  margin-top: 8px;
}

.renault-footer__brand-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 163px;
  justify-content: flex-start;
}

.renault-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.renault-footer__brand img {
  width: 163px;
  height: 28px;
  object-fit: contain;
}

.renault-footer a,
.renault-footer p {
  text-decoration: none;
}

.renault-footer__social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}

.renault-footer__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.renault-footer__social-link {
  color: var(--renault-white);
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 25.06px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.renault-footer__social-link:hover,
.renault-footer__social-link:focus-visible {
  text-decoration: none;
}

.renault-footer__social-location {
  margin: 0;
  margin-left: auto;
  color: var(--renault-white);
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 23.2px;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
  text-transform: capitalize;

}

.renault-footer__subgrid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  /* background: var(--renault-white); */
  border-top: 0;
  /* margin-left: calc(50% - 50vw); */
  padding: 12px clamp(24px, 4vw, 64px) 18px;
  box-sizing: border-box;
  color: #fff;
}


.renault-footer__subgrid p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.renault-footer__subgrid .renault-footer__social-location {

  font-weight: 700;
  font-style: Bold;
  line-height: 23.2px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.renault-footer__subgrid a {
  color: var(--renault-black);
  text-decoration: none;
}

.renault-search-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 20px;
}

.renault-search-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
}

.renault-search-modal__panel {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 32px));
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: 32px;
  background: var(--renault-white);
  border-radius: 16px;
  box-shadow: var(--renault-shadow);
}

.renault-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--renault-black);
  font-size: 32px;
  line-height: 1;
}

.renault-search-modal__header {
  max-width: 560px;
}

.renault-search-modal__eyebrow {
  margin: 0 0 12px;
  color: var(--renault-text-tertiary);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.renault-search-modal__header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.renault-search-modal__header p {
  margin: 12px 0 0;
  color: var(--renault-text-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.renault-search-modal__form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.renault-search-modal__field {
  flex: 1 1 auto;
}

.renault-search-modal__status {
  margin: 20px 0 0;
  color: var(--renault-text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.renault-search-modal__results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.renault-search-modal__result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--renault-border);
  border-radius: 12px;
  background: var(--renault-surface);
  color: var(--renault-black);
  text-align: left;
}

.renault-search-modal__result:hover {
  background: #ecece8;
}

.renault-search-modal__result-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.renault-search-modal__result-meta {
  color: var(--renault-text-tertiary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.renault-cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  width: min(760px, calc(100vw - 48px));
  margin-left: auto;
  padding: 20px 24px;
  background: var(--renault-black);
  color: var(--renault-white);
  border-radius: 16px;
  box-shadow: var(--renault-shadow);
}

.renault-cookie-banner__content {
  max-width: 460px;
}

.renault-cookie-banner__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.renault-cookie-banner__content p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.renault-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.renault-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  padding: 12px 16px;
  background: var(--renault-black);
  color: var(--renault-white);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  box-shadow: var(--renault-shadow);
}

@media (max-width: 1279px) {
  :root {
    --renault-shell-gutter: 48px;
  }

  .renault-header__inner {
    width: calc(100vw - 48px);
    column-gap: 24px;
  }

  .renault-hero__frame,
  .renault-hero__slides,
  .renault-hero__image {
    min-height: 620px;
    height: 620px;
  }

  .renault-hero__content {
    top: 136px;
    left: 48px;
    width: min(520px, calc(100% - 96px));
  }

  .renault-hero__overlay {
    top: 136px;
    left: 48px;
    width: min(570px, calc(100% - 96px));
  }

  .renault-hero h1 {
    font-size: 40px;
    line-height: 36px;
  }

  .renault-hero__subtitle {
    font-size: 18px;
    line-height: 18px;
  }

  .renault-hero__copy {
    font-size: 18px;
    line-height: 22px;
  }

  .renault-model-grid {
    gap: 48px 32px;
  }

  .renault-model-filters {
    margin-bottom: 32px;
  }

  .renault-campaign-grid {
    gap: 48px 24px;
  }

  .renault-footer .renault-shell {
    width: calc(100vw - 80px);
  }
}

@media (max-width: 1180px) {
  .renault-header__inner {
    min-height: 136px;
    grid-template-columns: auto 1fr auto auto;
    column-gap: 20px;
  }

  .renault-brand {
    gap: 18px;
  }

  .renault-brand__emblem,
  .renault-brand__emblem img {
    width: 56px;
    height: 74px;
  }

  .renault-brand__title,
  .renault-brand__divider {
    font-size: 20px;
    line-height: 24px;
  }

  .renault-brand__location {
    font-size: 14px;
    line-height: 24px;
  }

  .renault-nav {
    gap: 24px;
  }

  .renault-nav a {
    font-size: 14px;
    line-height: 16px;
  }

  .renault-header__meta {
    gap: 14px;
  }

  .renault-header__meta-link {
    width: 60px;
  }

  .renault-header__meta-link span {
    font-size: 10px;
    line-height: 14px;
  }

  .renault-header__meta-link svg {
    width: 24px;
    height: 24px;
  }

  .renault-dealer__vertical-mark img {
    width: 68px;
    height: 8px;
  }

  .renault-dealer__vertical-top img {
    width: 34px;
    height: 26px;
  }

  .renault-section-heading {
    margin-bottom: 54px;
  }

  .renault-model-grid,
  .renault-service-grid,
  .renault-campaign-grid,
  .renault-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .renault-model-filters {
    gap: 12px;
  }

  .renault-workshop__banner {
    grid-template-columns: 1fr;
  }

  .renault-form__grid {
    grid-template-columns: 1fr;
  }

  .renault-form__full {
    grid-column: auto;
  }

  #pedido-informacoes .wpcf7 form .top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  :root {
    --renault-header-side: 20px;
  }

  .renault-header__inner {
    width: calc(100vw - 40px);
    min-height: 96px;
    grid-template-columns: auto 1fr auto;
    column-gap: 16px;
  }

  .renault-brand {
    gap: 12px;
  }

  .renault-brand__emblem,
  .renault-brand__emblem img {
    width: 40px;
    height: 52px;
  }

  .renault-brand__title,
  .renault-brand__divider {
    font-size: 18px;
    line-height: 22px;
  }

  .renault-brand__location {
    font-size: 13px;
    line-height: 22px;
  }

  .renault-header__meta .renault-header__meta-link{
    display: none;
  } 

  .renault-nav-toggle {
    display: inline-flex;
    justify-self: end;
    z-index: 70;
    flex-direction: column;
  }

  .renault-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 120px 24px 24px;
    background: var(--renault-white);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .renault-nav.is-open {
    transform: translateX(0);
  }

  .renault-nav a {
    font-size: 18px;
    line-height: 22px;
  }

  .renault-hero__frame,
  .renault-hero__slides,
  .renault-hero__image {
    min-height: 560px;
    height: 560px;
  }

  .renault-hero__content {
    top: 132px;
    left: 48px;
    right: 48px;
    width: min(520px, calc(100% - 96px));
  }

  .renault-hero__overlay {
    top: 132px;
    left: 48px;
    width: min(570px, calc(100% - 96px));
  }

  .renault-model-grid,
  .renault-service-grid,
  .renault-campaign-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .renault-footer__subgrid {
    flex-direction: column;
    align-items: flex-start;
  }

  .renault-search-modal__form {
    flex-direction: column;
  }
}

@media (max-width: 782px) {
  :root {
    --renault-shell-gutter: 20px;
    --renault-section-space: 48px;
  }

  .renault-header__inner {
    width: calc(100vw - 40px);
    min-height: 84px;
  }

  .renault-brand__title,
  .renault-brand__divider {
    font-size: 16px;
    line-height: 20px;
  }

  .renault-brand__location {
    font-size: 12px;
    line-height: 20px;
  }

  .renault-hero__frame,
  .renault-hero__slides,
  .renault-hero__image {
    min-height: 760px;
    height: 760px;
  }

  .renault-hero__content {
    top: 96px;
    left: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
  }

  .renault-hero__overlay {
    top: 112px;
    left: 20px;
    width: calc(100% - 40px);
    min-height: 0;
    gap: 16px;
    padding: 16px;
  }

  .renault-hero__overlay-main {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .renault-hero__overlay-contact-row {
    align-items: flex-start;
  }

  .renault-hero__overlay-contact-text {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .renault-hero__overlay-footer {
    text-align: center;
  }

  .renault-hero h1 {
    font-size: 32px;
    line-height: 32px;
  }

  .renault-hero__subtitle,
  .renault-hero__copy {
    font-size: 16px;
    line-height: 20px;
  }

  .renault-hero__actions {
    gap: 12px;
    margin-top: 20px;
  }

  .renault-button,
  .renault-used-card__cta {
    min-height: 44px;
    font-size: 15px;
  }

  .renault-hero__arrow {
    display: none;
  }

  .renault-section-heading {
    gap: 12px;
    margin-bottom: 40px;
  }

  .renault-section-heading h2 {
    font-size: 30px;
    line-height: 32px;
  }

  .renault-section-heading p {
    font-size: 18px;
    line-height: 20px;
  }

  .renault-model-grid,
  .renault-service-grid,
  .renault-campaign-grid,
  .renault-footer__grid {
    grid-template-columns: 1fr;
  }

  .renault-model-filters {
    margin-bottom: 28px;
  }

  .renault-used__grid {
    grid-template-columns: 1fr;
  }

  .renault-used-card {
    max-width: 320px;
  }

  .renault-workshop__banner h2 {
    font-size: 30px;
    line-height: 32px;
  }

  .renault-workshop__banner p {
    font-size: 16px;
    line-height: 20px;
  }

  .renault-workshop__details dt {
    font-size: 16px;
  }

  .renault-workshop__details dd,
  .renault-workshop__details a {
    font-size: 14px;
    line-height: 18px;
  }

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

  .renault-workshop__map img {
    height: 240px;
  }

  .renault-checkbox {
    grid-template-columns: 18px 1fr;
  }

  .renault-campaign-card__media img {
    height: 220px;
  }

  .renault-return-top a {
    min-height: 44px;
    font-size: 12px;
    line-height: 16px;
  }

  .renault-footer {
    padding-top: 32px;
  }

  .renault-footer .renault-shell {
    width: calc(100vw - 40px);
  }

  .renault-footer__grid {
    gap: 32px;
  }

  .renault-footer__brand-column {
    width: 100%;
    align-items: flex-start;
  }

  .renault-footer__social-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .renault-footer__social {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .renault-footer__social-location {
    text-align: left;
  }

  .renault-search-modal {
    padding: 12px;
  }

  .renault-search-modal__panel {
    width: calc(100vw - 24px);
    padding: 24px 20px;
    border-radius: 14px;
  }

  .renault-cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 18px;
  }

  .renault-toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

@media (max-width: 560px) {
  .renault-hero__frame,
  .renault-hero__slides,
  .renault-hero__image {
    min-height: 820px;
    height: 820px;
  }

  .renault-hero__content {
    top: 88px;
  }

  .renault-hero__eyebrow {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 18px;
  }

  .renault-hero h1 {
    font-size: 28px;
    line-height: 28px;
  }

  .renault-hero__subtitle,
  .renault-hero__copy {
    font-size: 14px;
    line-height: 18px;
  }

  .renault-hero__actions {
    gap: 10px;
  }

  .renault-hero__overlay {
    top: 88px;
    left: 16px;
    width: calc(100% - 32px);
    gap: 14px;
    padding: 14px;
  }

  .renault-hero__overlay-status h2 {
    font-size: 15px;
    line-height: 22px;
  }

  .renault-hero__overlay-schedule {
    gap: 8px;
  }

  .renault-hero__overlay-schedule-row {
    gap: 8px;
  }

  .renault-hero__overlay-day {
    min-width: 96px;
    font-size: 13px;
    line-height: 18px;
  }

  .renault-hero__overlay-time,
  .renault-hero__overlay-footer {
    font-size: 13px;
    line-height: 18px;
  }

  .renault-hero__overlay-contact {
    gap: 10px;
  }

  .renault-hero__overlay-contact-row {
    gap: 10px;
  }

  .renault-hero__overlay-contact-text {
    font-size: 13px;
    line-height: 18px;
  }
}


/*** ****/
.renault-header__meta {
  margin-left: auto;
}

.renault-dealer--vertical {
    margin-left: auto;
}

.renault-dealer--vertical svg {
  min-width: 80px;
}

@media (max-width: 960px) {
  .renault-header__inner {
      display: flex;
      justify-content: space-between;
  }

}

@media (max-width: 450px) {
  .renault-dealer--vertical {
      display: none;
  }
    .renault-header__inner {
        gap: 0px;
        /* margin-left: 8px; */
        /* margin-right: 12px; */
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}


.renault-workshop .container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.renault-workshop .container .left,
.renault-workshop .container .right {
  width: calc(50% - 16px);
}


@media (max-width: 750px) {
  .renault-workshop .container .left,
  .renault-workshop .container .right {
    width: 100%;
  }
}


.renault-legal-page {
  min-height: 70vh;
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 16px;
}

.apoiosBanner {
	width: 100%;
	text-align: center;
	margin: 20px 0;
}

.apoiosBanner a {
	width: fit-content;
	display: block;
    margin: 0 auto;
}
