:root {
  --ink: #151515;
  --muted: #66665f;
  --paper: #f7f4ee;
  --white: #fffdf8;
  --graphite: #22201d;
  --brass: #b08a3c;
  --champagne: #ded2bd;
  --teal: #0f766d;
  --clay: #9e4d39;
  --line: rgba(21, 21, 21, 0.12);
  --shadow: 0 24px 70px rgba(20, 18, 14, 0.16);
  --deep-shadow: 0 32px 90px rgba(10, 8, 6, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.78), rgba(247, 244, 238, 1) 420px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(176, 138, 60, 0.11) 28%, transparent 42%),
    linear-gradient(65deg, transparent 0 38%, rgba(15, 118, 109, 0.08) 50%, transparent 64%);
  background-size: 180% 180%, 220% 220%;
  animation: ambient-shift 18s ease-in-out infinite alternate;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.solid {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 38px rgba(18, 16, 12, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 144px;
  height: auto;
}

.site-header.scrolled .brand,
.site-header.solid .brand {
  border-radius: 8px;
  padding: 6px 10px;
  background: var(--graphite);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.nav-cta {
  color: var(--ink);
  background: var(--white);
}

.site-header.scrolled .nav-cta,
.site-header.solid .nav-cta {
  color: var(--white);
  background: var(--graphite);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 30;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 18px 8px 9px;
  color: #ffffff;
  background: linear-gradient(135deg, #1fae63, #0f766d);
  box-shadow: 0 18px 46px rgba(15, 118, 109, 0.34);
  font-weight: 900;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 118, 109, 0.42);
}

.whatsapp-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 150px clamp(18px, 6vw, 78px) 42px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.91), rgba(12, 11, 9, 0.56) 42%, rgba(12, 11, 9, 0.22)),
    linear-gradient(0deg, rgba(8, 7, 6, 0.72), rgba(8, 7, 6, 0.05) 42%),
    url("assets/media/9b66c7cd-ab03-4b6c-b156-980f1f714beb-9b66c7cd-ab03-4b6c-b156-980f1f714beb.png") center / cover;
  transform: scale(1.01);
  animation: hero-drift 22s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 10%, rgba(255, 253, 248, 0.08) 48%, transparent 72%);
  transform: translateX(-70%);
  animation: hero-light-pass 9s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(100%, 780px);
  max-width: 780px;
  padding-bottom: 52px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8.6vw, 8rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
}

.hero-actions,
.contact-links,
.feature-row,
.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #0f766d, #0b5f58);
  box-shadow: 0 14px 34px rgba(15, 118, 109, 0.26);
}

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

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

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1020px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: var(--deep-shadow);
}

.hero-proof span {
  min-height: 92px;
  padding: 20px 22px;
  background: rgba(255, 253, 248, 0.92);
}

.hero-proof strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

section {
  padding: clamp(64px, 8vw, 118px) clamp(18px, 6vw, 78px);
}

.intro-band,
.partners,
.faq {
  background: var(--white);
}

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

.section-heading.centered {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 90px);
  max-width: 1120px;
  color: var(--muted);
  font-size: 1.08rem;
}

.process {
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0), rgba(222, 210, 189, 0.38)),
    var(--paper);
}

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

.process-grid article {
  min-height: 330px;
  border: 1px solid rgba(176, 138, 60, 0.22);
  border-radius: 8px;
  padding: clamp(24px, 3.5vw, 38px);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 50px rgba(30, 26, 20, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 138, 60, 0.44);
  box-shadow: 0 28px 70px rgba(30, 26, 20, 0.13);
}

.process-grid span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 1px solid rgba(176, 138, 60, 0.42);
  border-radius: 50%;
  color: var(--brass);
  font-weight: 900;
  animation: quiet-pulse 2.8s ease-in-out infinite;
}

.process-grid p {
  color: var(--muted);
}

.audience {
  display: grid;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(176, 138, 60, 0.14), rgba(15, 118, 109, 0.08)),
    var(--graphite);
  color: var(--white);
}

.audience-tabs {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 4px;
}

.tab {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab {
  color: var(--white);
  background: transparent;
}

.tab.active {
  color: var(--ink);
  background: var(--white);
}

.audience-panel {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.audience-panel.active {
  display: grid;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  backdrop-filter: blur(12px);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 25px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brass);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  background: var(--white);
}

.video-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--deep-shadow);
  background: var(--ink);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.experience-copy p,
.story-card p,
.showcase-copy p,
.contact p {
  color: var(--muted);
}

.mini-stats span,
.feature-row span,
.contact-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.62);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(235, 229, 217, 0.92), rgba(247, 244, 238, 1));
}

.story-card {
  min-height: 340px;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(25, 21, 15, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(25, 21, 15, 0.13);
}

.story-card:not(.image-card)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent, rgba(176, 138, 60, 0.11), transparent);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.story-card:not(.image-card):hover::before {
  transform: translateX(120%);
}

