:root {
  --bg: #eef5f4;
  --panel: #e4f1fb;
  --panel-strong: #d8e9f6;
  --teal: #08aeea;
  --teal-dark: #3a168f;
  --ink: #071f20;
  --muted: #5f7474;
  --white: #ffffff;
  --line: rgba(7, 31, 32, 0.12);
  --radius: 8px;
  --shadow: 0 18px 50px rgba(6, 51, 51, 0.14);
  --font-main: "Poppins", Arial, sans-serif;
  --fs-small: 14px;
  --fs-body: 16px;
  --fs-paragraph: 16px;
  --fs-subheading: clamp(20px, 2vw, 28px);
  --fs-heading: clamp(34px, 4.5vw, 64px);
  --fs-display: clamp(34px, 5vw, 72px);
  --fs-quote: clamp(76px, 8vw, 112px);
  --section-width: 1480px;
  --section-gutter: clamp(16px, 4vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  padding-top: 164px;
  overflow-x: hidden;
  font-family: var(--font-main);
  color: var(--ink);
  background:
    radial-gradient(circle at 0 12%, rgba(8, 174, 234, 0.1), transparent 28rem),
    linear-gradient(90deg, rgba(58, 22, 143, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 16px 16px, auto;
  scroll-behavior: smooth;
}

body.has-lightbox {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font-family: var(--font-main);
}

[id] {
  scroll-margin-top: 112px;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0 16px;
  background: transparent;
}

.topline {
  width: 100%;
  height: 58px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: var(--teal);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  font-size: var(--fs-body);
  transition:
    height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    margin 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.topline__promo,
.topline__item,
.topline__links {
  display: flex;
  align-items: center;
}

.topline__promo {
  gap: 7px;
  min-width: 0;
  font-weight: 600;
}

.topline__promo span {
  color: var(--white);
  white-space: nowrap;
}

.promo-slider {
  position: relative;
  width: 190px;
  height: 28px;
  display: inline-grid;
  align-items: center;
  overflow: hidden;
}

.promo-slider strong {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(110%);
  animation: promoSlide 9s ease-in-out infinite;
  white-space: nowrap;
}

.promo-slider strong:nth-child(2) {
  animation-delay: 3s;
}

.promo-slider strong:nth-child(3) {
  animation-delay: 6s;
}

@keyframes promoSlide {
  0% {
    opacity: 0;
    transform: translateY(110%);
  }

  8%,
  30% {
    opacity: 1;
    transform: translateY(0);
  }

  38%,
  100% {
    opacity: 0;
    transform: translateY(-110%);
  }
}

.topline__links {
  gap: 0;
  font-weight: 600;
}

.topline__item {
  min-height: 28px;
  gap: 9px;
  padding: 0 24px;
  border-left: 1px dashed rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.topline__item span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: var(--fs-small);
}

.topline__item span img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav {
  width: 100%;
  margin: 14px auto 0;
  min-height: 92px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: transparent;
  border-radius: 12px 12px 0 0;
  box-shadow: none;
  transition:
    min-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    margin 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 300ms ease,
    box-shadow 300ms ease,
    border-radius 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(180px, 16vw, 260px);
  height: 52px;
}

.brand img {
  width: 100%;
  object-fit: contain;
}

.nav__menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #123d3e;
  font-size: var(--fs-body);
  font-weight: 600;
}

.nav__drawer-head,
.nav__drawer-contact {
  display: none;
}

.nav__menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav__menu a:first-child {
  color: var(--teal);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  font-weight: 700;
  font-size: var(--fs-small);
}

.nav__cta,
.button--primary,
.button--wide {
  color: var(--white);
  background: var(--teal);
}

.nav__cta {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: var(--fs-body);
  font-weight: 800;
}

.nav__cta span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-dark);
  font-size: var(--fs-body);
}

.site-header.is-scrolled {
  padding-top: 0;
}

.site-header.is-scrolled .topline {
  height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-12px);
}

