:root {
  --blue-900: #063765;
  --blue-800: #07508f;
  --blue-600: #0573bb;
  --teal-500: #28bfd0;
  --teal-100: #dff8f9;
  --yellow-500: #ffc41b;
  --yellow-100: #fff4c8;
  --green-400: #8ed45a;
  --ink: #12243a;
  --muted: #5a6b7f;
  --paper: #fbfdff;
  --line: #dbe7ef;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(6, 55, 101, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 70px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-900);
  box-shadow: 0 12px 34px rgba(6, 55, 101, 0.11);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(160px, 19vw, 250px);
  text-decoration: none;
}

.brand img {
  width: 100%;
  filter:
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.68))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled .main-nav a,
.site-header.is-open .main-nav a {
  text-shadow: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible,
.site-header.is-open .main-nav a:hover,
.site-header.is-open .main-nav a:focus-visible,
.site-header.is-scrolled .main-nav a.is-active,
.site-header.is-open .main-nav a.is-active {
  background: var(--teal-100);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.page-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  padding: 150px clamp(18px, 6vw, 86px) clamp(72px, 9vw, 116px);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 38, 72, 0.9), rgba(5, 38, 72, 0.58) 48%, rgba(5, 38, 72, 0.18)),
    linear-gradient(0deg, rgba(6, 55, 101, 0.32), rgba(6, 55, 101, 0.12));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 20vh;
  background: linear-gradient(180deg, rgba(251, 253, 255, 0), var(--paper) 88%);
}

.page-hero-content {
  width: min(790px, 100%);
}

.page-hero h1 {
  margin: 0;
  max-width: 850px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 26vh;
  z-index: -1;
  background: linear-gradient(180deg, rgba(251, 253, 255, 0), var(--paper) 78%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 38, 72, 0.86) 0%, rgba(5, 38, 72, 0.66) 34%, rgba(5, 38, 72, 0.12) 72%),
    linear-gradient(0deg, rgba(6, 55, 101, 0.26), rgba(6, 55, 101, 0.04));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.55rem, 5.8vw, 4.9rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 1.8vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--yellow-500);
  color: #19263b;
  box-shadow: 0 14px 28px rgba(255, 196, 27, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button-whatsapp {
  background: #24d366;
  color: #07351a;
  box-shadow: 0 14px 28px rgba(36, 211, 102, 0.22);
}

.button-instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 46%, #6228d7);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(238, 42, 123, 0.2);
}

.whatsapp-icon,
.instagram-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.whatsapp-icon {
  fill: currentColor;
}

.instagram-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.cta .button-secondary,
.activity-cta .button-secondary {
  border-color: rgba(5, 115, 187, 0.28);
  color: var(--blue-900);
}

.quick-facts {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -54px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.fact {
  min-height: 126px;
  padding: 24px;
  background: var(--white);
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-900);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.15;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 0;
}

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

.section-heading.compact {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.section h2,
.cta h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
}

.section h3 {
  margin: 16px 0 8px;
  color: var(--blue-900);
  font-size: 1.24rem;
  line-height: 1.15;
}

.section p,
.cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro {
  padding-top: clamp(60px, 8vw, 96px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.split p:first-child {
  margin-top: 0;
}

.experience {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(135deg, rgba(40, 191, 208, 0.13), rgba(255, 196, 27, 0.13)),
    var(--white);
}

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

.experience-grid article,
.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.experience-grid article {
  min-height: 250px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(6, 55, 101, 0.08);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-900);
  color: var(--yellow-500);
  font-weight: 900;
  font-size: 1.2rem;
}

.audience {
  padding-bottom: clamp(64px, 8vw, 108px);
}

.festival-promise {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding-bottom: clamp(64px, 8vw, 104px);
}

.promise-copy p:last-child {
  max-width: 720px;
}

.promise-stats {
  display: grid;
  gap: 12px;
}

.promise-stats div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 55, 101, 0.08);
}

.promise-stats strong {
  display: block;
  color: var(--blue-900);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.promise-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.audience-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius);
  background: var(--blue-900);
  box-shadow: var(--shadow);
}

.audience-panel h2,
.audience-panel p {
  color: var(--white);
}

.audience-panel p {
  color: rgba(255, 255, 255, 0.82);
}

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

.audience-list li {
  padding: 14px 16px;
  border-left: 5px solid var(--yellow-500);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  font-weight: 800;
}

