:root {
  --black: #070707;
  --black-2: #121212;
  --graphite: #1d1d1b;
  --red: #e00012;
  --red-dark: #a9000d;
  --yellow: #ffd000;
  --yellow-2: #f4b800;
  --cream: #f4f0e7;
  --cream-2: #ebe5d8;
  --white: #ffffff;
  --muted: #686158;
  --line: rgba(7, 7, 7, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .18);
  --max: 1160px;
  --font: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  color: rgba(255, 255, 255, .74);
  border-bottom: 3px solid var(--red);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar strong {
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 7, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  min-width: 0;
}

.brand__logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}

.brand__text strong,
.brand__text small {
  display: block;
}

.brand__text strong {
  font-size: .98rem;
  font-weight: 800;
}

.brand__text small {
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
  font-weight: 500;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .78);
  font-size: .86rem;
  font-weight: 750;
}

.menu a {
  position: relative;
  padding: 26px 0;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width .22s ease;
}

.menu a:hover {
  color: var(--white);
}

.menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: .92rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #22c55e;
  color: var(--white);
  box-shadow: 0 16px 32px rgba(34, 197, 94, .24);
}

.btn--light {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .32);
}

.btn--dark {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.btn--outline {
  color: var(--black);
  background: transparent;
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  opacity: .72;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .62) 42%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .66) 0%, rgba(0, 0, 0, 0) 48%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 110px 0 88px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.hero .eyebrow,
.promo .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.35rem);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 800;
}

.hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.1rem;
}

.hero__promo {
  display: grid;
  max-width: 560px;
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 5px solid var(--yellow);
  background: rgba(7, 7, 7, .62);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.hero__promo span,
.air-cleaning__note span {
  color: var(--yellow);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__promo strong {
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.35;
}

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

.quick-info {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.quick-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.quick-info article {
  padding: 24px 26px;
  border-right: 1px solid var(--line-dark);
}

.quick-info article:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.section {
  padding: 96px 0;
}

.section--light {
  background: var(--cream);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading--compact {
  margin-bottom: 28px;
}

.section-heading h2,
.split h2,
.promo h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

.section-heading p:not(.eyebrow),
.split__copy p,
.promo p,
.contact-list,
address {
  color: var(--muted);
  font-size: 1rem;
}

.section--dark .section-heading p:not(.eyebrow),
.section--dark .split__copy p {
  color: rgba(255, 255, 255, .68);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .07);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.22;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
  background: var(--black);
  color: var(--white);
  border-color: transparent;
  overflow: hidden;
  padding: 0;
}

.service-card--featured img {
  min-height: 290px;
}

.service-card--featured div {
  padding: 32px 30px 32px 6px;
  align-self: center;
}

.service-card--featured span {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card--featured h3 {
  margin-top: 12px;
  font-size: 1.72rem;
}

.service-card--featured p {
  color: rgba(255, 255, 255, .7);
}

.service-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.service-side .service-card {
  min-height: 0;
}

.section--air {
  position: relative;
  background: var(--graphite);
  color: var(--white);
  overflow: hidden;
}

.section--air::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, .92), rgba(7, 7, 7, .78)),
    url("../img/filtro-cabine-dom-oil.jpg") center / cover;
  opacity: .95;
}

.air-cleaning {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.air-cleaning h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.air-cleaning__copy p:not(.eyebrow),
.air-cleaning__panel p {
  color: rgba(255, 255, 255, .74);
}

.air-cleaning__lead {
  margin: 18px 0 12px;
  color: var(--white) !important;
  font-size: 1.12rem;
  font-weight: 800;
}

.air-cleaning__note {
  display: grid;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 208, 0, .38);
  border-left: 5px solid var(--yellow);
  background: rgba(0, 0, 0, .36);
}

.air-cleaning__note strong {
  margin-top: 5px;
  line-height: 1.35;
}

.air-cleaning__panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.benefits-grid article {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(7, 7, 7, .48);
  color: rgba(255, 255, 255, .92);
  font-size: .94rem;
  font-weight: 800;
}

.air-cleaning__recommendation {
  margin: 24px 0 0;
}

.air-cleaning__closing {
  margin: 14px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.split__media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-list span {
  padding: 10px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  font-weight: 700;
}

.brand-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brand-panels article {
  padding: 28px;
  background: var(--white);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .06);
}

.brand-panels h3 {
  margin: 0 0 10px;
}

.brand-panels p {
  margin: 0;
  color: var(--muted);
}

.promo {
  padding: 58px 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red) 54%, var(--yellow));
  color: var(--white);
}

.promo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.promo h2 {
  max-width: 720px;
}

.promo p,
.promo__list {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .86);
}

.promo__list {
  padding-left: 20px;
}

.promo__list li + li {
  margin-top: 6px;
}

.section--reviews {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.reviews-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.reviews-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, .66);
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 18px;
  align-items: center;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform .34s ease;
}

.review-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: .72fr 1fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
}

.review-card__photo {
  min-height: 430px;
  background: var(--graphite);
}

.review-card__photo img {
  object-position: center top;
}

.review-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: .05em;
}

.review-card p {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  line-height: 1.32;
  font-weight: 700;
}

.review-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
}

.review-card h3::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-bottom: 14px;
  background: var(--red);
}