.site-header.is-scrolled .nav {
  min-height: 82px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 14px 34px rgba(7, 31, 32, 0.12);
  backdrop-filter: blur(16px);
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.button--wide {
  width: 100%;
  border-radius: 6px;
}

.hero__button {
  min-height: 58px;
  padding: 0 8px 0 28px;
  gap: 16px;
  border-radius: 999px;
  font-size: var(--fs-body);
}

.hero__button span {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  font-size: var(--fs-body);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
}

.nav__toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--ink);
}

.section-grid {
  width: calc(100% - (var(--section-gutter) * 2));
  max-width: var(--section-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: var(--fs-small);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding-top: 72px;
  padding-bottom: 56px;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: var(--fs-display);
  line-height: 1;
  letter-spacing: 0;
}

.hero__actions {
  position: relative;
  z-index: 30;
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero__whatsapp {
  position: relative;
  z-index: 40;
  width: fit-content;
}

.hero__button {
  border: 0;
  cursor: pointer;
}

.hero__whatsapp .whatsapp_menu {
  left: 0;
  right: auto;
  bottom: 100%;
  top: auto;
  min-width: 100%;
  transform: translateY(8px);
}

.hero__whatsapp:hover .whatsapp_menu,
.hero__whatsapp.is-open .whatsapp_menu,
.hero__whatsapp:focus-within .whatsapp_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


.phone {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  color: var(--ink);
  font-size: var(--fs-body);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.phone span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.phone i {
  font-size: var(--fs-body);
  text-decoration: none;
}

.hero__text {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: var(--fs-paragraph);
}

.hero__visual {
  position: relative;
  min-height: 390px;
  border-radius: 0 0 110px 0;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 10px 10px;
  mix-blend-mode: screen;
}

.hero__stat {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 4;
  width: 105px;
  padding: 16px;
  color: var(--white);
  background: #3a168f;
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
}

.hero__stat strong {
  display: block;
  font-size: var(--fs-body);
}

.hero__stat span {
  font-size: var(--fs-small);
}

.vertical-text {
  position: absolute;
  right: 12px;
  top: 24px;
  z-index: 4;
  margin: 0;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--fs-small);
  font-weight: 800;
}

.logo-strip {
  width: calc(100% - (var(--section-gutter) * 2));
  margin: 20px auto 76px;
  height: 204px;
  padding: 34px 18px;
  border-radius: 10px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--teal);
}

.logo-strip__track {
  display: flex;
  gap: 26px;
  min-width: max-content;
  animation: logoScroll 34s linear infinite;
}

.logo-strip:hover .logo-strip__track {
  animation-play-state: paused;
}

.logo-card {
  width: clamp(210px, 16.5vw, 320px);
  height: 136px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.015);
  flex: 0 0 auto;
}

.logo-card img {
  width: min(78%, 230px);
  max-height: 82px;
  object-fit: contain;
}

@keyframes logoScroll {
  to {
    transform: translateX(calc(-50% - 13px));
  }
}

