@font-face { font-family: 'IpirangaTextos'; src: url('../assets/fonts/IpirangaTextos-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'IpirangaTextos'; src: url('../assets/fonts/IpirangaTextos-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'IpirangaTextos'; src: url('../assets/fonts/IpirangaTextos-ExtraBold.ttf') format('truetype'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'IpirangaTextos'; src: url('../assets/fonts/IpirangaTextos-Black.ttf') format('truetype'); font-weight: 900; font-display: swap; }

:root {
  --blue: #004fc4;
  --deep-blue: #001c69;
  --navy: #071144;
  --yellow: #ffd200;
  --white: #fff;
  --soft: #f5f6f8;
  --text: #001b55;
  --font: 'IpirangaTextos', Arial, sans-serif;
  --max: 1110px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.container { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-title {
  color: var(--blue);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
}
.header.scrolled {
  background: transparent;
  box-shadow: none;
}
.header__bar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  column-gap: 24px;
  padding: clamp(3.5rem, 9.6vw, 11.25rem) clamp(2rem, 8vw, 9.5rem) 1.2rem;
}
.header.scrolled .header__bar {
  align-items: start;
  padding-top: clamp(3.5rem, 9.6vw, 11.25rem);
  padding-bottom: 1.2rem;
}
.header__logo {
  padding-top: clamp(.55rem, 1.1vw, 1rem);
}
.header__logo img {
  width: auto;
  height: clamp(150px, 17.5vw, 250px);
  transition: height .25s ease;
}
.header.scrolled .header__logo { padding-top: 0; }
.header.scrolled .header__logo img { height: clamp(150px, 17.5vw, 250px); }
.header__nav {
  position: absolute;
  top: clamp(3.5rem, 9.6vw, 11.25rem);
  left: 50%;
  transform: translateX(-50%);
}
.header.scrolled .header__nav { position: absolute; transform: translateX(-50%); }
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: clamp(360px, 25.6vw, 492px);
  padding: .72rem clamp(1.9rem, 2.55vw, 3.05rem);
  border-radius: 999px;
  background: var(--blue);
}
.nav-pill__link {
  position: relative;
  color: var(--white);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1;
}
.nav-pill__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -.48rem;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width .2s ease;
}
.nav-pill__link:hover::after,
.nav-pill__link.active::after { width: 100%; }
.header__instagram {
  justify-self: end;
  width: max-content;
  transform: translateY(clamp(-1.05rem, -1.2vw, -.7rem));
  text-align: right;
}
.header.scrolled .header__instagram { transform: translateY(clamp(-1.05rem, -1.2vw, -.7rem)); }
.header__ig-label {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(.78rem, 1.02vw, 1.2rem);
  font-weight: 800;
  line-height: 1.15;
}
.header__ig-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--white);
  font-size: clamp(1.05rem, 1.45vw, 1.62rem);
  font-weight: 900;
}
.header__ig-link svg {
  width: clamp(23px, 2.05vw, 34px);
  height: clamp(23px, 2.05vw, 34px);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .45rem;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
}
.nav__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: grid;
  place-items: center;
  background: var(--navy);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul {
  display: grid;
  gap: 1.7rem;
  text-align: center;
}
.mobile-menu__link {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 900;
}

.hero {
  position: relative;
  height: max(100vh, 70.37vw);
  min-height: max(100vh, 70.37vw);
  overflow: hidden;
}
.hero__bg,
.hero__overlay,
.hero__bg-img {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  background: linear-gradient(110deg, rgba(4, 8, 39, .75), rgba(4, 8, 39, .48) 43%, rgba(4, 8, 39, .08) 100%);
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero__text {
  position: absolute;
  left: clamp(4rem, 12.8vw, 15.5rem);
  top: clamp(18rem, 36.1vw, 43.4rem);
  width: clamp(420px, 41.5vw, 600px);
}
.hero__title-img { width: 100%; }
.hero__setas {
  display: flex;
  justify-content: flex-end;
  padding-right: 18%;
  margin-top: clamp(.35rem, .8vw, .9rem);
}
.hero__setas img { width: clamp(92px, 8.35vw, 160px); }
.hero__scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 3;
  width: 26px;
  height: 42px;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, .48);
  border-radius: 18px;
}
.hero__scroll-indicator span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--yellow);
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 12px); opacity: .35; }
}

