:root {
  --green-950: #031b14;
  --green-900: #063226;
  --green-800: #0a4936;
  --green-650: #177247;
  --green-500: #2fb36c;
  --lime-450: #8eed5f;
  --mint-100: #e9f8ef;
  --mint-50: #f5fbf7;
  --ink: #15211c;
  --muted: #607069;
  --line: #d8e6dd;
  --white: #ffffff;
  --gold: #d7a83b;
  --copper: #c58a58;
  --blue: #2d687c;
  --shadow-soft: 0 18px 48px rgba(3, 27, 20, 0.18);
  --shadow-strong: 0 28px 80px rgba(3, 27, 20, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--mint-50);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 5vw, 66px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 230, 221, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--green-900);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(3, 27, 20, 0.18);
}

.brand span {
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 15px;
  color: #08241b;
  background: var(--lime-450);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
  padding: clamp(54px, 8vw, 94px) clamp(18px, 7vw, 92px);
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(197, 138, 88, 0.26), transparent 26%),
    radial-gradient(circle at 18% 88%, rgba(142, 237, 95, 0.2), transparent 30%),
    linear-gradient(135deg, #020806, var(--green-950) 44%, #10281f);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.1);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 20, 0.96), rgba(3, 27, 20, 0.62)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 90px);
}

.light-sweep {
  position: absolute;
  inset: -40%;
  display: block;
  background: linear-gradient(115deg, transparent 38%, rgba(142, 237, 95, 0.26) 48%, transparent 58%);
  animation: sweep 6.5s ease-in-out infinite;
}

.hero-content,
.hero-showcase {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime-450);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.65rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 16px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.header-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #08241b;
  background: linear-gradient(135deg, var(--lime-450), #d6ff87);
  box-shadow: 0 14px 36px rgba(142, 237, 95, 0.28);
}

.button.secondary {
  color: inherit;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.38);
}

.promo-pill {
  display: inline-flex;
  max-width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(142, 237, 95, 0.42);
  border-radius: 8px;
  color: #ebffe5;
  background: rgba(142, 237, 95, 0.11);
  font-weight: 900;
  box-shadow: inset 0 0 28px rgba(142, 237, 95, 0.08);
}

.hero-showcase {
  min-height: 590px;
  perspective: 1200px;
}

.phone-card {
  position: absolute;
  top: 0;
  right: 8%;
  width: min(330px, 72vw);
  aspect-ratio: 9 / 16;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  box-shadow: var(--shadow-strong);
  transform: rotateY(-12deg) rotateX(4deg);
  animation: floatPhone 5.2s ease-in-out infinite;
}

.phone-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: #000;
}

.floating-card {
  position: absolute;
  width: min(250px, 46vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-strong);
}

.floating-card span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(3, 27, 20, 0.78);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.floating-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.before-card {
  left: 0;
  bottom: 92px;
  transform: rotateZ(-5deg);
  animation: floatCard 4.8s ease-in-out infinite;
}

.after-card {
  right: 0;
  bottom: 26px;
  transform: rotateZ(5deg);
  animation: floatCard 5.4s ease-in-out infinite reverse;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--green-950);
  color: var(--white);
}

.trust-strip span {
  padding: 18px;
  text-align: center;
  background: var(--green-800);
  font-weight: 900;
}

.section {
  padding: clamp(56px, 8vw, 98px) clamp(18px, 7vw, 92px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading p,
.intro p,
.coverage p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.66;
}

.promo-section {
  background: var(--white);
}

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

.price-card {
  position: relative;
  min-height: 138px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint-50);
  box-shadow: var(--shadow-soft);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(47, 179, 108, 0.14);
}

.price-card span {
  color: var(--muted);
  font-weight: 900;
}

.price-card strong {
  position: relative;
  color: var(--green-900);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-650));
  border-color: rgba(142, 237, 95, 0.36);
}

.price-card.featured span,
.price-card.featured strong {
  color: var(--white);
}

.price-card.wide {
  grid-column: span 2;
}

.intro,
.coverage,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
}

.services {
  background: var(--mint-100);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(3, 27, 20, 0.2);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.service-card p,
.benefit-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.results {
  background: #f0f6f2;
}

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

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

figure img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 450ms ease;
}

figure:hover img {
  transform: scale(1.04);
}

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.video-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(142, 237, 95, 0.22), transparent 26%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.video-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.video-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 650px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: #000;
  box-shadow: var(--shadow-strong);
}

.benefits {
  background: var(--white);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-list article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint-50);
  box-shadow: var(--shadow-soft);
}

.benefit-list span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--green-650);
  font-weight: 900;
}

.benefit-list h3 {
  margin-bottom: 10px;
}

.testimonials {
  background: #f6f8f5;
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.testimonial-grid p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
}

cite {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.coverage {
  background: var(--white);
}

.quote-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 27, 20, 0.92), rgba(10, 73, 54, 0.94)),
    url("./media/imagenes/foto-trabajo-08.jpeg") center / cover;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq {
  background: var(--mint-50);
}