.intro {
  width: calc(100% - (var(--section-gutter) * 2));
  max-width: var(--section-width);
  margin: 0 auto;
  padding: 70px 72px 86px;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: var(--fs-heading);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro__cards {
  max-width: 1180px;
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.intro__cards article {
  min-height: 320px;
  padding: 34px 24px 26px;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(6, 51, 51, 0.06);
  transition: background-color 260ms ease, color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.intro__cards article:hover {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(6, 51, 51, 0.18);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  color: var(--teal);
  transition: color 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-icon svg {
  width: 70px;
  height: 70px;
  overflow: visible;
}

.expertise-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(54%) sepia(98%) saturate(1519%) hue-rotate(160deg) brightness(96%) contrast(101%);
  transition: filter 260ms ease;
}

.expertise-icon path,
.expertise-icon circle,
.expertise-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro__cards article:hover .expertise-icon {
  color: var(--white);
  transform: translateY(-6px) scale(1.08) rotate(-3deg);
}

.intro__cards article:hover .expertise-icon img {
  filter: brightness(0) invert(1);
}

.intro__cards h3 {
  margin: 0 0 18px;
  font-size: var(--fs-body);
}

.intro__cards p {
  margin: 0 0 22px;
  font-size: var(--fs-paragraph);
  line-height: 1.5;
}

.intro__cards article:hover p {
  color: rgba(255, 255, 255, 0.78);
}

.intro__cards a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 800;
}

.intro__cards a span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  transition: transform 260ms ease, background-color 260ms ease;
}

.intro__cards article:hover a {
  color: var(--white);
}

.intro__cards article:hover a span {
  color: var(--teal);
  background: var(--white);
  transform: translateX(5px) rotate(45deg);
}

h3 {
  margin: 10px 0 8px;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: var(--fs-paragraph);
  line-height: 1.65;
}

.feature {
  position: relative;
  isolation: isolate;
  max-width: var(--section-width);
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 72px;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.95fr);
  justify-content: center;
  background: transparent;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  background: var(--panel);
  transform: translateX(-50%);
}

.feature > * {
  max-width: 520px;
}

.feature__media {
  position: relative;
  justify-self: end;
  max-width: 430px;
}

.feature__media img {
  height: 768px;
  object-fit: cover;
  object-position: 88% 48%;
  border-radius: var(--radius);
}

.progress-card {
  position: absolute;
  left: -28px;
  bottom: -28px;
  width: 260px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.metric-row:first-child {
  padding-top: 0;
}

.metric-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.metric-row > span {
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1.25;
}

.metric-row strong {
  color: var(--teal-dark);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  white-space: nowrap;
}

.feature__mini {
  margin: 28px 0 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature__mini article {
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
}

.feature__mini h3 {
  margin-top: 0;
  font-size: var(--fs-body);
}

.feature__mini p {
  margin-bottom: 0;
  font-size: var(--fs-paragraph);
}

.why-section {
  width: calc(100% - (var(--section-gutter) * 2));
  max-width: var(--section-width);
  margin: 0 auto;
  padding: 92px 24px 86px;
  text-align: center;
}

.why-grid {
  max-width: 1180px;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.why-card {
  position: relative;
  min-height: 260px;
  padding: 34px 28px 30px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: background-color 260ms ease, color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.why-card:hover {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(6, 51, 51, 0.18);
}

.why-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: var(--teal);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), color 260ms ease;
}

.why-card__icon:empty::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 6px;
  transform: rotate(45deg);
}

.why-card__icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(58%) sepia(96%) saturate(2399%) hue-rotate(163deg) brightness(96%) contrast(101%);
}

.why-card:hover .why-card__icon img {
  filter: brightness(0) invert(1);
}

.why-card:hover .why-card__icon {
  color: var(--white);
  transform: scale(1.08) rotate(-7deg);
}

.why-card h3 {
  margin: 0 0 16px;
  font-size: var(--fs-body);
  line-height: 1.22;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-paragraph);
  line-height: 1.55;
}

.why-card:hover p {
  color: rgba(255, 255, 255, 0.82);
}

.product-showcase {
  position: relative;
  isolation: isolate;
  width: calc(100% - (var(--section-gutter) * 2));
  max-width: var(--section-width);
  margin: 36px auto 0;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
  background: transparent;
}

#stocklots::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  background: #d8e9f6;
  transform: translateX(-50%);
}

.product-showcase--reverse {
  margin-top: 28px;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.95fr);
}

.product-showcase__image,
.product-showcase__card {
  min-height: 410px;
  border-radius: 10px;
}

.product-showcase__image {
  position: relative;
  overflow: hidden;
  background: var(--panel);
}

.product-showcase__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 31, 32, 0.24), rgba(7, 31, 32, 0.06) 38%, rgba(7, 31, 32, 0.48));
  pointer-events: none;
}