.convenience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}
.convenience__copy {
  display: flex;
  align-items: center;
  min-height: clamp(250px, 22vw, 354px);
  padding: 3rem clamp(3rem, 8.8vw, 10rem);
}
.convenience__copy h2 {
  max-width: 420px;
  color: var(--text);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.03;
}
.convenience__photo {
  grid-row: span 2;
  min-height: clamp(430px, 44vw, 632px);
}
.convenience__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.convenience__blue {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto auto;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.5rem);
  min-height: clamp(200px, 20.3vw, 285px);
  padding: 3rem clamp(3rem, 8.8vw, 10rem);
  background: var(--blue);
  overflow: hidden;
}
.convenience__blue::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: clamp(50px, 7vw, 100px);
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.convenience__seal {
  position: relative;
  z-index: 1;
  width: clamp(125px, 11.5vw, 185px);
}
.convenience__mobile-label {
  display: none;
}
.convenience__arrow {
  position: relative;
  z-index: 1;
  width: auto;
  height: clamp(80px, 8.8vw, 128px);
}
.convenience__hours {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .4rem;
  justify-items: center;
  color: var(--white);
}
.convenience__hours strong {
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  font-weight: 900;
  line-height: .85;
}
.clock {
  position: relative;
  width: clamp(42px, 4.7vw, 68px);
  aspect-ratio: 1;
  border: 3px solid var(--yellow);
  border-radius: 50%;
}
.clock::before,
.clock::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transform-origin: bottom center;
}
.clock::before { height: 36%; transform: translate(-50%, -100%); }
.clock::after { height: 28%; transform: translate(-50%, -100%) rotate(90deg); }

.units {
  padding: clamp(2.4rem, 4vw, 3.7rem) 0 clamp(2.2rem, 3.7vw, 3.4rem);
  background: var(--white);
}
.units .section-title { margin-bottom: clamp(1.6rem, 2.6vw, 2.25rem); }
.units__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.65vw, 1.55rem);
}
.unit-card {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 9px 24px rgba(0, 31, 92, .12);
}
.unit-card img {
  width: 100%;
  transition: transform .25s ease;
}
.unit-card:hover img { transform: scale(1.02); }

.porsche {
  display: grid;
  place-items: center;
  padding: 0 2rem clamp(1.2rem, 2vw, 2rem);
  background: var(--white);
}
.porsche img {
  width: min(760px, 72vw);
  filter: drop-shadow(0 14px 14px rgba(0, 0, 0, .15));
}

.slogan {
  display: grid;
  place-items: center;
  min-height: clamp(245px, 28vw, 390px);
  padding: 3rem 1.5rem;
  background: var(--blue);
}
.slogan h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.4vw, 5.35rem);
  font-weight: 900;
  line-height: 1.02;
  text-align: center;
}
.slogan h2 span,
.slogan h2 strong {
  display: block;
}
.slogan h2 span,
.slogan h2 strong { color: var(--yellow); }
.slogan h2 strong img {
  display: inline-block;
  width: .95em;
  max-width: 165px;
  vertical-align: .03em;
}
.slogan h2 strong:last-child img {
  transform: rotate(180deg);
}

.fuels {
  position: relative;
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: clamp(395px, 34vw, 560px);
  overflow: hidden;
  background: var(--navy);
}
.fuels::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/Background 02.png') center / cover no-repeat;
  opacity: .95;
}
.fuels__car {
  position: relative;
  z-index: 1;
  clip-path: polygon(0 0, 73% 0, 100% 50%, 73% 100%, 0 100%);
}
.fuels__car img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% center;
}
.fuels__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 8vw, 8rem) clamp(3rem, 5vw, 5rem) 0;
}
.fuels__badges {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem) clamp(1.4rem, 3vw, 3.5rem);
  max-width: 610px;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}
.fuels__badges img { width: clamp(92px, 9vw, 150px); }
.fuels__badges img:nth-child(4) { grid-column: 1 / 2; justify-self: end; }
.fuels__badges img:nth-child(5) { grid-column: 2 / 4; justify-self: start; }
.fuels__content p {
  max-width: 520px;
  color: var(--white);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 800;
  line-height: 1.18;
}
.fuels__content strong {
  display: block;
  color: var(--yellow);
}

.services {
  padding: clamp(2.6rem, 4.8vw, 4.5rem) 0 clamp(3rem, 5vw, 5rem);
  background: var(--soft);
}
.services .section-title { margin-bottom: clamp(2rem, 3vw, 3rem); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.8vw, 1.8rem);
}
.service-card {
  min-height: 190px;
  padding: clamp(1.25rem, 2vw, 2rem);
  border: 1px solid #dce2ed;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 31, 92, .04);
}
.service-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: .8rem;
}
.service-card h3 {
  color: var(--blue);
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: .55rem;
}
.service-card p {
  color: #0d1a35;
  font-size: clamp(.78rem, .9vw, .92rem);
  font-weight: 700;
  line-height: 1.18;
}

