:root {
  --red: #a8150c;
  --red-dark: #711008;
  --orange: #e84b13;
  --amber: #f7a315;
  --gold: #ffc94a;
  --ink: #102d32;
  --ink-deep: #08242a;
  --teal: #0a4147;
  --aqua: #38aeb5;
  --cream: #fbf5ea;
  --paper: #fffdfa;
  --white: #fff;
  --muted: #68777a;
  --line: #e8e0d5;
  --green: #22b965;
  --shadow: 0 24px 70px rgba(77, 34, 21, 0.12);
  --container: 1180px;
  --announcement-height: 36px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: sticky;
  top: 0;
  z-index: 102;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink-deep);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.announcement__inner {
  display: flex;
  min-height: var(--announcement-height);
  align-items: center;
  justify-content: space-between;
}

.announcement p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 9px;
}

.announcement p span {
  display: inline-block;
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 185, 101, 0.15);
}

.header {
  position: sticky;
  top: var(--announcement-height);
  z-index: 101;
  background: rgba(255, 253, 250, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.header.is-scrolled {
  border-color: rgba(16, 45, 50, 0.08);
  box-shadow: 0 8px 32px rgba(20, 38, 39, 0.08);
}

main section[id] {
  scroll-margin-top: calc(var(--announcement-height) + 96px);
}

.header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 27px;
}

.brand {
  display: flex;
  width: auto;
  height: 62px;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: clamp(176px, 18vw, 232px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand span,
.footer__logo span {
  color: var(--red);
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.brand span strong,
.footer__logo span strong {
  font-weight: 800;
}

.nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 27px;
}

.nav a {
  position: relative;
  color: #415457;
  font-size: 13px;
  font-weight: 700;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.04);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.button svg {
  width: 19px;
  fill: currentColor;
}

.button--large {
  min-height: 60px;
  padding-inline: 29px;
  font-size: 14px;
}

.button--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(168, 21, 12, 0.22);
}

.button--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 16px 36px rgba(168, 21, 12, 0.3);
}

.button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.button--dark {
  color: var(--white);
  background: var(--ink-deep);
}

.button--dark:hover {
  background: #04191e;
}

.button--light {
  color: var(--red-dark);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(73, 9, 4, 0.2);
}

.header__button {
  min-height: 46px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

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

.hero__photo {
  background-image: url("assets/images/facade-hero.jpg");
  background-position: 58% center;
  background-size: cover;
  transform: scale(1.015);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 34, 39, 0.98) 0%, rgba(7, 34, 39, 0.94) 40%, rgba(7, 34, 39, 0.35) 73%, rgba(7, 34, 39, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 34, 39, 0.25), transparent 55%);
}

.hero__shade::after {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 700px;
  padding-block: 74px;
  align-items: center;
  grid-template-columns: 1fr 0.6fr;
  gap: 80px;
}

.hero__content {
  max-width: 710px;
}

.kicker {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker--light {
  color: var(--gold);
}

.kicker__dot {
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 201, 74, 0.13);
}

.kicker__line {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0 0 25px;
  font-family: "Sora", sans-serif;
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.hero h1 span {
  color: var(--gold);
}

.hero__content > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 12px;
}

.hero__rating {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 18px;
}

