:root {
  --primary: #046473;
  --primary-dark: #073c45;
  --primary-deep: #042f36;
  --secondary: #d2eaed;
  --secondary-strong: #78c1ca;
  --ink: #082f35;
  --muted: #4d666a;
  --white: #ffffff;
  --soft: #f5f8f8;
  --line: #c9dcde;
  --whatsapp: #25d366;
  --accent: #e2a21a;
  --container: 1200px;
  --radius: 12px;
  --shadow: 0 8px 24px rgb(4 58 67 / 12%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.section {
  padding-block: clamp(82px, 9vw, 132px);
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--primary-deep);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 8px rgb(4 58 67 / 10%);
}

.header-content {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: block;
  width: 238px;
  flex: 0 0 238px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
}

.main-nav a {
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--primary);
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    box-shadow 180ms ease;
}

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

.button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.header-button {
  color: var(--secondary);
  background: var(--primary);
  box-shadow: 0 7px 16px rgb(4 100 115 / 18%);
}

.header-button:hover {
  background: var(--primary-dark);
  box-shadow: 0 11px 22px rgb(4 100 115 / 24%);
}

.header-button img {
  width: 22px;
  height: 22px;
}

.header-button-short {
  display: none;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.button-whatsapp {
  color: #052f2b;
  background: var(--whatsapp);
  box-shadow: 0 7px 16px rgb(5 47 43 / 16%);
}

.button-whatsapp:hover {
  background: #3adb79;
  box-shadow: 0 11px 22px rgb(5 47 43 / 22%);
}

.button-outline {
  color: var(--white);
  border: 2px solid rgb(255 255 255 / 85%);
  background: transparent;
}

.button-outline:hover {
  color: var(--primary-dark);
  background: var(--white);
}

.button-secondary {
  min-height: 46px;
  color: var(--primary);
  border: 1px solid var(--primary);
  background: var(--white);
  font-size: 0.94rem;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--primary);
}

.button-secondary img {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--primary-dark);
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: 56% center;
}

.hero-shade {
  background: linear-gradient(
    90deg,
    rgb(3 38 44 / 94%) 0%,
    rgb(3 38 44 / 78%) 38%,
    rgb(3 38 44 / 28%) 70%,
    rgb(3 38 44 / 8%) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 92px 118px;
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
}

.hero h1 span {
  display: block;
}

.hero-title-light {
  color: var(--secondary);
}

.hero-title-dark {
  color: var(--secondary-strong);
}

.hero p {
  max-width: 54ch;
  margin-bottom: 30px;
  color: #eef8f8;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 112px;
  margin-top: -56px;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  border-radius: var(--radius);
  background: var(--primary);
  box-shadow: var(--shadow);
}

.proof-item {
  display: flex;
  padding: 25px 32px;
  align-items: center;
  gap: 18px;
}

.proof-item + .proof-item {
  border-left: 1px solid rgb(210 234 237 / 35%);
}

.proof-stat,
.proof-icon {
  display: inline-flex;
  min-width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.proof-stat {
  font-size: 1.65rem;
  font-weight: 900;
}

.proof-icon svg {
  width: 38px;
  height: 38px;
}

.proof-item div {
  display: grid;
}

.proof-item strong {
  line-height: 1.25;
}

.proof-item small {
  margin-top: 3px;
  color: var(--secondary);
  font-size: 0.83rem;
}

.about {
  padding-top: clamp(118px, 12vw, 170px);
}

.about-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(48px, 8vw, 108px);
}

.section-label {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 800;
}

.about h2,
.section-heading h2,
.responsibility h2,
.process h2,
.contact h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.65rem);
}

.about-copy > p:not(.section-label) {
  max-width: 54ch;
  margin-block: 24px 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.text-link,
.service-content a {
  display: inline-flex;
  margin-top: 28px;
  width: fit-content;
  padding: 13px 16px;
  align-items: center;
  gap: 14px;
  color: var(--primary);
  border: 1px solid rgb(4 100 115 / 14%);
  border-radius: 8px;
  background: rgb(210 234 237 / 58%);
  box-shadow: 0 5px 14px rgb(4 58 67 / 7%);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.text-link:hover,
.service-content a:hover {
  background: rgb(210 234 237 / 90%);
  box-shadow: 0 8px 18px rgb(4 58 67 / 11%);
  transform: translateY(-2px);
}

.text-link > span,
.service-content a > span {
  font-size: 1.15em;
  line-height: 1;
  transition: transform 180ms ease;
}

.text-link:hover > span,
.service-content a:hover > span {
  transform: translateX(3px);
}

.about-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--secondary);
}