.shutter-slider {
  --slider-duration: 2.5s;
  --slider-color: #08aeea;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--slider-color);
}

.shutter-slider__slides,
.shutter-slider__slide,
.shutter-slider__bg {
  position: absolute;
  inset: 0;
}

.shutter-slider__slide {
  opacity: 0;
  pointer-events: none;
  animation: shutterShowSlide 20s steps(1) infinite;
}

.shutter-slider__slide:nth-child(1) {
  animation-delay: 0s;
}

.shutter-slider__slide:nth-child(2) {
  animation-delay: 5s;
}

.shutter-slider__slide:nth-child(3) {
  animation-delay: 10s;
}

.shutter-slider__slide:nth-child(4) {
  animation-delay: 15s;
}

.shutter-slider--two .shutter-slider__slide {
  animation-name: shutterShowSlideTwo;
  animation-duration: 10s;
}

.shutter-slider--two .shutter-slider__slide:nth-child(1) {
  animation-delay: 0s;
}

.shutter-slider--two .shutter-slider__slide:nth-child(2) {
  animation-delay: 5s;
}

.shutter-slider--stocklots .shutter-slider__slide {
  animation-name: shutterShowSlideSeven;
  animation-duration: 35s;
}

.shutter-slider--used-shoes .shutter-slider__slide {
  animation-name: shutterShowSlideSix;
  animation-duration: 30s;
}

.shutter-slider__bg {
  background-size: cover;
  background-position: center;
  background-color: transparent;
  filter: none;
  transform-origin: center;
  animation: shutterBgInOut 10s -5s infinite;
}

.shutter-slider__shutters {
  position: absolute;
  left: calc(50% - 75vmax);
  top: calc(50% - 75vmax);
  z-index: 2;
  width: 150vmax;
  height: 150vmax;
  pointer-events: none;
  animation: shutterRotateFrame 10s linear infinite;
}

.shutter-slider__shutters::before,
.shutter-slider__shutters::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--slider-color);
  transform: translate3d(-50%, 0, 0);
}

.shutter-slider__shutters::before {
  bottom: 50%;
  animation: shutterOpenTop 5s infinite;
}

.shutter-slider__shutters::after {
  top: 50%;
  animation: shutterOpenBottom 5s infinite;
}

@keyframes shutterRotateFrame {
  to {
    transform: rotate(180deg);
  }
}

@keyframes shutterOpenTop {
  0% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
  }

  40%,
  70% {
    transform: translate3d(-50%, -65vmax, 0);
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
}

@keyframes shutterOpenBottom {
  0% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
  }

  40%,
  70% {
    transform: translate3d(-50%, 65vmax, 0);
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
}