.hero__rating > strong {
  padding-right: 18px;
  font-family: "Sora", sans-serif;
  font-size: 42px;
  line-height: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__rating > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.hero__rating .stars {
  font-size: 15px;
}

.hero__rating span:not(.stars) {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.25;
}

.hero__proof {
  display: flex;
  align-self: end;
  padding-bottom: 30px;
  align-items: flex-end;
  flex-direction: column;
  gap: 15px;
}

.hero__proof-card,
.hero__location-card {
  width: 100%;
  max-width: 335px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(4, 19, 21, 0.25);
  backdrop-filter: blur(10px);
}

.hero__proof-card {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.hero__proof-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 12px;
  font-weight: 800;
}

.hero__proof-card div,
.hero__location-card {
  display: flex;
  flex-direction: column;
}

.hero__proof-card strong,
.hero__location-card strong {
  font-family: "Sora", sans-serif;
  font-size: 14px;
}

.hero__proof-card small,
.hero__location-card span {
  color: var(--muted);
  font-size: 10.5px;
}

.hero__location-card {
  color: var(--white);
  background: var(--red);
}

.hero__location-card span {
  color: rgba(255, 255, 255, 0.64);
}

.hero__location-card strong {
  margin: 4px 0 14px;
  font-size: 18px;
}

.hero__location-card a {
  padding-top: 12px;
  color: var(--gold);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 700;
}

.quick-info {
  color: var(--ink);
  background: var(--gold);
}

.quick-info__grid {
  display: grid;
  min-height: 164px;
  grid-template-columns: repeat(4, 1fr);
}

.quick-info article {
  display: grid;
  min-height: 164px;
  padding: 42px 34px;
  align-items: center;
  justify-content: center;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  border-right: 1px solid rgba(16, 45, 50, 0.15);
}

.quick-info article:first-child {
  padding-left: 34px;
}

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

.quick-info__number {
  color: rgba(16, 45, 50, 0.38);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.quick-info article div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.quick-info strong {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  line-height: 1.15;
}

.quick-info small {
  margin-top: 8px;
  opacity: 0.72;
  font-size: 13px;
  line-height: 1.35;
}

@media (min-width: 900px) {
  .quick-info__grid {
    min-height: 236px;
  }

  .quick-info article {
    position: relative;
    min-height: 236px;
    padding: 52px clamp(14px, 1.65vw, 24px);
    justify-content: center;
    grid-template-columns: minmax(0, 176px);
    gap: 0;
  }

  .quick-info article:first-child {
    padding-left: clamp(14px, 1.65vw, 24px);
  }

  .quick-info article:last-child {
    padding-right: clamp(14px, 1.65vw, 24px);
  }

  .quick-info__number {
    position: absolute;
    left: clamp(14px, 2vw, 28px);
    top: 50%;
    font-size: 26px;
    transform: translateY(-50%);
  }

  .quick-info article div {
    width: min(176px, 100%);
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .quick-info strong {
    display: flex;
    min-height: 1.96em;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    overflow-wrap: normal;
    font-size: clamp(28px, 2.12vw, 32px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .quick-info small {
    max-width: 100%;
    min-height: 2.44em;
    margin-top: 12px;
    font-size: clamp(16px, 1.14vw, 18px);
    line-height: 1.22;
  }
}

.section {
  padding-block: 120px;
}

.section h2,
.gas-people h2,
.location h2,
.final-cta h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(38px, 4.5vw, 61px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.story {
  background: var(--paper);
}

.story__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 105px;
}

.story__photos {
  position: relative;
  min-height: 650px;
}

.story__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #ddd2c4;
  border: 8px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

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

.story__photo--main {
  top: 0;
  left: 0;
  width: 72%;
  height: 86%;
}

.story__photo--main img {
  object-position: 61% center;
}

.story__photo--small {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 38%;
}

.story__badge {
  position: absolute;
  top: 44px;
  right: 2px;
  z-index: 3;
  display: flex;
  width: 126px;
  height: 126px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: var(--red);
  border: 6px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(111, 15, 8, 0.22);
  text-align: center;
}

.story__badge strong {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  line-height: 1;
}

.story__badge span {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.story__content h2 {
  max-width: 670px;
  margin-bottom: 26px;
}

.story__content > p {
  max-width: 660px;
  margin: 0 0 17px;
  color: var(--muted);
  line-height: 1.8;
}

.story__content .story__lead {
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
}

.story__credentials {
  display: grid;
  margin-top: 32px;
  gap: 14px;
}

.story__credentials > div {
  display: grid;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.story__credentials > div > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.story__credentials p {
  display: flex;
  margin: 0;
  color: var(--muted);
  flex-direction: column;
  font-size: 12px;
}

.story__credentials strong {
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 13px;
}

.story__brand-row {
  display: flex;
  margin-top: 25px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 45, 50, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(37, 50, 41, 0.08);
}

.story__brand-row > span {
  max-width: 220px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.story__brand-row img {
  width: min(255px, 48%);
  object-fit: contain;
}

.story__credential-link {
  width: 100%;
  min-height: 58px;
  margin-top: 16px;
  font-size: 15px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(191, 24, 15, 0.2);
}

.story__credential-link span {
  margin-left: 7px;
  transition: transform 280ms ease;
}

.story__credential-link:hover span {
  transform: translate(3px, -3px);
}

@media (min-width: 921px) {
  .story__brand-row {
    min-height: 178px;
    align-items: center;
    gap: 28px;
    padding: 34px 42px;
  }

  .story__brand-row > span {
    max-width: 280px;
    font-size: 35px;
    letter-spacing: -0.045em;
    line-height: 0.98;
  }

  .story__brand-row img {
    width: min(270px, 45%);
  }
}

.products {
  background: var(--cream);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
}

.section-heading h2 {
  max-width: 700px;
}

.section-heading > p {
  max-width: 620px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.7;
}

.product-filters {
  display: flex;
  margin-top: 50px;
  gap: 9px;
  flex-wrap: wrap;
}

.product-filter {
  min-height: 46px;
  padding: 0 19px;
  color: var(--muted);
  background: transparent;
  border: 1px solid #d8cdbf;
  border-radius: 100px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-filter.is-active,
.product-filter:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.product-filter:hover {
  box-shadow: 0 10px 22px rgba(16, 45, 50, 0.12);
  transform: translateY(-2px) scale(1.035);
}

.product-grid {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(83, 52, 34, 0.06);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(83, 52, 34, 0.13);
}

.product-card.is-hidden {
  display: none;
}

.product-card__label {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 3;
  padding: 7px 11px;
  color: var(--white);
  background: var(--red);
  border-radius: 100px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__image {
  display: grid;
  height: 295px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 201, 74, 0.2) 0%, rgba(255, 246, 226, 0.42) 46%, rgba(255, 255, 255, 0) 76%);
}

.product-card__image img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.product-card:hover .product-card__image img {
  transform: translateY(-7px) scale(1.035);
  filter: drop-shadow(0 16px 18px rgba(84, 45, 13, 0.12));
}

.product-card[data-category="gas"] .product-card__image img {
  width: 78%;
  height: 86%;
}

.product-card[data-category="gas"]:hover .product-card__image img {
  transform: translateY(-9px) scale(1.04) rotate(-1deg);
}

.product-card[data-category="water"] .product-card__image img {
  width: 82%;
  height: 88%;
}

.product-card__image--accessory {
  padding: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 201, 74, 0.16) 0%, rgba(255, 246, 226, 0.36) 48%, rgba(255, 255, 255, 0) 78%);
}

.product-card__image--accessory img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 25px 27px;
  border-top: 1px solid var(--line);
}

.product-card__body > p {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card__body h3 {
  margin: 0 0 7px;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.product-card__body > span {
  display: block;
  min-height: 43px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.product-card__body a {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(168, 21, 12, 0.18);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s ease, background 0.28s ease;
}

.product-card__body a:hover {
  background: var(--red-dark);
  box-shadow: 0 16px 32px rgba(168, 21, 12, 0.28);
  transform: translateY(-3px) scale(1.045);
}

.gas-people {
  position: relative;
  padding-block: 115px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 91, 127, 0.1) 0 12%, transparent 12% 22%, rgba(26, 173, 80, 0.12) 22% 32%, transparent 32% 42%, rgba(230, 42, 37, 0.1) 42% 52%, transparent 52%),
    linear-gradient(135deg, #ffd842 0%, #f8a922 44%, #f07a28 100%);
}

.gas-people__shapes,
.gas-people__shapes::before,
.gas-people__shapes::after {
  position: absolute;
  border: 1px solid rgba(16, 45, 50, 0.13);
  border-radius: 50%;
  content: "";
}

.gas-people__shapes {
  top: -180px;
  right: -120px;
  width: 620px;
  height: 620px;
}

.gas-people__shapes::before {
  inset: 75px;
}

.gas-people__shapes::after {
  inset: 150px;
}

.gas-people__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.gas-people__visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.gas-people__visual::before {
  position: absolute;
  width: 470px;
  height: 470px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18) 72%),
    linear-gradient(135deg, rgba(0, 91, 127, 0.14), rgba(26, 173, 80, 0.08));
  border-radius: 50%;
  content: "";
}

.gas-people__cylinder {
  position: relative;
  z-index: 2;
  width: min(92%, 460px);
  filter: drop-shadow(0 30px 25px rgba(91, 48, 0, 0.24));
}

.gas-people__official {
  position: absolute;
  right: 0;
  bottom: 35px;
  z-index: 3;
  width: 230px;
  padding: 13px;
  overflow: hidden;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(89, 45, 0, 0.18);
}

.gas-people__official img {
  width: 100%;
}

.kicker--people {
  color: var(--ink);
}

.gas-people__content h2 {
  max-width: 680px;
  margin-bottom: 23px;
}

.gas-people__content > p {
  max-width: 660px;
  margin: 0;
  color: rgba(16, 45, 50, 0.76);
  font-size: 17px;
}

.gas-people__steps {
  display: grid;
  margin: 34px 0 26px;
  gap: 11px;
}

.gas-people__steps article {
  display: grid;
  padding: 20px 22px;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  backdrop-filter: blur(8px);
}

.gas-people__steps article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: #005b7f;
  border-radius: 12px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.gas-people__steps article div {
  display: flex;
  flex-direction: column;
}

.gas-people__steps strong {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.gas-people__steps small {
  margin-top: 3px;
  color: rgba(16, 45, 50, 0.82);
  font-size: 12.5px;
  line-height: 1.32;
}

.gas-people__notice {
  display: grid;
  margin-bottom: 26px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(113, 16, 8, 0.94);
  border-radius: 14px;
  grid-template-columns: auto 1fr;
  gap: 13px;
}

.gas-people__notice strong {
  font-family: "Sora", sans-serif;
  font-size: 13px;
}

.gas-people__notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12.5px;
  line-height: 1.35;
}

.reviews {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(56, 174, 181, 0.25), transparent 35%),
    var(--ink-deep);
}

.reviews__heading {
  display: grid;
  min-height: 455px;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(190px, 0.5fr) minmax(320px, 1fr);
  gap: 28px;
}

.reviews__copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 420px;
  padding: 70px 24px 72px 22px;
  justify-content: center;
  flex-direction: column;
}

.reviews__copy > :not(.reviews__google-stripes) {
  position: relative;
  z-index: 2;
}

.reviews__google-stripes {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.reviews__copy h2 {
  max-width: 460px;
}

.reviews__social-visual {
  display: grid;
  min-height: 400px;
  place-items: center;
}

.reviews__social-visual img {
  width: 285px;
  max-width: none;
  height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.27));
}

.reviews__score {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.reviews__score-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__score-top > strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.reviews__score-meta {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.reviews__score-meta .stars {
  font-size: 17px;
  letter-spacing: 0.12em;
}

.reviews__score small {
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
}

.reviews__quality-seal {
  width: min(100%, 430px);
  height: 390px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.3));
}

.reviews-carousel {
  position: relative;
  margin-top: 30px;
}

.reviews-carousel__controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  margin: 0;
  pointer-events: none;
}

.reviews-carousel__arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 62px;
  height: 112px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 92px;
  font-weight: 200;
  line-height: 1;
  pointer-events: auto;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease, opacity 0.25s ease;
}