.about-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54px;
  background: var(--primary);
  content: "";
}

.about-media img {
  position: absolute;
  z-index: 1;
  right: -5%;
  bottom: 44px;
  width: 110%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 18px 12px rgb(4 58 67 / 22%));
}

.experience-number {
  position: absolute;
  top: 28px;
  left: 32px;
  color: rgb(4 100 115 / 15%);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 1;
}

.services {
  background: var(--soft);
}

.section-heading {
  display: grid;
  margin-bottom: 52px;
  align-items: end;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
}

.section-heading > p {
  max-width: 48ch;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.06rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:not(.reveal-on-scroll):hover,
  .service-card:not(.reveal-on-scroll):focus-within,
  .service-card.reveal-finished:hover,
  .service-card.reveal-finished:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgb(4 58 67 / 15%);
  }
}

.service-image {
  height: 390px;
  margin: 0;
  overflow: hidden;
  background: var(--secondary);
}

.service-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image-dumpster {
  display: flex;
  padding: 28px;
  align-items: center;
  justify-content: center;
  background: #e5f1f2;
}

.service-image-dumpster > img {
  width: 106%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 10px rgb(4 58 67 / 18%));
}

.service-content {
  padding: 34px 36px 38px;
}

.service-content h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
}

.service-content p {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--muted);
}

.service-content a {
  margin-top: 22px;
}

.responsibility {
  padding-block: clamp(78px, 9vw, 124px);
  background: var(--secondary);
}

.responsibility-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(48px, 7vw, 92px);
}

.responsibility-copy h2 {
  max-width: 12ch;
}

.responsibility-intro {
  max-width: 55ch;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.06rem;
}

.responsibility-points {
  border-top: 1px solid rgb(4 100 115 / 28%);
}

.responsibility-item {
  display: grid;
  padding-block: 28px;
  grid-template-columns: 54px 1fr;
  gap: 20px;
}

.responsibility-item + .responsibility-item {
  border-top: 1px solid rgb(4 100 115 / 28%);
}

.responsibility-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 50%;
  background: var(--primary);
}

.responsibility-icon svg {
  width: 27px;
  height: 27px;
}

.responsibility-item h3 {
  margin-bottom: 9px;
  font-size: 1.4rem;
}

.responsibility-item p {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--muted);
}

.responsibility-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgb(4 58 67 / 15%);
}

.responsibility-media img {
  width: 100%;
  margin: 80px 0 12px;
  height: auto;
  filter: drop-shadow(0 18px 14px rgb(69 20 43 / 16%));
}

.campaign-tag {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 24px;
  display: grid;
  padding: 12px 16px;
  color: var(--white);
  border-radius: 8px;
  background: var(--primary-deep);
}

.campaign-tag span {
  color: var(--secondary);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.campaign-tag strong {
  font-size: 1.2rem;
}

.responsibility-media figcaption {
  padding: 18px 24px 21px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.process {
  color: var(--white);
  background: var(--primary-deep);
}

.process-heading {
  margin-bottom: 54px;
  text-align: center;
}

.section-label-light {
  color: var(--secondary);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 18px clamp(28px, 4vw, 54px) 8px;
}

.process-list li + li {
  border-left: 1px solid rgb(210 234 237 / 25%);
}

.process-number {
  display: inline-flex;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep);
  border-radius: 50%;
  background: var(--secondary);
  font-size: 1rem;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.process-list p {
  max-width: 34ch;
  margin-bottom: 0;
  color: #bdd4d7;
}

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

.contact-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 7vw, 94px);
}