@keyframes shutterShowSlide {
  0% {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  25%,
  100% {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
}

@keyframes shutterShowSlideTwo {
  0% {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  50%,
  100% {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
}

@keyframes shutterShowSlideSix {
  0% {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  16.666%,
  100% {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
}

@keyframes shutterShowSlideSeven {
  0% {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  14.285%,
  100% {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
}

@keyframes shutterBgInOut {
  0% {
    transform: rotate(-45deg) scale(1.1);
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  33%,
  50% {
    transform: rotate(0deg) scale(1);
  }

  66% {
    transform: rotate(0deg) scale(1);
    animation-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  }

  100% {
    transform: rotate(45deg) scale(0.9);
  }
}

.product-showcase__label {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: min(260px, 72%);
  padding: 28px;
  color: var(--white);
  background: var(--teal);
  border-radius: 10px 0 0 0;
}

.product-showcase__label strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.product-showcase__label span {
  display: block;
  margin-top: 12px;
  font-size: var(--fs-small);
  font-weight: 800;
}

.product-showcase__card {
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(6, 51, 51, 0.08);
}

.quote-mark {
  height: 60px;
  color: var(--teal);
  font-size: var(--fs-quote);
  line-height: 0.8;
  font-weight: 800;
}

.product-showcase__card h2 {
  max-width: 600px;
  font-size: var(--fs-heading);
}

.product-showcase__card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: var(--fs-subheading);
  line-height: 1.2;
}

.product-showcase__card p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: var(--fs-paragraph);
}

.product-showcase__points {
  margin: 26px 0 28px;
  padding: 24px 0 0;
  display: grid;
  gap: 12px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: var(--fs-small);
  line-height: 1.5;
  list-style: none;
}

.product-showcase__points li {
  position: relative;
  padding-left: 24px;
}

.product-showcase__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.product-showcase .button {
  align-self: flex-start;
  min-height: 50px;
  padding-inline: 24px;
}

.product-showcase__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button--outline {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
}

.contact-section {
  position: relative;
  isolation: isolate;
  width: calc(100% - (var(--section-gutter) * 2));
  max-width: var(--section-width);
  margin: 84px auto 0;
  padding: clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  color: var(--ink);
  background: transparent;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  background: var(--panel);
  transform: translateX(-50%);
}

.contact-section h2 {
  font-size: var(--fs-heading);
}

.contact-section p {
  max-width: 520px;
  color: var(--muted);
}

.contact-section__details {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-section__details a,
.contact-section__details span {
  color: var(--ink);
  font-size: var(--fs-body);
  font-weight: 800;
}

.contact-form {
  position: relative;
  padding: clamp(22px, 4vw, 38px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #f7fbfb;
  font-size: var(--fs-body);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__phone {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
  gap: 10px;
}

.country-select {
  position: relative;
  display: block;
  min-width: 0;
}

.country-select__button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #f7fbfb;
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.country-select__button:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 174, 234, 0.15);
  outline: none;
}

.country-select__selected {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-select__flag {
  margin-right: 7px;
}

.country-select__chevron {
  flex: 0 0 auto;
  color: var(--muted);
}

.country-select__panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 5px);
  left: 0;
  width: min(452px, calc(100vw - 34px));
  max-height: 272px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.country-select__search {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.country-select__search input {
  width: 100%;
  border: 0;
  padding: 4px 0;
  background: transparent;
  box-shadow: none;
  font-family: inherit;
  font-size: var(--fs-small);
  font-weight: 400;
}

.country-select__search input:focus {
  border-color: transparent;
  box-shadow: none;
}

.country-select__list {
  display: grid;
  max-height: 218px;
  overflow-y: auto;
  padding: 4px;
}

.country-select__option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  border: 0;
  border-radius: 4px;
  padding: 6px 8px;
  color: var(--ink);
  background: transparent;
  font-family: inherit;
  font-size: var(--fs-small);
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.contact-form .country-select__option {
  min-height: 32px;
}

.country-select__option:hover,
.country-select__option.is-active {
  background: #f0f0f0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 174, 234, 0.15);
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form button {
  min-height: 54px;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-form__status.is-success {
  color: #087f5b;
}

.contact-form__status.is-error {
  color: #b42318;
}

.services {
  position: relative;
  width: calc(100% - (var(--section-gutter) * 2));
  margin: 80px auto;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
}

.why-section .section-heading {
  max-width: 760px;
}

.gallery__controls {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.gallery__arrow {
  display: none;
}

.gallery__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: auto;
  cursor: grab;
}

.gallery__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__track img {
  width: clamp(260px, 30vw, 520px);
  height: 280px;
  border-radius: 8px;
  flex: 0 0 auto;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 32px;
  display: grid;
  place-items: center;
  background: rgba(7, 31, 32, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: min(1100px, 88vw);
  max-height: 82vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  cursor: pointer;
}

.gallery-lightbox__close::before,
.gallery-lightbox__close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 23px;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.gallery-lightbox__close::before {
  transform: rotate(45deg);
}

.gallery-lightbox__close::after {
  transform: rotate(-45deg);
}

.footer {
  position: relative;
  width: calc(100% - (var(--section-gutter) * 2));
  margin: 84px auto 0;
  padding: 76px 24px 64px;
  overflow: hidden;
  color: var(--white);
  background: #120a3a;
  border-radius: 12px 12px 0 0;
}

.footer__grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 64px;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-body);
  line-height: 1.55;
}

.brand--footer {
  filter: none;
}

.footer h3 {
  margin-top: 0;
  color: var(--white);
  font-size: var(--fs-body);
  line-height: 1.2;
}

.footer .brand {
  width: clamp(180px, 16vw, 260px);
  height: 52px;
}

@media (max-width: 1180px) {
  :root {
    --fs-heading: clamp(32px, 6vw, 56px);
    --fs-display: clamp(42px, 7vw, 64px);
  }

  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav__toggle {
    display: block;
  }

  .nav__menu,
  .nav__actions {
    display: none;
  }

  .nav.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(238, 245, 244, 0.36);
    backdrop-filter: blur(8px);
  }

  .nav.is-open .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    width: min(82vw, 380px);
    padding: 34px 28px;
    display: block;
    overflow-y: auto;
    color: var(--ink);
    background: #ffffff;
    box-shadow: -24px 0 70px rgba(6, 51, 51, 0.32);
    border-radius: 12px;
  }

  .nav.is-open .nav__menu a {
    width: 100%;
    padding: 17px 0;
    border-top: 1px solid rgba(7, 31, 32, 0.1);
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    font-weight: 800;
  }


  .nav.is-open .nav__actions {
    display: none;
  }

  .nav.is-open .nav__drawer-head {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

.brand--drawer {
    width: min(100%, 230px);
    height: 44px;
    filter: none;
  }

  .nav__drawer-close {
    width: 34px;
    height: 34px;
    border: 0;
    position: relative;
    background: transparent;
    cursor: pointer;
  }

  .nav__drawer-close::before,
  .nav__drawer-close::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 16px;
    width: 28px;
    height: 2px;
    background: var(--teal-dark);
  }

  .nav__drawer-close::before {
    transform: rotate(45deg);
  }

  .nav__drawer-close::after {
    transform: rotate(-45deg);
  }

  .nav.is-open .nav__drawer-contact {
    margin-top: 34px;
    display: block;
  }

  .nav__drawer-contact h3 {
    margin: 0 0 22px;
    color: var(--ink);
    font-size: var(--fs-body);
  }

  .nav__drawer-contact p {
    margin: 18px 0 4px;
    color: var(--muted);
    font-size: var(--fs-paragraph);
  }

  .nav.is-open .nav__drawer-contact a {
    padding: 0;
    border-top: 0;
    color: var(--teal-dark);
    font-size: var(--fs-small);
    font-weight: 700;
  }

  .topline {
    font-size: var(--fs-small);
  }

  .section-grid,
  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: var(--fs-display);
  }

  .feature__media {
    justify-self: center;
    width: min(100%, 680px);
    max-width: 680px;
  }

  .feature > * {
    max-width: 760px;
  }

  .feature__copy {
    justify-self: center;
    width: min(100%, 760px);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-showcase,
  .product-showcase--reverse,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-showcase__image {
    min-height: clamp(340px, 54vw, 520px);
  }

  .contact-section__copy,
  .contact-form {
    width: min(100%, 760px);
    justify-self: center;
  }

  .product-showcase--reverse .product-showcase__card {
    order: 2;
  }

  .product-showcase--reverse .product-showcase__image {
    order: 1;
  }

  .intro__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro {
    padding-left: 42px;
    padding-right: 42px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  :root {
    --section-gutter: 16px;
    --fs-body: 16px;
    --fs-paragraph: 16px;
    --fs-heading: clamp(30px, 9vw, 42px);
    --fs-display: clamp(38px, 11vw, 54px);
    --fs-subheading: clamp(19px, 6vw, 24px);
    --fs-quote: 72px;
  }

  body {
    padding-top: 0;
  }

  html {
    scroll-padding-top: 20px;
  }

  [id] {
    scroll-margin-top: 20px;
  }

  .topline {
    height: auto;
    max-height: 108px;
    min-height: 0;
    padding: 18px 14px 14px;
    display: grid;
    justify-items: center;
    gap: 16px;
    border-radius: 0 0 10px 10px;
    text-align: center;
    font-size: var(--fs-body);
  }

  .site-header {
    position: relative;
    padding: 0 var(--section-gutter);
  }

  .topline__promo {
    justify-content: center;
    font-size: var(--fs-small);
    flex-wrap: wrap;
  }

  .topline__promo span {
    white-space: nowrap;
  }

  .promo-slider {
    width: 150px;
  }

  .topline__links {
    width: 100%;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .topline__item {
    display: flex;
    padding: 0;
    border-left: 0;
  }

  .topline__item span {
    width: 18px;
    height: 18px;
  }

  .nav {
    min-height: 82px;
    margin-top: 20px;
    padding: 0 12px;
    border-radius: 10px 10px 0 0;
    background: rgba(220, 235, 234, 0.82);
    align-items: center;
  }

  .brand {
    width: min(54vw, 210px);
    height: 44px;
  }

  .nav__toggle {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 8px;
    background: var(--teal);
  }

  .nav__toggle span {
    width: 28px;
    height: 2px;
    margin: 7px auto;
    background: var(--white);
  }

  .nav__cta {
    min-height: 48px;
    font-size: var(--fs-small);
  }

  .site-header.is-scrolled .topline {
    height: auto;
    max-height: 108px;
    padding-top: 18px;
    padding-bottom: 14px;
    opacity: 1;
    transform: none;
  }

  .site-header.is-scrolled .nav {
    min-height: 82px;
    margin-top: 20px;
    background: rgba(220, 235, 234, 0.82);
    border-radius: 10px 10px 0 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .section-grid,
  .feature {
    width: calc(100% - (var(--section-gutter) * 2));
    padding-left: 0;
    padding-right: 0;
    gap: 28px;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: var(--fs-display);
  }

  .hero__visual {
    min-height: clamp(260px, 72vw, 360px);
    border-radius: 0 0 64px 0;
  }

  .hero__actions {
    align-items: flex-start;
    gap: 14px;
  }

  .hero__button {
    min-height: 52px;
    padding-left: 22px;
  }

  .phone {
    min-height: 44px;
  }

  .logo-strip,
  .services,
  .footer {
    width: calc(100% - (var(--section-gutter) * 2));
  }

  .logo-strip {
    margin-bottom: 52px;
    height: 166px;
    padding: 24px 12px;
  }

  .logo-card {
    width: 230px;
    height: 118px;
  }

  .intro__cards,
  .feature__mini,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .why-section {
    width: calc(100% - (var(--section-gutter) * 2));
    padding: 58px 0;
  }

  .why-grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .intro {
    width: calc(100% - (var(--section-gutter) * 2));
    padding-top: 52px;
    padding-bottom: 58px;
    padding-left: 0;
    padding-right: 0;
  }

  .intro__cards {
    gap: 16px;
  }

  .intro__cards article {
    min-height: auto;
    padding: 34px 24px 28px;
  }

  .expertise-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 26px;
  }

  .expertise-icon svg {
    width: 76px;
    height: 76px;
  }

  .feature {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .feature__media {
    width: 100%;
  }

  .feature__media img {
    height: clamp(320px, 92vw, 480px);
  }

  .progress-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .services {
    margin: 58px auto;
    padding: 0;
  }

  .product-showcase {
    width: calc(100% - (var(--section-gutter) * 2));
    margin-top: 22px;
    padding: 12px;
    border-radius: 12px;
  }

  .product-showcase__image,
  .product-showcase__card {
    min-height: auto;
  }

  .product-showcase__image {
    height: clamp(260px, 78vw, 360px);
  }

  .product-showcase__label {
    width: min(82%, 260px);
    padding: 18px;
  }

  .product-showcase__card {
    padding: 28px 20px;
  }

  .quote-mark {
    height: 40px;
    font-size: var(--fs-quote);
  }

  .contact-section {
    width: calc(100% - (var(--section-gutter) * 2));
    margin-top: 54px;
    padding: 42px 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-form__phone {
    grid-template-columns: 1fr;
  }

  .country-select__panel {
    width: 100%;
  }

  .gallery__controls {
    grid-template-columns: 1fr;
  }

  .gallery__track {
    gap: 8px;
  }

  .gallery__track img {
    width: 230px;
    height: 180px;
  }

  .footer {
    padding-top: 44px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 420px) {
  :root {
    --section-gutter: 12px;
    --fs-display: clamp(34px, 12vw, 46px);
    --fs-heading: clamp(28px, 10vw, 38px);
    --fs-quote: 58px;
  }

  .topline {
    padding-left: 10px;
    padding-right: 10px;
  }

  .topline__links {
    display: none;
  }

  .nav {
    margin-top: 12px;
  }

  .nav.is-open .nav__menu {
    width: min(88vw, 340px);
    padding: 28px 22px;
  }

  .brand--drawer {
    width: min(68vw, 220px);
    height: 38px;
  }

  .hero h1,
  h2 {
    overflow-wrap: anywhere;
  }

  .hero__button {
    width: 100%;
    justify-content: space-between;
  }

  .hero__whatsapp {
    width: 100%;
  }

  .hero__stat {
    left: 12px;
    bottom: 12px;
    width: 92px;
    padding: 12px;
  }

  .vertical-text {
    right: 8px;
    top: 18px;
  }

  .logo-strip {
    height: 136px;
    padding: 18px 10px;
  }

  .logo-card {
    width: 190px;
    height: 96px;
  }

  .product-showcase__label {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }

  .product-showcase__label strong {
    font-size: clamp(24px, 8vw, 34px);
  }

  .product-showcase .button,
  .contact-form button {
    width: 100%;
  }

  .contact-section__details a,
  .contact-section__details span {
    overflow-wrap: anywhere;
  }

  .footer__grid {
    gap: 28px;
  }
}

a{
  text-decoration:none;
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 120px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  border: 0;
  background-color: var(--teal);
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 var(--teal);
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}

.contact_icon:hover,
.contact_icon:focus-visible {
  background-color: var(--teal-dark);
  outline: 3px solid rgba(8, 174, 234, 0.28);
  outline-offset: 4px;
}

.whatsapp_menu {
  position: absolute;
  z-index: 1001;
  right: 0;
  bottom: 60px;
  width: max-content;
  min-width: 178px;
  display: grid;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(8, 174, 234, 0.32);
  border-radius: 8px;
  background: var(--teal);
  box-shadow: 0 14px 36px rgba(7, 31, 32, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.floating_btn:hover .whatsapp_menu,
.floating_btn.is-open .whatsapp_menu,
.floating_btn:focus-within .whatsapp_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__whatsapp:hover .whatsapp_menu,
.hero__whatsapp.is-open .whatsapp_menu,
.hero__whatsapp:focus-within .whatsapp_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp_menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.14);
  transition: background 160ms ease, color 160ms ease;
}

.whatsapp_menu a::before {
  content: "\f232";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-family: "FontAwesome";
  font-weight: normal;
}

.whatsapp_menu a:hover,
.whatsapp_menu a:focus-visible {
  background: var(--teal-dark);
  color: var(--white);
  outline: none;
}

.whatsapp_menu a:hover::before,
.whatsapp_menu a:focus-visible::before {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

@media (max-width: 700px) {
  .floating_btn {
    bottom: 22px;
    right: 18px;
  }
}
