.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 30;
  padding: 0.9rem 0;
  background: rgba(8, 8, 8, 0.94);
  border-top: 1px solid var(--color-border);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.75rem;
}

.site-header__brand {
  display: block;
  min-width: 0;
  padding-right: 3.5rem;
}

.site-header__brand img {
  width: 235px;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .site-header__brand img {
  width: 140px;
}

.site-nav {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  padding-left: 1.25rem;
}

.site-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.72rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  white-space: nowrap;
  color: var(--color-text);
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  background: rgba(46, 204, 113, 0.1);
  color: var(--color-primary);
}

.language-switcher {
  position: relative;
  flex-shrink: 0;
}

.language-switcher summary,
.mobile-language-switcher summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  list-style: none;
  border: 0;
  background: transparent;
}

.language-switcher summary::-webkit-details-marker,
.mobile-language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher__caret {
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.language-switcher__list,
.mobile-language-switcher__list {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  display: grid;
  gap: 0.35rem;
  padding: 0.45rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.language-switcher__list a,
.mobile-language-switcher__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.15rem;
  border-radius: 999px;
}

.language-switcher__list a:hover,
.language-switcher__list a:focus-visible,
.mobile-language-switcher__list a:hover,
.mobile-language-switcher__list a:focus-visible {
  background: rgba(46, 204, 113, 0.15);
}

.site-nav__item {
  position: relative;
}

.site-nav__item--has-submenu > a::after {
  content: "\25BE";
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.72em;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.site-subnav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-subnav a {
  display: block;
  padding: 0.7rem 0.85rem;
  color: var(--color-primary-dark);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.site-subnav a:hover,
.site-subnav a:focus-visible {
  background: var(--color-primary);
  color: var(--color-text);
}

.site-nav__item--has-submenu:hover .site-subnav,
.site-nav__item--has-submenu:focus-within .site-subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__item--has-submenu:hover > a::after,
.site-nav__item--has-submenu:focus-within > a::after {
  transform: rotate(180deg);
}

.language-switcher img {
  width: 22px;
  height: 22px;
  border-radius: 0;
}

.language-switcher[open] summary,
.mobile-language-switcher[open] summary {
  border-color: transparent;
  background: transparent;
}

.hero-section {
  position: relative;
  min-height: min(100vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section__media,
.hero-section__overlay {
  position: absolute;
  inset: 0;
}

.hero-section__media {
  background: url("../img/hero/home-hero-slide-1.webp") no-repeat;
  background-position: 50% top;
  background-size: cover;
  transform: scale(1.08);
  overflow: hidden;
}

.hero-section__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.34);
}

.hero-section__overlay {
  background: var(--color-overlay);
}

.hero-section__content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding: 9.5rem 0 8.5rem;
}

.hero-title {
  max-width: 12ch;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.eyebrow__icon {
  margin-right: 0.375rem;
}

.hero-divider {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.hero-divider::before {
  content: "";
  width: 12px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.hero-divider::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.hero-section__text {
  max-width: 62ch;
  font-weight: 300;
  line-height: 1.7;
  color: #dcdcdc;
  margin-bottom: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-section__video {
    display: none;
  }
}

.section-copy p,
.cta-panel > p {
  max-width: 62ch;
}

.section--about,
.section--faq {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}

.section--about {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section--features {
  background: var(--color-surface-strong);
  padding-block: 5.5rem;
}

.section--faq,
.section--contact {
  padding-block: 5.5rem;
}

.section-grid--features {
  align-items: center;
  gap: 4rem;
}

.section-copy h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 3.6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}

.text-primary {
  color: var(--color-primary);
}

.section-divider {
  display: flex;
  gap: 0.4rem;
  margin: -0.25rem 0 1.5rem;
}

.section-divider::before,
.section-divider::after {
  content: "";
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.section-divider::before {
  width: 12px;
}

.section-divider::after {
  width: 32px;
}

.section-divider--center {
  justify-content: center;
}

.section-copy p + p {
  margin-top: 1rem;
}

.contact-link {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
  padding: 0.35rem 0;
  color: var(--color-text);
  line-height: 1.4;
  transition: color 0.25s ease, transform 0.25s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.contact-link strong {
  color: var(--color-primary);
  font-weight: 600;
}

.media-stack {
  position: relative;
  min-height: 540px;
}

.media-stack img,
.faq-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.media-stack__main {
  width: 100%;
  height: 420px;
}

.media-stack__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(52%, 280px);
  height: 220px;
  border: 6px solid var(--color-surface);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

.section-tag--icon {
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.features-divider-row {
  display: flex;
  gap: 6px;
  margin: 0 0 1.25rem;
  animation: divider-glow 2.8s ease-in-out infinite;
  transform-origin: left center;
}

.divider-bar {
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.divider-bar--short {
  width: 12px;
}

.divider-bar--long {
  width: 32px;
}

.section-intro {
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.feature-card {
  position: relative;
  background: #0d0d0e;
  border-radius: 8px;
  padding: 1.65rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 108px;
  border: 1px solid rgba(46, 204, 113, 0.12);
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  animation: card-breathe 5.8s ease-in-out infinite;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 30px;
  width: 30px;
  height: 8px;
  background-color: #1a422a;
  border-radius: 4px;
  z-index: 1;
  transition: all 0.4s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0%, rgba(46, 204, 113, 0.1) 48%, transparent 100%);
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(46, 204, 113, 0.32);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34);
}

.feature-card:hover::after,
.feature-card:focus-within::after,
.feature-card.is-active::after {
  opacity: 1;
}

.feature-card.is-active::before {
  background-color: var(--color-primary);
  width: 50px;
  height: 10px;
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.4);
}

.feature-indicator {
  position: absolute;
  left: -24px;
  top: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(180deg, var(--color-primary), rgba(46, 204, 113, 0.6));
  border-radius: 4px;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}

.feature-indicator.is-visible {
  opacity: 1;
}

.feature-card__number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(46, 204, 113, 0.35);
  border-radius: 8px;
  color: rgba(46, 204, 113, 0.5);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  background: rgba(46, 204, 113, 0.06);
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.08);
}

.feature-card.is-active .feature-card__number {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.5), 0 0 40px rgba(46, 204, 113, 0.15);
  transform: scale(1.05);
}

.feature-card__title {
  color: #555555;
  font-weight: 500;
  font-size: 1.15rem;
  transition: color 0.3s ease;
  margin: 0;
}

.feature-card.is-active .feature-card__title {
  color: #ffffff;
}

.feature-card:nth-child(2) {
  animation-delay: 0.18s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.36s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.54s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.72s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.9s;
}

.features-title {
  max-width: 14ch;
}

.button--ghost-muted {
  border-color: #245e3a;
  color: #ffffff;
}

.button--ghost-muted:hover {
  border-color: var(--color-primary);
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0;
}

.faq-item {
  list-style: none;
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #080808;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.faq-item:hover,
.faq-item:focus-within,
.faq-item.is-open {
  border-color: rgba(46, 204, 113, 0.28);
  background: #0a0a0a;
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
}

.faq-item__icon {
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.28s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__content {
  height: auto;
  overflow: hidden;
}

.faq-item__content p {
  padding: 0.85rem 0 0;
  color: var(--color-text-muted);
}

.faq-media {
  position: relative;
  display: flex;
  align-items: stretch;
}

.faq-media::before {
  content: "";
  position: absolute;
  inset: 1.5rem -1rem -1.5rem 3rem;
  border-radius: calc(var(--radius-lg) + 8px);
  background: radial-gradient(circle at top right, rgba(54, 203, 114, 0.26), transparent 55%), linear-gradient(180deg, rgba(54, 203, 114, 0.12), rgba(4, 10, 8, 0.04));
  filter: blur(2px);
  z-index: 0;
}

.faq-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 560px;
  aspect-ratio: 4 / 5;
  object-position: 58% center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.section--cta {
  padding: 0;
  background: #36cb72;
  position: relative;
  overflow: hidden;
}

.cta-panel {
  position: relative;
  padding: 5rem 1.5rem 4.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  isolation: isolate;
}

.cta-panel__circles {
  position: absolute;
  width: 40em;
  height: 40em;
  top: -50px;
  right: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-panel__circles > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 50%;
  left: 50%;
}

.cta-panel__circles .circle {
  position: absolute;
  border-radius: 50%;
  transform-origin: center;
  animation: breathe 3s ease-in-out infinite;
}

.cta-panel__circles .shade1 {
  background: rgba(5, 28, 0, 0.2);
}

.cta-panel__circles .shade2 {
  background: rgba(5, 28, 0, 0.3);
}

.cta-panel__circles .shade3 {
  background: rgba(5, 28, 0, 0.4);
}

.cta-panel__circles .shade4 {
  background: rgba(5, 28, 0, 0.5);
}

.cta-panel__circles .shade5 {
  background: rgba(5, 28, 0, 0.6);
}

.cta-panel__circles .xxlarge {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.cta-panel__circles .xlarge {
  width: 90%;
  height: 90%;
  animation-delay: 1s;
}

.cta-panel__circles .large {
  width: 80%;
  height: 80%;
  animation-delay: 2s;
}

.cta-panel__circles .mediun {
  width: 70%;
  height: 70%;
  animation-delay: 3s;
}

.cta-panel__circles .small {
  width: 60%;
  height: 60%;
  animation-delay: 4s;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes pulsarBranco {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, #ffffff 70%, transparent); }
  50% { box-shadow: 0 0 0 20px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.cta-panel__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  animation: pulsarBranco 2s ease-in-out infinite;
}

.cta-panel__title {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  margin-bottom: 2rem;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.cta-panel__title-dark {
  color: #004A1F;
}

.cta-panel__text {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.cta-panel__actions {
  position: relative;
  z-index: 1;
}

.cta-panel__button {
  min-width: 142px;
  border: 2px solid #ffffff;
  background: #ffffff;
  color: #29b663;
  box-shadow: 0 14px 28px rgba(9, 79, 34, 0.12);
  transition: all 0.3s ease;
}

.cta-panel__button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1c8d4a;
  box-shadow: 0 18px 34px rgba(9, 79, 34, 0.18);
}

.cta-panel__button-ghost {
  min-width: 204px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
}

.cta-panel__button-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 34px rgba(9, 79, 34, 0.14);
}

.section--contact {
  background: var(--color-surface);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-form:hover,
.contact-form:focus-within {
  transform: translateY(-6px);
  border-color: rgba(46, 204, 113, 0.3);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--color-text);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.newsletter__form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
}

@keyframes divider-glow {
  0%,
  100% {
    opacity: 0.8;
    transform: scaleX(1);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.08);
  }
}

@keyframes card-breathe {
  0%,
  100% {
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
  }

  50% {
    box-shadow: 0 24px 38px rgba(0, 0, 0, 0.3);
  }
}

.newsletter {
  padding: 2rem 0;
  background: var(--color-surface-strong);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.newsletter__form {
  display: flex;
  gap: 0.8rem;
  flex: 0 1 460px;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 40;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu__panel {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem;
  background: #ffffff;
  color: var(--color-primary-dark);
}

.mobile-menu__top {
  display: none; /* Hide the top bar since it's now a dropdown */
}

.mobile-menu__close {
  display: none;
}

.mobile-language-switcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: fit-content;
}

.mobile-language-switcher__list {
  left: 0;
  right: auto;
}

.mobile-language-switcher img {
  width: 24px;
  height: 24px;
  border-radius: 0;
}

.mobile-menu__list,
.mobile-menu__sublist {
  display: grid;
  gap: 0.6rem;
}

.mobile-menu__list a,
.mobile-menu__list summary {
  display: block;
  padding: 0.8rem 0;
  border-bottom: none;
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.mobile-menu__list details summary {
  cursor: pointer;
  list-style: none;
}

.mobile-menu__list details summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__list details summary::after {
  content: " \25BC";
  font-size: 0.75em;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.mobile-menu__sublist {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.mobile-menu__sublist a {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer {
  background: var(--color-surface-strong);
}

.site-footer a {
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-primary);
}

.site-footer__brand,
.site-footer__contact,
.site-footer__contact-col {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.site-footer__logo img {
  width: 158px;
}

.site-footer__description {
  max-width: 28rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.8rem;
  color: var(--color-text-muted);
}

.site-footer__contact,
.site-footer__contact-col {
  gap: 1.1rem;
}

.site-footer__cta {
  justify-self: start;
}

.site-footer__address {
  font-style: normal;
}

.footer-contact li,
.site-footer__legal a,
.site-footer__bar p {
  font-size: 0.95rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.5rem;
}

.site-footer__bar {
  border-top: 1px solid var(--color-border);
}

.site-footer__bar-inner {
  min-height: 88px;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 6rem;
  z-index: 25;
  border-radius: 50%;
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(46, 204, 113, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.whatsapp-float img {
  width: 72px;
  height: 72px;
  display: block;
}

body.menu-open {
  overflow: hidden;
}