.contact {
  position: relative;
  min-height: clamp(340px, 30vw, 470px);
  overflow: hidden;
  color: var(--white);
}
.contact__bg,
.contact__shade {
  position: absolute;
  inset: 0;
}
.contact__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .32) 47%, rgba(0, 0, 0, .05));
}
.contact__content {
  position: relative;
  z-index: 1;
  width: min(480px, 42vw);
  padding: clamp(3rem, 6.3vw, 6rem) 0 clamp(2rem, 5vw, 5rem) clamp(4rem, 12.8vw, 12.5rem);
}
.contact__content > span {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: .7rem;
}
.contact h2 {
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  font-weight: 900;
  line-height: .95;
  margin-bottom: .35rem;
}
.contact p {
  max-width: 390px;
  font-size: clamp(.9rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.8rem, 3vw, 3rem);
}
.contact__list {
  display: grid;
  gap: .95rem;
}
.contact__list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: start;
  gap: .65rem;
  color: var(--white);
  font-size: clamp(.86rem, 1vw, 1rem);
  font-weight: 800;
  line-height: 1.25;
}
.contact__list img {
  width: 20px;
  max-height: 22px;
  object-fit: contain;
}

.footer {
  background: var(--deep-blue);
  color: var(--white);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.25fr;
  gap: clamp(2rem, 10vw, 11rem);
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(2.6rem, 4.5vw, 4.5rem) 0 clamp(2.5rem, 4vw, 4rem);
}
.footer__brand img {
  width: clamp(88px, 8.2vw, 140px);
  margin-bottom: 1rem;
}
.footer__brand p,
.footer li,
.footer a {
  font-size: clamp(.75rem, .86vw, .9rem);
  font-weight: 800;
  line-height: 1.35;
}
.footer h3 {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 1rem;
}
.footer ul {
  display: grid;
  gap: .55rem;
}
.footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding-bottom: 2rem;
}
.footer__bottom p {
  font-size: .72rem;
  font-weight: 800;
  opacity: .9;
}
.footer__bottom span {
  position: absolute;
  right: 0;
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .64rem;
  opacity: .85;
}
.footer__bottom img {
  width: clamp(56px, 4.8vw, 74px);
  filter: brightness(0) invert(1);
}

[data-animate] {
  opacity: 0;
  transition:
    opacity .75s ease,
    transform .85s cubic-bezier(.2, .82, .2, 1),
    filter .85s cubic-bezier(.2, .82, .2, 1);
  will-change: opacity, transform, filter;
}
[data-animate="fade-up"] { transform: translateY(44px); }
[data-animate="fade-left"] { transform: translateX(58px); }
[data-animate="slide-right"] { transform: translateX(-58px); }
[data-animate="drive-in"] {
  opacity: 1;
  transform: translateX(-120vw) translateY(26px) rotate(-2deg);
  filter: blur(2px) drop-shadow(0 14px 14px rgba(0, 0, 0, .15));
  transition:
    transform 1.35s cubic-bezier(.12, .78, .16, 1),
    filter 1.1s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateX(0) translateY(0) rotate(0);
  filter: none;
}
.porsche__car.animated {
  filter: drop-shadow(0 14px 14px rgba(0, 0, 0, .15));
}