.contact-photo {
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-content h2 {
  margin-bottom: 36px;
}

.contact-block {
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.contact-block h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0;
}

.contact-block address,
.contact-block p {
  margin: 0;
  font-style: normal;
}

.contact-phone {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
}

.hours {
  max-width: 390px;
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hours dd {
  margin: 0;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.final-cta {
  padding-block: clamp(54px, 7vw, 88px);
  color: var(--white);
  background: var(--primary);
}

.final-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.final-cta p {
  margin: 12px 0 0;
  color: var(--secondary);
  font-size: 1.05rem;
}

.site-footer {
  padding-block: 58px;
  color: #c3dadd;
  background: var(--primary-deep);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 64px;
}

.footer-content > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-content strong {
  color: var(--white);
}

.footer-content a {
  text-decoration-color: rgb(210 234 237 / 45%);
}

.footer-brand img {
  width: 230px;
  height: auto;
}

.footer-brand p {
  margin-bottom: 0;
}

.mobile-whatsapp {
  display: none;
}

.reveal-on-scroll {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  translate: 0 0;
}

.service-card.reveal-on-scroll {
  translate: 0 12px;
  transition: opacity 620ms cubic-bezier(0.22, 0.61, 0.36, 1),
    translate 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card.reveal-on-scroll.is-visible {
  translate: 0 0;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .header-button {
    margin-left: auto;
  }

  .hero {
    min-height: 610px;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 520px;
  }

  .contact-photo {
    min-height: 500px;
  }

  .contact-content {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .section {
    padding-block: 72px;
  }

  .header-content {
    min-height: 70px;
    gap: 14px;
  }

  .brand {
    width: 172px;
    flex-basis: 172px;
  }

  .header-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    margin-left: auto;
    flex: 0 0 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--primary);
    border: 1px solid rgb(4 100 115 / 16%);
    border-radius: 8px;
    background: rgb(210 234 237 / 58%);
    box-shadow: 0 5px 14px rgb(4 58 67 / 8%);
    font: inherit;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: currentcolor;
  }

  .mobile-menu {
    position: fixed;
    top: 78px;
    right: 16px;
    bottom: auto;
    left: 16px;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 12px 20px 16px;
    border: 1px solid rgb(4 100 115 / 14%);
    border-radius: 10px;
    background: rgb(255 255 255 / 97%);
    box-shadow: 0 18px 42px rgb(4 47 54 / 20%);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, display 180ms allow-discrete,
      overlay 180ms allow-discrete;
  }

  .mobile-menu:popover-open {
    display: grid;
    opacity: 1;
    transform: translateY(0);
  }

  @starting-style {
    .mobile-menu:popover-open {
      opacity: 0;
      transform: translateY(-10px);
    }
  }

  .mobile-menu > a {
    padding: 15px 2px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-menu > a:last-child {
    border-bottom: 0;
  }

  .mobile-menu::backdrop {
    background: rgb(4 47 54 / 20%);
  }

  .hero {
    min-height: 680px;
    align-items: flex-end;
  }

  .hero-background {
    object-position: 59% center;
  }

  .hero-shade {
    background: linear-gradient(
      0deg,
      rgb(3 38 44 / 98%) 0%,
      rgb(3 38 44 / 88%) 48%,
      rgb(3 38 44 / 36%) 100%
    );
  }

  .hero-content {
    padding-block: 130px 104px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .proof-strip {
    margin-top: -42px;
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 88px;
    padding: 18px 22px;
  }

  .proof-item + .proof-item {
    border-top: 1px solid rgb(210 234 237 / 30%);
    border-left: 0;
  }

  .about {
    padding-top: 94px;
  }

  .about-layout {
    gap: 44px;
  }

  .about h2,
  .section-heading h2,
  .responsibility h2,
  .process h2,
  .contact h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .about-media {
    min-height: 330px;
  }

  .about-media img {
    right: -3%;
    bottom: 38px;
    width: 106%;
  }

  .experience-number {
    top: 20px;
    left: 22px;
  }

  .section-heading {
    margin-bottom: 34px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .service-image {
    height: 280px;
  }

  .service-image-dumpster {
    padding: 18px;
  }

  .service-content {
    padding: 28px 24px 32px;
  }

  .responsibility-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .responsibility-copy h2 {
    max-width: 14ch;
  }

  .responsibility-media img {
    margin-top: 74px;
  }

  .process-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    padding: 26px 0;
    grid-template-columns: 62px 1fr;
    column-gap: 18px;
  }

  .process-list li + li {
    border-top: 1px solid rgb(210 234 237 / 25%);
    border-left: 0;
  }

  .process-number {
    width: 54px;
    height: 54px;
    margin: 0;
    grid-row: span 2;
  }

  .process-list h3 {
    margin: 2px 0 8px;
  }

  .process-list p {
    grid-column: 2;
  }

  .contact-layout {
    gap: 44px;
  }

  .contact-photo {
    min-height: 310px;
  }

  .contact-content h2 {
    margin-bottom: 28px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-actions .button {
    width: 100%;
  }

  .final-cta-content {
    display: grid;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 15;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #052f2b;
    border-radius: 8px;
    background: var(--whatsapp);
    box-shadow: 0 6px 8px rgb(5 47 43 / 24%);
    font-weight: 900;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    translate: 0 calc(100% + 24px);
    transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
      translate 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 220ms;
  }

  .mobile-whatsapp.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    translate: 0 0;
    transition-delay: 0s;
  }

  .mobile-whatsapp img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 154px;
    flex-basis: 154px;
  }

  .header-button {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-on-scroll {
    opacity: 1;
    translate: none;
  }

  .mobile-whatsapp {
    translate: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