.reviews-carousel__arrow:first-child {
  left: -78px;
}

.reviews-carousel__arrow:last-child {
  right: -78px;
}

.reviews-carousel__arrow:hover {
  color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.reviews-carousel__arrow:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.reviews-carousel__arrow:disabled {
  opacity: 0.38;
  box-shadow: none;
  cursor: default;
  transform: translateY(-50%);
}

.reviews-carousel__viewport {
  margin: -10px -4px -24px;
  padding: 10px 4px 24px;
  overflow: hidden;
}

.reviews-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.reviews-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  transform: translate3d(0, 0, 0);
  transition: transform 500ms ease-in-out;
  will-change: transform;
}

.reviews-carousel .testimonial,
.reviews-carousel .official-review-card {
  min-width: 0;
  min-height: 318px;
  flex: 0 0 calc((100% - 48px) / 4);
}

.reviews-carousel .official-review-card p {
  margin-bottom: auto;
}

.reviews__cta {
  display: flex;
  margin-top: 34px;
  justify-content: center;
}

.reviews__cta-button {
  min-width: 376px;
  min-height: 82px;
  padding-inline: 42px;
  font-size: 31px;
  line-height: 1.05;
  box-shadow: 0 18px 40px rgba(73, 9, 4, 0.26);
}

.reviews__cta-button:hover {
  box-shadow: 0 22px 46px rgba(73, 9, 4, 0.3);
}