details {
  padding: 18px 20px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(3, 27, 20, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(18px, 7vw, 92px);
  color: var(--white);
  background: #061c15;
}

.site-footer p {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 8px;
  color: #08241b;
  background: linear-gradient(135deg, var(--lime-450), #dcff90);
  box-shadow: 0 16px 42px rgba(47, 179, 108, 0.36);
  font-weight: 900;
  text-decoration: none;
}

.button.secondary.dark {
  color: var(--green-900);
  background: rgba(6, 50, 38, 0.06);
  border-color: rgba(6, 50, 38, 0.22);
}

.hero-location .hero-backdrop {
  opacity: 0.5;
}

.hero-location .hero-backdrop::after {
  background:
    linear-gradient(90deg, rgba(2, 8, 6, 0.96), rgba(3, 27, 20, 0.72) 48%, rgba(3, 27, 20, 0.18)),
    linear-gradient(0deg, rgba(3, 27, 20, 0.94), transparent 54%);
}

.location-showcase {
  display: grid;
  align-content: center;
  gap: 20px;
}

.location-showcase .phone-card {
  position: relative;
  top: auto;
  right: auto;
  justify-self: end;
  width: min(280px, 62vw);
}

.location-showcase .after-card {
  right: auto;
  left: 18px;
  bottom: 40px;
}

.location-showcase .before-card {
  left: auto;
  right: 18px;
  bottom: 245px;
}

.location-card {
  position: relative;
  z-index: 2;
  max-width: 390px;
  padding: 22px;
  border: 1px solid rgba(197, 138, 88, 0.44);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
    rgba(3, 27, 20, 0.78);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.location-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f0c492;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.location-card strong {
  display: block;
  font-size: 1.35rem;
}

.location-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.location-intro,
.map-section,
.focus-section,
.two-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
}

.location-intro p,
.map-section p,
.focus-section p,
.two-feature p {
  color: var(--muted);
  line-height: 1.66;
}

.service-grid.expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.text-card {
  min-height: 250px;
}

.text-card div {
  min-height: 250px;
  align-content: start;
}

.highlighted-service {
  border-color: rgba(142, 237, 95, 0.8);
  background: linear-gradient(135deg, var(--white), #efffea);
}

.mini-cta {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 8px;
  color: #09261d;
  background: var(--lime-450);
  font-weight: 900;
  text-decoration: none;
}

.focus-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(142, 237, 95, 0.2), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.focus-section .focus-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.focus-section img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.purifica-plus-section {
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(197, 138, 88, 0.22), transparent 26%),
    radial-gradient(circle at 18% 88%, rgba(142, 237, 95, 0.16), transparent 34%),
    linear-gradient(135deg, #060706, #10120f 44%, #17291f);
  overflow: hidden;
}

.purifica-plus-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.product-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 0.55fr));
  gap: 16px;
  align-items: stretch;
  margin-bottom: 24px;
  perspective: 1200px;
}

.product-hero-card,
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 138, 88, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(5, 10, 8, 0.82);
  box-shadow: var(--shadow-strong);
}

.product-hero-card {
  transform: rotateY(7deg) rotateX(2deg);
  min-height: 430px;
}

.product-hero-card img,
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card {
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto auto;
  padding-bottom: 16px;
  transform: rotateY(-7deg);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: rotateY(0) translateY(-8px);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.52);
}

.product-card img {
  height: 270px;
}

.product-card strong,
.product-card span {
  padding-inline: 16px;
}

.product-card strong {
  margin-top: 14px;
  color: #f0c492;
  font-size: 1.2rem;
}

.product-card span {
  margin-top: 6px;
  color: rgba(255,255,255,0.76);
  font-size: 0.92rem;
}

.two-feature {
  background: var(--white);
}

.two-feature article {
  min-height: 340px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint-50);
  box-shadow: var(--shadow-soft);
}

.process-section {
  background: var(--mint-100);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 160px;
  padding: 54px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.process-list li::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--green-650);
  font-weight: 900;
}

.map-section {
  background: var(--white);
}

.map-section iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.review-link {
  margin-top: 20px;
}

@keyframes sweep {
  0%, 35% {
    transform: translateX(-28%) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80%, 100% {
    transform: translateX(28%) rotate(0deg);
    opacity: 0;
  }
}

@keyframes floatPhone {
  0%, 100% {
    transform: rotateY(-12deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: rotateY(-8deg) rotateX(3deg) translateY(-14px);
  }
}

@keyframes floatCard {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-showcase {
    min-height: 520px;
  }

  .phone-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotateY(-8deg);
  }

  .price-grid,
  .comparison-grid,
  .benefit-list,
  .testimonial-grid,
  .service-grid.expanded,
  .process-list,
  .product-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro,
  .coverage,
  .quote-section,
  .location-intro,
  .map-section,
  .focus-section,
  .two-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 14px;
  }

  nav {
    display: none;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
  }

  .hero {
    padding: 48px 18px 58px;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .phone-card {
    width: min(250px, 68vw);
  }

  .floating-card {
    width: min(180px, 45vw);
  }

  .floating-card img {
    height: 132px;
  }

  .before-card {
    bottom: 76px;
  }

  .after-card {
    bottom: 4px;
  }

  .trust-strip,
  .price-grid,
  .service-grid,
  .service-grid.expanded,
  .comparison-grid,
  .video-grid,
  .benefit-list,
  .testimonial-grid,
  .process-list,
  .product-stage {
    grid-template-columns: 1fr;
  }

  .product-hero-card,
  .product-card {
    transform: none;
  }

  .price-card.wide {
    grid-column: auto;
  }

  .hero-actions .button,
  .site-footer .button {
    width: 100%;
  }

  .section {
    padding: 52px 18px;
  }

  figure img,
  .service-card img {
    height: 280px;
  }

  .site-footer {
    display: grid;
  }

  .floating-whatsapp {
    left: 18px;
  }
}

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