.review-nav {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--yellow);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.review-nav:hover {
  background: var(--red);
  color: var(--white);
  transform: scale(1.04);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.review-dot.active {
  width: 30px;
  border-radius: 999px;
  background: var(--yellow);
}

.gallery {
  background: var(--cream);
  overflow: hidden;
}

.gallery-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.gallery-heading h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.gallery-shell {
  position: relative;
  height: 540px;
  margin-top: 28px;
}

.carousel-track {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.carousel-slide {
  position: absolute;
  z-index: 0;
  width: 56%;
  height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 6px;
  background: #ddd;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  opacity: 0;
  pointer-events: none;
  transform: scale(.86);
  transition: all .35s ease;
}

.carousel-slide.active {
  z-index: 3;
  width: 58%;
  height: 500px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.carousel-slide.prev {
  z-index: 2;
  opacity: .88;
  transform: translateX(-58%) scale(.78);
}

.carousel-slide.next {
  z-index: 2;
  opacity: .88;
  transform: translateX(58%) scale(.78);
}

.carousel-slide.far-prev {
  z-index: 1;
  opacity: .45;
  transform: translateX(-92%) scale(.65);
}

.carousel-slide.far-next {
  z-index: 1;
  opacity: .45;
  transform: translateX(92%) scale(.65);
}

.carousel-caption {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 5;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
  transform: translateX(-50%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  font: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.carousel-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.carousel-btn.prev-btn {
  left: 0;
}

.carousel-btn.next-btn {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .22);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.dot.active {
  width: 30px;
  border-radius: 999px;
  background: var(--red);
}

.contact__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.contact__info {
  padding: 8px 0;
}

address {
  margin: 20px 0;
  font-style: normal;
}

.contact-list p {
  margin: 10px 0;
}

.contact-list a {
  color: var(--red-dark);
  font-weight: 800;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.map-card {
  min-height: 480px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cream-2);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.footer {
  padding: 34px 0;
  background: var(--black);
  color: rgba(255, 255, 255, .66);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 0;
}

.brand--footer .brand__logo {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #22c55e;
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

@media (max-width: 980px) {
  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__inner span:last-child,
  .nav__cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .brand {
    max-width: calc(100% - 64px);
  }

  .menu {
    position: fixed;
    top: 113px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(7, 7, 7, .98);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .24s ease, visibility .24s ease;
  }

  .nav-open .menu {
    transform: translateY(0);
    visibility: visible;
  }

  .menu a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .menu a::after {
    display: none;
  }

  .quick-info__grid,
  .services-grid,
  .air-cleaning,
  .split,
  .brand-panels,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: 0;
  }

  .quick-info article {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .quick-info article:last-child {
    border-bottom: 0;
  }

  .service-card--featured {
    grid-column: auto;
  }

  .service-side {
    grid-template-rows: auto;
  }

  .promo__inner,
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-card__photo {
    min-height: 360px;
  }

  .review-card__content {
    padding: 34px;
  }

  .gallery-shell {
    height: 460px;
  }

  .carousel-slide,
  .carousel-slide.active {
    width: 68%;
    height: 400px;
  }

  .carousel-slide.prev {
    transform: translateX(-52%) scale(.72);
  }

  .carousel-slide.next {
    transform: translateX(52%) scale(.72);
  }

  .carousel-slide.far-prev {
    transform: translateX(-82%) scale(.58);
  }

  .carousel-slide.far-next {
    transform: translateX(82%) scale(.58);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .topbar {
    font-size: .66rem;
  }

  .nav {
    min-height: 72px;
  }

  .brand__logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand__text small {
    display: none;
  }

  .menu {
    top: 109px;
  }

  .hero {
    min-height: 610px;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .46) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .18));
  }

  .hero__content {
    padding: 92px 0 56px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 2.04rem;
    line-height: 1.04;
  }

  .hero__lead {
    max-width: 330px;
    font-size: 1rem;
  }

  .hero__promo {
    max-width: 100%;
    padding: 15px 16px;
  }

  .hero__actions,
  .contact__actions {
    display: grid;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .section {
    padding: 70px 0;
  }

  .service-card,
  .brand-panels article {
    padding: 22px;
  }

  .service-card--featured {
    grid-template-columns: 1fr;
  }

  .service-card--featured img {
    min-height: 260px;
  }

  .service-card--featured div {
    padding: 0 24px 26px;
  }

  .split__media {
    min-height: 360px;
  }

  .air-cleaning__panel {
    padding: 18px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid article {
    min-height: 58px;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-nav {
    position: absolute;
    top: 142px;
    z-index: 4;
    width: 44px;
    height: 44px;
    background: var(--black);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
  }

  .review-nav--prev {
    left: 10px;
  }

  .review-nav--next {
    right: 10px;
  }

  .review-card {
    min-height: 0;
  }

  .review-card__photo {
    min-height: 292px;
  }

  .review-card__content {
    padding: 26px 22px 30px;
  }

  .review-card p {
    font-size: 1.08rem;
  }

  .gallery-shell {
    height: 330px;
    margin-top: 20px;
  }

  .carousel-slide,
  .carousel-slide.active {
    width: calc(100vw - 44px);
    height: 280px;
  }

  .carousel-slide.prev,
  .carousel-slide.next,
  .carousel-slide.far-prev,
  .carousel-slide.far-next {
    opacity: 0;
    transform: scale(.88);
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }

  .carousel-btn.prev-btn {
    left: 2px;
  }

  .carousel-btn.next-btn {
    right: 2px;
  }

  .carousel-caption {
    bottom: -2px;
    padding: 10px 14px;
    font-size: .76rem;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
  }

  .floating-whatsapp {
    left: auto;
    right: 12px;
    bottom: 12px;
    width: auto;
    justify-content: center;
  }
}