.seo-copy {
  padding-top: 10px;
}

.seo-copy__grid {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-copy__card {
  display: flex;
  min-height: 100%;
  padding: 28px 24px;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 245, 234, 0.96));
  border: 1px solid rgba(168, 21, 12, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(16, 45, 50, 0.08);
}

.seo-copy__card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.08;
}

.seo-copy__card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.seo-copy__card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--red-dark);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.testimonial {
  display: flex;
  min-height: 340px;
  padding: 27px;
  flex-direction: column;
  background: var(--white);
  border-radius: 21px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.13);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.testimonial:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px) scale(1.025);
}

.testimonial__top {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testimonial__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--aqua);
  border-radius: 50%;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.testimonial__avatar--red {
  background: #d73515;
}

.testimonial__avatar--gold {
  color: var(--ink);
  background: var(--gold);
}

.testimonial__avatar--orange {
  background: #ef641e;
}

.testimonial__top div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.testimonial__top strong {
  overflow: hidden;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial__top .stars {
  margin-top: 4px;
  font-size: 10px;
}

.testimonial__google {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #4285f4;
  background: #f0f2f3;
  border-radius: 8px;
  font-weight: 800;
}

.testimonial blockquote {
  margin: 29px 0 25px;
  color: #2f4448;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
}

.testimonial__tag {
  margin-top: auto;
  padding-top: 17px;
  color: var(--red);
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-gallery {
  display: grid;
  margin-top: 55px;
  padding-top: 55px;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 0.7fr 0.8fr 0.8fr 1.1fr;
  gap: 16px;
}

.review-gallery__intro {
  display: flex;
  max-width: 560px;
  margin-top: 24px;
  flex-direction: column;
}

.review-gallery__intro > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-gallery__intro h3 {
  margin: 10px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.review-gallery__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.review-shot {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #f5f1e9;
  border: 0;
  border-radius: 15px;
  cursor: zoom-in;
}

.review-shot::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: rgba(8, 36, 42, 0.82);
  border-radius: 50%;
  content: "+";
  font-size: 18px;
}

.review-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.review-shot:hover img {
  transform: scale(1.025);
}

.review-shot--tall {
  height: 390px;
}

.review-gallery__stack {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.review-gallery--official {
  grid-template-columns: repeat(3, 1fr);
}

.official-review-card {
  display: flex;
  min-height: 250px;
  padding: 26px;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 201, 74, 0.18), transparent 35%),
    var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.13);
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.official-review-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px) scale(1.025);
}

.official-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.official-review-card__top > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.official-review-card__top strong {
  font-family: "Sora", sans-serif;
  font-size: 13px;
}

.official-review-card__top div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.official-review-card > .stars {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.official-review-card p {
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.location {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  grid-template-columns: 1.05fr 0.95fr;
}

.location__map {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 660px;
  overflow: hidden;
  background: #ddd;
}

.location__map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 660px;
  border: 0;
  filter: saturate(0.45) contrast(1.02);
}

.location__map iframe[hidden] {
  display: none;
}

.location__map-placeholder {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  padding: 36px;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 197, 61, 0.16), transparent 42%),
    linear-gradient(145deg, #0b3b42, #061f25);
}

.location__map.is-consented .location__map-placeholder {
  display: none;
}

.location__map-placeholder-content {
  display: flex;
  width: min(100%, 440px);
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.location__map-placeholder-content > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 18px;
  font-size: 30px;
}

.location__map-placeholder-content strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.location__map-placeholder-content p {
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.6;
}

.location__map-placeholder-content .button {
  min-height: 54px;
}

.location__map-placeholder-content > a:last-child {
  margin-top: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.location__content {
  display: flex;
  padding: 95px max(40px, calc((100vw - var(--container)) / 2)) 95px 72px;
  justify-content: center;
  flex-direction: column;
}

.location__content h2 {
  margin-bottom: 38px;
}

.location__detail {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
  gap: 15px;
}

.location__detail > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--red);
  background: var(--gold);
  border-radius: 13px;
}

.location__detail div {
  display: flex;
  flex-direction: column;
}

.location__detail small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.location__detail strong,
.location__detail a {
  font-family: "Sora", sans-serif;
  font-size: 15px;
}

.location__detail p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
}

.location__actions {
  display: flex;
  margin-top: 14px;
  gap: 10px;
}

.location__actions .button {
  min-height: 72px;
  padding-inline: 42px;
  font-size: 17px;
}

.location .button--primary {
  color: var(--red-dark);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(84, 12, 6, 0.18);
}