.support {
  padding-top: 0;
}

.categories {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(135deg, rgba(40, 191, 208, 0.13), rgba(255, 196, 27, 0.11)),
    var(--white);
}

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

.category-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 55, 101, 0.08);
}

.category-grid span {
  display: inline-flex;
  min-width: 42px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yellow-100);
  color: var(--blue-900);
  font-weight: 900;
}

.category-grid h3 {
  margin-top: 18px;
}

.category-grid p {
  margin-bottom: 0;
}

.support-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.support-strip span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-800);
  font-weight: 800;
}

.faq {
  padding-bottom: 0;
}

.registration {
  padding-bottom: clamp(54px, 7vw, 86px);
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.registration-grid article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.registration-grid h3 {
  margin-top: 0;
}

.registration-grid p {
  flex: 1;
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 55, 101, 0.07);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--blue-900);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--blue-900);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.activity-overview {
  padding-top: clamp(66px, 8vw, 100px);
}

.activity-detail {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(135deg, rgba(40, 191, 208, 0.11), rgba(255, 196, 27, 0.14)),
    var(--white);
}

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

.activity-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 55, 101, 0.08);
}

.activity-number {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-900);
  color: var(--yellow-500);
  font-size: 0.92rem;
  font-weight: 900;
}

.activity-list h3 {
  margin-top: 4px;
}

.activity-list p {
  margin-bottom: 0;
}

.activity-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1160px, calc(100% - 36px));
  margin: clamp(70px, 9vw, 112px) auto;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(5, 115, 187, 0.09), rgba(255, 196, 27, 0.17)),
    var(--white);
  box-shadow: var(--shadow);
}

.activity-cta h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.activity-cta p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.05rem;
}

.sponsorship {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background: #eef8fb;
}

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

.plan {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(6, 55, 101, 0.08);
}

.plan.featured {
  border-color: rgba(255, 196, 27, 0.68);
  background: linear-gradient(180deg, #ffffff, #fff8dc);
}

.plan-top p,
.slots {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.plan h3 {
  margin: 8px 0 0;
  font-size: 1.48rem;
}

.price {
  margin: 20px 0 6px;
  color: var(--blue-900);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
}

.plan ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.plan li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1160px, calc(100% - 36px));
  margin: clamp(70px, 9vw, 112px) auto;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(5, 115, 187, 0.09), rgba(255, 196, 27, 0.17)),
    var(--white);
  box-shadow: var(--shadow);
}

.cta p {
  max-width: 640px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-mail {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--blue-900);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  background: #24d366;
  color: #07351a;
  box-shadow: 0 16px 34px rgba(6, 55, 101, 0.24);
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.footer-content {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.footer-content a {
  color: var(--blue-800);
  font-weight: 900;
  text-decoration: none;
}

.footer-content a:hover,
.footer-content a:focus-visible {
  color: var(--blue-900);
  outline: none;
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    width: 168px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 18px;
    display: grid;
    width: min(300px, calc(100vw - 36px));
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--blue-900);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    justify-content: flex-start;
    border-radius: var(--radius);
    text-shadow: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 38, 72, 0.9), rgba(5, 38, 72, 0.64)),
      linear-gradient(0deg, rgba(6, 55, 101, 0.3), rgba(6, 55, 101, 0.08));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-inline: auto;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .audience-panel,
  .festival-promise,
  .cta,
  .activity-cta {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .page-hero {
    min-height: 72vh;
    padding-top: 130px;
  }

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

@media (max-width: 680px) {
  .hero {
    min-height: 94vh;
    align-items: flex-end;
    padding-bottom: 86px;
  }

  h1 {
    font-size: clamp(2.4rem, 15vw, 4.1rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }

  .fact {
    min-height: auto;
  }

  .experience-grid,
  .plans,
  .category-grid,
  .registration-grid {
    grid-template-columns: 1fr;
  }

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

  .plan {
    min-height: auto;
  }

  .audience-panel,
  .cta,
  .activity-cta {
    padding: 26px;
  }

  .faq-list summary {
    align-items: flex-start;
    min-height: auto;
    padding: 17px 18px;
  }

  .faq-list details p {
    padding-inline: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-content {
    justify-items: start;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    min-height: 56px;
    padding: 0;
    font-size: 0.9rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float::before {
    content: none;
  }

  .whatsapp-float .whatsapp-icon {
    width: 27px;
    height: 27px;
  }
}