.story-card.wide {
  grid-column: span 2;
  padding: 0;
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.image-card:hover img {
  transform: scale(1.035);
}

.story-card.brass {
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(176, 138, 60, 0.2), rgba(15, 118, 109, 0.06)),
    #713d31;
}

.story-card.brass p {
  color: rgba(255, 253, 248, 0.82);
}

.impact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 17, 15, 0.92), rgba(18, 17, 15, 0.66)),
    url("assets/media/a8354304-1857-4946-843a-afe5e17a3832-a8354304-1857-4946-843a-afe5e17a3832.png") center / cover;
}

.impact-panel h2 {
  max-width: 860px;
}

.impact-list {
  display: grid;
  gap: 16px;
}

.impact-list p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px;
  color: rgba(255, 253, 248, 0.82);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.venue-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  background: var(--white);
}

.showcase-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.devices {
  background:
    linear-gradient(135deg, rgba(15, 118, 109, 0.13), rgba(176, 138, 60, 0.09)),
    var(--graphite);
  color: var(--white);
}

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

.device {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.device:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 138, 60, 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.device img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.device:hover img {
  transform: scale(1.035);
}

.device h3 {
  margin: 18px 0 8px;
}

.device p {
  color: rgba(255, 253, 248, 0.72);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.logo-wall img {
  width: 100%;
  height: 98px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(222, 210, 189, 0.86), rgba(247, 244, 238, 1));
}

.testimonials article {
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonials article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(25, 21, 15, 0.11);
}

.testimonials p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.testimonials span {
  color: var(--muted);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.08rem;
}

.faq p {
  max-width: 760px;
  color: var(--muted);
}

.contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 20, 18, 0.94), rgba(20, 20, 18, 0.74)),
    url("assets/media/abede5cf-5990-46cb-804b-5f92baebb2ed-abede5cf-5990-46cb-804b-5f92baebb2ed.png") center / cover;
}

.contact p {
  color: rgba(255, 253, 248, 0.78);
}

.contact-links a {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form {
  display: grid;
  gap: 14px;
  border-radius: 8px;
  padding: clamp(18px, 3vw, 30px);
  color: var(--ink);
  background: var(--white);
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 6vw, 78px);
  color: rgba(255, 253, 248, 0.72);
  background: #11100e;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambient-shift {
  from {
    background-position: 0% 15%, 100% 70%;
  }
  to {
    background-position: 100% 55%, 0% 35%;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes hero-light-pass {
  0%,
  55% {
    transform: translateX(-78%);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(78%);
    opacity: 0;
  }
}

@keyframes quiet-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(176, 138, 60, 0.22);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(176, 138, 60, 0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open,
  .site-nav.always-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav.always-open {
    position: static;
    flex-direction: row;
    box-shadow: none;
    background: transparent;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-proof,
  .split-copy,
  .process-grid,
  .audience-panel.active,
  .experience,
  .venue-showcase,
  .impact-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .device-grid,
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .brand img {
    width: 118px;
  }

  .site-header.scrolled .brand,
  .site-header.solid .brand {
    padding: 5px 8px;
  }

  .nav-toggle {
    display: inline-grid !important;
    position: fixed;
    top: 14px;
    right: clamp(14px, calc(100vw - 372px), 110px);
    z-index: 90;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
  }

  .nav-toggle span {
    margin: 0;
  }

  .site-header.scrolled .nav-toggle {
    background: rgba(34, 32, 29, 0.08);
    border-color: rgba(34, 32, 29, 0.35);
  }

  .site-nav {
    top: 66px;
    left: 14px;
    right: 14px;
    gap: 8px;
    padding: 12px;
  }

  .site-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 12px;
    background: rgba(21, 21, 21, 0.04);
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding: 112px 18px 28px;
  }

  .hero-bg {
    background-position: 54% center;
  }

  h1 {
    font-size: clamp(2.18rem, 11vw, 3rem);
    line-height: 1;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    padding-bottom: 22px;
  }

  .eyebrow {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 0.95rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: 100%;
    max-width: 352px;
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-proof,
  .story-grid,
  .device-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    width: 100%;
  }

  .hero-proof span {
    min-height: 72px;
    padding: 16px 18px;
  }

  section {
    padding: 58px 18px;
  }

  .process-grid article,
  .story-card,
  .testimonials article {
    min-height: auto;
  }

  .device {
    padding: 12px;
  }

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

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

  .site-nav.always-open {
    gap: 12px;
    font-size: 0.84rem;
  }

  .whatsapp-float {
    display: inline-grid !important;
    place-items: center;
    position: fixed;
    right: clamp(14px, calc(100vw - 372px), 110px);
    bottom: 14px;
    z-index: 90;
    min-height: 52px;
    width: 52px;
    padding: 7px;
    border-radius: 50%;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28), 0 10px 26px rgba(15, 118, 109, 0.44);
  }

  .whatsapp-float > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .whatsapp-icon {
    width: 38px;
    height: 38px;
  }
}