.location__seo-text {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.location__seo-text h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 24px;
}

.location__seo-text p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.final-cta {
  padding-block: 90px;
  background: var(--cream);
}

.final-cta__box {
  position: relative;
  display: grid;
  min-height: 320px;
  padding: 56px 64px;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 10%, rgba(255, 201, 74, 0.33), transparent 31%),
    linear-gradient(120deg, var(--red-dark), var(--red));
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(114, 16, 8, 0.18);
  grid-template-columns: 110px 1fr auto;
  gap: 40px;
}

.final-cta__box::after {
  position: absolute;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.final-cta__box > img {
  position: relative;
  z-index: 2;
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(56, 12, 8, 0.22));
}

.final-cta__box > div,
.final-cta__box > a {
  position: relative;
  z-index: 2;
}

.final-cta__box > div > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-top: 7px;
  font-size: clamp(39px, 4vw, 57px);
}

.footer {
  color: rgba(255, 255, 255, 0.59);
  background: #061a1f;
}

.footer__grid {
  display: grid;
  padding-block: 78px 62px;
  grid-template-columns: 1.7fr repeat(3, 0.75fr);
  gap: 60px;
}

.footer__logo {
  display: flex;
  width: fit-content;
  padding: 0;
  align-items: center;
  background: transparent;
  border-radius: 0;
}