@media (max-width: 1024px) {
  .header__bar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .header__instagram { display: none; }
  .units__grid,
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fuels {
    grid-template-columns: 1fr;
  }
  .fuels__car {
    min-height: 320px;
    clip-path: none;
  }
  .fuels__content {
    padding: 3rem 2rem 4rem;
  }
  .contact__content {
    width: min(520px, 70vw);
    padding-left: 3rem;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body::before {
    content: '';
    position: fixed;
    top: 1rem;
    right: 1.25rem;
    z-index: 23;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    pointer-events: none;
    background-color: rgba(0, 79, 196, .88);
    background-image:
      linear-gradient(var(--white), var(--white)),
      linear-gradient(var(--white), var(--white)),
      linear-gradient(var(--white), var(--white));
    background-position: center 11px, center 19px, center 27px;
    background-size: 25px 3px, 25px 3px, 25px 3px;
    background-repeat: no-repeat;
  }
  .container { width: min(100% - 32px, var(--max)); }
  .header__bar {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    padding: .8rem 1.25rem;
  }
  .header__logo { padding-top: 0; }
  .header__logo img { height: 58px; }
  .header.scrolled .header__logo img { height: 48px; }
  .header__nav { display: none; }
  .nav__toggle { display: flex; }
  .nav__toggle {
    position: fixed !important;
    display: block !important;
    top: 1rem;
    right: 1.25rem;
    z-index: 22;
    background-color: rgba(0, 79, 196, .88);
    background-image:
      linear-gradient(var(--white), var(--white)),
      linear-gradient(var(--white), var(--white)),
      linear-gradient(var(--white), var(--white));
    background-position: center 11px, center 19px, center 27px;
    background-size: 25px 3px, 25px 3px, 25px 3px;
    background-repeat: no-repeat;
    border-radius: 999px;
  }
  .nav__toggle span { opacity: 0; }

  .hero {
    height: 100svh;
    min-height: 660px;
  }
  .hero__bg-img { object-position: 73%; }
  .hero__text {
    left: 1.5rem;
    right: 1.5rem;
    top: auto;
    bottom: 5.5rem;
    width: calc(100% - 3rem);
    max-width: 420px;
  }
  .hero__title-img {
    width: min(100%, 340px);
  }
  .hero__setas {
    justify-content: center;
    padding-right: 0;
  }
  .hero__setas img { width: 94px; }

  .convenience {
    grid-template-columns: 1fr;
  }
  .convenience__copy {
    order: 1;
    display: flex;
    min-height: auto;
    padding: clamp(2.3rem, 10vw, 4rem) clamp(1.5rem, 7vw, 3rem) clamp(1.4rem, 6vw, 2.2rem);
    justify-content: center;
    text-align: left;
  }
  .convenience__copy h2 {
    width: min(100%, 360px);
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .convenience__photo {
    order: 3;
    grid-row: auto;
    min-height: clamp(500px, 142vw, 760px);
  }
  .convenience__photo img { object-position: 48% center; }
  .convenience__blue {
    order: 2;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    min-height: clamp(120px, 38vw, 200px);
    padding: clamp(3.5rem, 10vw, 5rem) clamp(1.25rem, 5vw, 2.5rem) clamp(1.5rem, 5vw, 2.5rem);
    gap: clamp(.8rem, 3.5vw, 1.4rem);
  }
  .convenience__blue::before {
    height: clamp(34px, 9vw, 58px);
  }
  .convenience__seal {
    width: clamp(90px, 26vw, 150px);
  }
  .convenience__mobile-label { display: none; }

  /* Setas 02 */
  .convenience__arrow {
    height: clamp(60px, 18vw, 100px);
  }

  /* Horas: exibe relógio + 24h */
  .convenience__hours {
    display: grid;
    justify-items: center;
    gap: .3rem;
  }
  .convenience__hours .clock {
    display: block;
    width: clamp(34px, 9.5vw, 54px);
    border-width: 2px;
  }
  .convenience__hours strong {
    font-size: clamp(2rem, 10vw, 3.6rem);
    line-height: .9;
  }

  .units { padding-top: 3rem; }
  .porsche img { width: min(92vw, 620px); }
  .slogan { min-height: 300px; }
  .slogan h2 { font-size: clamp(2.05rem, 11vw, 4rem); }

  .fuels__badges { grid-template-columns: repeat(2, auto); }
  .fuels__badges img:nth-child(4),
  .fuels__badges img:nth-child(5) {
    grid-column: auto;
    justify-self: center;
  }
  .fuels__content p { text-align: center; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 1rem;
    min-height: auto;
  }
  .service-card img { grid-row: span 2; margin-bottom: 0; }

  .contact { min-height: 520px; }
  .contact__bg { object-position: 63% center; }
  .contact__shade { background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .55)); }
  .contact__content {
    width: auto;
    padding: 3rem 1.6rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 520px);
    gap: 2rem;
    text-align: center;
  }
  .footer__brand img { margin-inline: auto; }
  .footer__bottom {
    flex-direction: column;
    gap: .9rem;
    width: min(100% - 40px, 520px);
    text-align: center;
  }
  .footer__bottom span {
    position: static;
  }
}

@media (max-width: 520px) {
  .units__grid { grid-template-columns: 1fr; }
  .unit-card { max-width: 310px; margin-inline: auto; }
  .convenience__blue {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: clamp(.6rem, 2.5vw, 1rem);
  }
  .convenience__arrow { transform: none; height: clamp(50px, 15vw, 80px); }
  .convenience__hours { justify-self: end; }
  .fuels__car { min-height: 260px; }
  .fuels__badges {
    gap: 1rem;
  }
  .fuels__badges img { width: min(35vw, 120px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