.footer__logo img {
  width: min(220px, 48vw);
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.footer__logo span {
  font-size: 16px;
}

.footer__brand > p {
  max-width: 310px;
  margin: 20px 0 14px;
  font-size: 12px;
}

.footer__brand > a {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer__column > strong {
  margin: 5px 0 12px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer__column a,
.footer__column p {
  margin: 0;
  font-size: 11px;
}

.footer__column a:hover {
  color: var(--gold);
}

.footer__whatsapp {
  margin-top: 5px !important;
  color: var(--gold);
  font-weight: 700;
}

.footer__bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__legal {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__legal a,
.footer__legal button {
  padding: 0;
  color: rgba(255, 255, 255, 0.66);
  background: none;
  border: 0;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}

.footer__legal a:hover,
.footer__legal button:hover {
  color: var(--gold);
}

.footer__bottom p {
  margin: 0;
  font-size: 9px;
}

.cookie-consent {
  position: fixed;
  z-index: 4000;
  bottom: 24px;
  left: 24px;
  width: min(570px, calc(100% - 48px));
  padding: 24px;
  color: var(--white);
  background: rgba(6, 26, 31, 0.98);
  border: 1px solid rgba(255, 197, 61, 0.34);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.cookie-consent[hidden],
.cookie-consent__view[hidden] {
  display: none;
}

.cookie-consent h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 20px;
}

.cookie-consent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-consent__privacy-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.cookie-consent__actions {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 9px;
}

.cookie-consent__button {
  min-height: 44px;
  padding: 0 17px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.cookie-consent__button:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-consent__button--accept {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.cookie-consent__button--save {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.cookie-consent__option {
  display: flex;
  margin-top: 18px;
  padding: 15px;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.cookie-consent__option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.cookie-consent__option strong,
.cookie-consent__essential strong {
  display: block;
  color: var(--white);
  font-size: 13px;
}

.cookie-consent__option small,
.cookie-consent__essential small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.4;
}

.cookie-consent__essential {
  margin-top: 14px;
  padding: 12px 15px;
  border-left: 3px solid var(--gold);
}

.privacy-policy {
  background: var(--cream);
}

.privacy-policy__content {
  width: min(100%, 920px);
  margin-inline: auto;
}

.privacy-policy__intro {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.privacy-policy__section {
  margin-top: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(16, 45, 50, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(16, 45, 50, 0.06);
}

.privacy-policy__section h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.privacy-policy__section p,
.privacy-policy__section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.privacy-policy__section p:last-child {
  margin-bottom: 0;
}

.subpage-hero {
  padding: 150px 0 72px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 36, 42, 0.96), rgba(10, 65, 71, 0.92)),
    url("assets/images/facade-hero.jpg") center/cover no-repeat;
}

.subpage-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 36px;
}

.subpage-hero__visual {
  display: grid;
  gap: 14px;
}

.subpage-hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 197, 61, 0.2), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  backdrop-filter: blur(10px);
}

.subpage-hero__image::after {
  position: absolute;
  inset: auto -45px -70px auto;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(255, 197, 61, 0.2);
  border-radius: 50%;
}

.subpage-hero__image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 350px;
  height: 285px;
  object-fit: contain;
  filter: drop-shadow(0 24px 25px rgba(0, 0, 0, 0.25));
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.subpage-hero__image--water {
  display: block;
}

.subpage-hero__image--water img {
  position: absolute;
  bottom: 22px;
  width: 48%;
  max-width: none;
  height: 280px;
  margin: 0;
}

.subpage-hero__image--water img:nth-child(1) {
  left: 3%;
}

.subpage-hero__image--water img:nth-child(2) {
  left: 26%;
  z-index: 2;
  height: 300px;
}

.subpage-hero__image--water img:nth-child(3) {
  right: 3%;
}

.subpage-hero__image:hover img {
  transform: translateY(-6px) scale(1.025);
}

.subpage-hero__copy h1 {
  margin: 16px 0 18px;
  max-width: 760px;
}

.subpage-hero__copy p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.subpage-hero__card {
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.subpage-hero__visual .subpage-hero__card {
  padding: 22px 24px;
}

.subpage-hero__card h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 24px;
}

.subpage-hero__card p,
.subpage-hero__card li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.subpage-hero__card ul {
  margin: 0;
  padding-left: 18px;
}

.subpage-section {
  padding-block: 82px;
}

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

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

.subpage-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid rgba(16, 45, 50, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(16, 45, 50, 0.08);
}

.subpage-card h2,
.subpage-card h3 {
  margin: 0 0 12px;
}

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

.subpage-links {
  display: grid;
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.subpage-links a {
  display: block;
  padding: 20px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 45, 50, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(16, 45, 50, 0.08);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s ease, color 0.28s ease;
}

.subpage-links a:hover {
  color: var(--red-dark);
  box-shadow: 0 22px 36px rgba(16, 45, 50, 0.12);
  transform: translateY(-4px);
}

.subpage-nap {
  display: grid;
  margin-top: 26px;
  gap: 10px;
}

.subpage-nap strong {
  font-family: "Sora", sans-serif;
  font-size: 16px;
}

.whatsapp-float {
  --whatsapp-float-size: 58px;
  --whatsapp-float-icon-size: 90px;
  --whatsapp-float-offset-x: 26px;
  --whatsapp-float-offset-y: 40px;
  position: fixed;
  right: calc(env(safe-area-inset-right, 0px) + var(--whatsapp-float-offset-x));
  bottom: calc(env(safe-area-inset-bottom, 0px) + var(--whatsapp-float-offset-y));
  z-index: 90;
  display: grid;
  width: var(--whatsapp-float-size);
  height: var(--whatsapp-float-size);
  overflow: visible;
  min-height: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 11px;
  font-weight: 800;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s ease, filter 0.28s ease;
}

.whatsapp-float:hover {
  box-shadow: none;
  filter: brightness(1.06) saturate(1.05);
  transform: translateY(-5px) scale(1.08) rotate(-1deg);
}

.whatsapp-float img {
  width: var(--whatsapp-float-icon-size);
  height: var(--whatsapp-float-icon-size);
  max-width: none;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(7, 90, 43, 0.32));
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.whatsapp-float:hover img {
  filter: drop-shadow(0 18px 26px rgba(7, 90, 43, 0.4));
  transform: scale(1.035);
}

.whatsapp-float span {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  visibility: hidden;
  padding: 28px;
  place-items: center;
  opacity: 0;
  background: rgba(3, 20, 24, 0.92);
  backdrop-filter: blur(12px);
  transition: opacity 0.25s ease, visibility 0.25s;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: min(920px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 23px;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 29px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.82s ease, transform 0.82s cubic-bezier(0.16, 1, 0.3, 1), filter 0.72s ease;
  will-change: opacity, transform;
}

.reveal[data-reveal="left"] {
  transform: translate3d(-38px, 12px, 0);
}

.reveal[data-reveal="right"] {
  transform: translate3d(38px, 12px, 0);
}

.reveal[data-reveal="up"] {
  transform: translate3d(0, 32px, 0);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.22s;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.product-card.reveal:not(.is-visible),
.testimonial.reveal:not(.is-visible),
.official-review-card.reveal:not(.is-visible) {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, 46px, 0) scale(0.94);
}

.reveal.is-visible.button:hover {
  transform: translateY(-2px) scale(1.04);
}

.reveal.is-visible.product-card:hover {
  transform: translateY(-7px) scale(1.012);
}

.reveal.is-visible.official-review-card:hover {
  transform: translateY(-6px) scale(1.025);
}

.gas-step,
.gas-notice {
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s ease, background 0.28s ease;
}

.gas-step:hover,
.gas-notice:hover {
  box-shadow: 0 16px 36px rgba(16, 45, 50, 0.12);
  transform: scale(1.025);
}

.gas-step.is-visible:hover {
  box-shadow: 0 18px 38px rgba(16, 45, 50, 0.18);
  transform: translateY(-4px) scale(1.035);
}

@media (max-width: 1300px) {
  .reviews-carousel {
    padding-inline: 58px;
  }

  .reviews-carousel__arrow:first-child {
    left: 0;
  }

  .reviews-carousel__arrow:last-child {
    right: 0;
  }
}

@media (max-width: 1100px) {
  .brand {
    width: auto;
  }

  .nav {
    gap: 18px;
  }

  .header__button {
    padding-inline: 16px;
  }

  .hero__inner,
  .story__grid,
  .gas-people__grid {
    gap: 58px;
  }

  .product-grid,
  .testimonial-grid,
  .seo-copy__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .review-gallery__intro {
    grid-row: 1 / 3;
  }

  .review-gallery__stack {
    grid-column: 2 / 4;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .review-gallery--official {
    grid-template-columns: repeat(2, 1fr);
  }

  .subpage-hero__grid {
    grid-template-columns: 1fr 320px;
  }

  .subpage-grid,
  .subpage-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-carousel .testimonial,
  .reviews-carousel .official-review-card {
    flex-basis: calc((100% - 48px) / 4);
  }

  .reviews__heading {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.42fr) minmax(280px, 0.82fr);
    gap: 18px;
  }

  .reviews__social-visual img {
    width: 220px;
  }

  .reviews__quality-seal {
    height: 340px;
  }

  .location__seo-text h3 {
    font-size: 22px;
  }
}

@media (max-width: 920px) {
  .reviews-carousel .testimonial,
  .reviews-carousel .official-review-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .seo-copy__grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero__grid,
  .subpage-grid,
  .subpage-links {
    grid-template-columns: 1fr;
  }

  .subpage-hero__visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }
}

@media (max-width: 920px) {
  .nav,
  .header__button {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    visibility: hidden;
    height: calc(100dvh - var(--announcement-height) - 84px);
    min-height: calc(100vh - var(--announcement-height) - 84px);
    overflow-y: auto;
    opacity: 0;
    background: var(--paper);
    transform: translateY(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu__inner {
    display: flex;
    padding-top: 28px;
    flex-direction: column;
  }

  .mobile-menu__inner > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 700;
  }

  .mobile-menu__inner .button {
    margin-top: 25px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 34, 39, 0.98) 0%, rgba(7, 34, 39, 0.9) 58%, rgba(7, 34, 39, 0.42) 100%),
      linear-gradient(0deg, rgba(7, 34, 39, 0.32), transparent);
  }

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

  .hero__proof {
    display: none;
  }

  .quick-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-info article:nth-child(2) {
    border-right: 0;
  }

  .quick-info article:first-child {
    padding-left: 25px;
  }

  .story__grid,
  .gas-people__grid {
    grid-template-columns: 1fr;
  }

  .story__photos {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
  }

  .gas-people__visual {
    min-height: 520px;
  }

  .gas-people__cylinder {
    width: min(78%, 430px);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .section-heading > p {
    max-width: 760px;
  }

  .reviews__heading {
    min-height: 0;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .reviews__score {
    width: min(100%, 330px);
    min-width: 0;
    justify-self: center;
  }

  .reviews__copy {
    width: 100%;
    min-height: 380px;
    grid-column: 1 / -1;
  }

  .reviews__social-visual {
    min-height: 300px;
  }

  .reviews__social-visual img {
    width: min(100%, 180px);
    height: 285px;
  }

  .reviews__quality-seal {
    height: 290px;
  }

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

  .location__map,
  .location__map iframe {
    min-height: 500px;
  }

  .location__content {
    padding: 85px max(20px, calc((100vw - var(--container)) / 2));
  }

  .final-cta__box {
    grid-template-columns: 90px 1fr;
  }

  .final-cta__box > a {
    width: fit-content;
    grid-column: 2;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .announcement__inner {
    justify-content: center;
  }

  .announcement__inner p:last-child {
    display: none;
  }

  .header__inner {
    min-height: 72px;
  }

  .brand {
    width: auto;
    height: 66px;
  }

  .brand img {
    width: clamp(225px, 68vw, 260px);
    height: auto;
    max-height: 64px;
  }

  .brand span {
    font-size: 15px;
  }

  .mobile-menu {
    height: calc(100dvh - var(--announcement-height) - 72px);
    min-height: calc(100vh - var(--announcement-height) - 72px);
  }

  main section[id] {
    scroll-margin-top: calc(var(--announcement-height) + 84px);
  }

  .hero {
    min-height: 750px;
  }

  .hero__photo {
    background-position: 43% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(7, 34, 39, 0.88) 0%, rgba(7, 34, 39, 0.93) 47%, rgba(7, 34, 39, 0.98) 100%);
  }

  .hero__inner {
    min-height: 750px;
    padding-block: 66px;
    text-align: center;
  }

  .kicker {
    justify-content: center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero__content > p {
    font-size: 15px;
  }

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

  .hero__rating {
    justify-content: center;
    gap: 18px;
  }

  .hero__rating > strong {
    padding-right: 18px;
    font-size: 46px;
  }

  .hero__rating > div {
    gap: 7px;
  }

  .hero__rating .stars {
    font-size: 17px;
    letter-spacing: 0.12em;
  }

  .hero__rating span:not(.stars) {
    font-size: 13px;
    line-height: 1.25;
  }

  .quick-info__grid {
    grid-template-columns: 1fr;
    padding-inline: 2px;
    padding-bottom: 8px;
  }

  .quick-info article,
  .quick-info article:first-child {
    min-height: 68px;
    padding: 18px 12px 18px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 45, 50, 0.15);
    justify-content: start;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 16px;
  }

  .quick-info__number {
    font-size: 12.5px;
  }

  .quick-info article div {
    max-width: 250px;
  }

  .quick-info strong {
    font-size: 15px;
  }

  .quick-info small {
    margin-top: 4px;
    font-size: 11.5px;
    line-height: 1.32;
  }

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

  .section,
  .gas-people {
    padding-block: 82px;
  }

  .subpage-hero {
    padding: 132px 0 62px;
  }

  .subpage-hero__image {
    min-height: 300px;
  }

  .subpage-hero__image img {
    height: 260px;
  }

  .subpage-hero__image--water img {
    bottom: 20px;
    height: 245px;
  }

  .subpage-hero__image--water img:nth-child(2) {
    height: 265px;
  }

  .section h2,
  .gas-people h2,
  .location h2 {
    font-size: 37px;
  }

  .story__photos {
    min-height: 500px;
  }

  .story__photo--main {
    width: 82%;
    height: 84%;
  }

  .story__photo--small {
    width: 64%;
    height: 34%;
  }

  .story__badge {
    top: 25px;
    width: 104px;
    height: 104px;
  }

  .story__content .story__lead {
    font-size: 17px;
  }

  .story__brand-row {
    padding: 18px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .story__brand-row > span {
    width: 100%;
    max-width: 100%;
    font-size: 13px;
  }

  .story__brand-row img {
    width: min(255px, 100%);
    margin-inline: auto;
  }

  .story__credential-link {
    min-height: 56px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .section-heading > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .product-grid,
  .testimonial-grid,
  .seo-copy__grid {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    height: 320px;
  }

  .gas-people__grid {
    gap: 30px;
  }

  .gas-people__visual {
    min-height: 440px;
  }

  .gas-people__visual::before {
    width: 340px;
    height: 340px;
  }

  .gas-people__cylinder {
    width: min(85%, 350px);
  }

  .gas-people__official {
    right: 0;
    bottom: 12px;
    width: 165px;
  }

  .gas-people__notice {
    grid-template-columns: 1fr;
  }

  .reviews__score {
    width: 100%;
    min-width: 0;
  }

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

  .reviews__copy {
    min-height: 350px;
    padding: 62px 16px 68px;
  }

  .reviews__social-visual {
    display: none;
  }

  .reviews__social-visual img {
    width: min(100%, 175px);
    height: 260px;
  }

  .reviews__score {
    width: 100%;
  }

  .reviews__quality-seal {
    width: min(100%, 290px);
    height: 270px;
  }

  .reviews-carousel {
    margin-top: 34px;
    padding-inline: 48px;
  }

  .reviews-carousel__controls {
    margin-bottom: 10px;
  }

  .reviews-carousel__arrow {
    width: 48px;
    height: 94px;
    font-size: 76px;
  }

  .reviews-carousel__viewport {
    margin: -10px 0 -24px;
    padding: 10px 12px 24px;
  }

  .reviews-carousel .testimonial,
  .reviews-carousel .official-review-card {
    min-height: 300px;
    flex-basis: 100%;
  }

  .reviews__cta {
    margin-top: 26px;
  }

  .reviews__cta-button {
    width: min(100%, 340px);
    min-width: 0;
    min-height: 64px;
    padding-inline: 24px;
    font-size: 18px;
    line-height: 1.1;
  }

  .location__seo-text {
    margin-top: 22px;
    padding-top: 20px;
  }

  .location__seo-text h3 {
    font-size: 20px;
  }

  .location__seo-text p,
  .seo-copy__card p {
    font-size: 15px;
  }

  .subpage-hero__copy p,
  .subpage-card p {
    font-size: 16px;
  }

  .testimonial {
    min-height: auto;
  }

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

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

  .review-gallery__intro {
    margin-top: 20px;
    padding: 0;
  }

  .review-shot--tall {
    height: 350px;
  }

  .review-gallery__stack {
    grid-column: 1 / -1;
  }

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

  .location__actions .button {
    min-height: 64px;
    padding-inline: 24px;
    font-size: 15px;
  }

  .location__map,
  .location__map iframe {
    width: 100%;
    height: 360px;
    min-height: 360px;
    max-width: 100%;
  }

  .location__content {
    width: 100%;
    min-width: 0;
    padding: 72px 20px;
  }

  .location__content h2,
  .location__detail,
  .location__detail div {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .final-cta {
    padding-block: 60px;
  }

  .final-cta__box {
    min-height: 440px;
    padding: 38px 26px;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .final-cta__box > img {
    width: 86px;
    height: 86px;
    margin-inline: auto;
  }

  .final-cta__box > a {
    width: 100%;
    grid-column: auto;
  }

  .footer__grid {
    padding-block: 64px 46px;
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .footer__brand {
    display: flex;
    width: 100%;
    align-items: center;
    grid-column: auto;
    flex-direction: column;
  }

  .footer__logo {
    margin-inline: auto;
  }

  .footer__brand > p {
    margin-inline: auto;
  }

  .footer__column,
  .footer__column:last-child {
    width: 100%;
    align-items: center;
    grid-column: auto;
  }

  .footer__bottom {
    padding-block: 22px;
    align-items: center;
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .footer__legal {
    min-height: 66px;
    padding-block: 16px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .location__map-placeholder {
    padding: 24px 20px;
  }

  .location__map-placeholder-content strong {
    font-size: 28px;
  }

  .location__map-placeholder-content p {
    font-size: 13px;
  }

  .cookie-consent {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100dvh - 28px);
    padding: 20px;
    overflow-y: auto;
    border-radius: 18px;
  }

  .cookie-consent__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-consent__button {
    width: 100%;
  }

  .privacy-policy__section {
    padding: 22px 19px;
  }

  .privacy-policy__section h2 {
    font-size: 22px;
  }

  .whatsapp-float {
    --whatsapp-float-size: 54px;
    --whatsapp-float-icon-size: 84px;
    --whatsapp-float-offset-x: 24px;
    --whatsapp-float-offset-y: 36px;
    min-height: 0;
    padding: 0;
    place-items: center;
  }

  .reveal[data-reveal="left"] {
    transform: translate3d(-16px, 16px, 0);
  }

  .reveal[data-reveal="right"] {
    transform: translate3d(16px, 16px, 0);
  }

  .reveal[data-reveal="up"] {
    transform: translate3d(0, 20px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 0;
    transform: none;
    transition: opacity 0.2s ease !important;
  }

  .reveal.is-visible {
    opacity: 1;
  }

  .reviews-carousel__track {
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .whatsapp-float {
    transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms ease, filter 280ms ease !important;
  }

  .whatsapp-float img {
    transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }
}
