:root {
  --bg: #f7f6fb;
  --surface: #ffffff;
  --surface-soft: #f1eff8;
  --ink: #15131b;
  --muted: #6d6878;
  --line: rgba(28, 22, 38, 0.12);
  --accent: #6f47d8;
  --accent-dark: #4d2ea8;
  --accent-soft: #ece6ff;
  --warm: #f6b73c;
  --success: #2c9c78;
  --shadow: 0 24px 70px rgba(38, 26, 71, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section--tight {
  padding: 76px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(111, 71, 216, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(111, 71, 216, 0.1);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading__copy {
  max-width: 760px;
}

.section-heading h2,
.hero h1,
.cta-panel h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

.section-heading h2 {
  margin-top: 15px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.section-heading p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
}

.top-strip {
  position: relative;
  z-index: 50;
  padding: 10px 20px;
  color: #fff;
  background: #17131f;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.top-strip strong {
  color: #d8c9ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgba(247, 246, 251, 0.82);
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(30, 22, 54, 0.06);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 168px;
}

.brand img {
  width: 158px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.inline-brand-logo {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 0.28em;
}

.inline-brand-logo img {
  width: 108px;
  height: 30px;
  object-fit: contain;
  object-position: center;
}

.footer-copyright {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-copyright .inline-brand-logo {
  margin: 0 4px;
}

.footer-copyright .inline-brand-logo img {
  width: 92px;
  height: 26px;
}


.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: #3b3741;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 30px rgba(111, 71, 216, 0.24);
}

.btn--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.btn--dark {
  color: #fff;
  background: #17131f;
}

.btn__icon {
  font-size: 18px;
  line-height: 1;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  place-items: center;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: 0.25s ease;
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }

.mobile-toggle.active span { background: transparent; }
.mobile-toggle.active span::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.active span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 84px 0 88px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -170px;
  top: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 71, 216, 0.24), rgba(111, 71, 216, 0));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: -180px;
  bottom: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 183, 60, 0.18), rgba(246, 183, 60, 0));
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 74px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 22px;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.98;
  font-weight: 800;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}

.hero-meta__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4f4a57;
  font-size: 14px;
  font-weight: 600;
}

.hero-meta__item span:first-child {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: #18141f;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10, 8, 14, 0.66), rgba(10, 8, 14, 0.04) 55%);
}

.hero-card--main {
  width: 72%;
  height: 505px;
  right: 0;
  top: 24px;
  transform: rotate(2.2deg);
}

.hero-card--small {
  width: 49%;
  height: 282px;
  left: 0;
  bottom: 0;
  transform: rotate(-5deg);
  z-index: 2;
  border: 8px solid var(--bg);
}

.hero-card__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}

.hero-card__label small {
  display: block;
  opacity: 0.78;
  margin-bottom: 3px;
}

.play-chip {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
}


.trust-row {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  overflow-x: auto;
  scrollbar-width: none;
}

.trust-row::-webkit-scrollbar {
  display: none;
}

.trust-row__inner {
  display: flex;
  align-items: stretch;
  min-width: max-content;
}

.trust-stat {
  flex: 1 0 280px;
  min-width: 280px;
  padding: 26px 30px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.trust-stat span {
  color: var(--muted);
  font-size: 13px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.video-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #18141f;
  box-shadow: 0 18px 54px rgba(23, 19, 31, 0.08);
}

.video-card video {
  width: 100%;
  height: 390px;
  object-fit: cover;
  background: linear-gradient(135deg, #201a2d, #6f47d8);
}
.video-card--contain {
  background: #111;
}

.video-card--contain video {
  object-fit: contain !important;
  object-position: center center;
  background: #111;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10, 8, 14, 0.78), rgba(10, 8, 14, 0.06) 64%);
}

.video-card__content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  color: #fff;
}

.video-card__content small {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  opacity: 0.72;
}

.video-card__content h3 {
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  line-height: 1.1;
}

.video-play {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.video-play:hover {
  transform: scale(1.07);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 120px;
}

.about-sticky h2 {
  margin: 16px 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.about-sticky p {
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  transition: 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 71, 216, 0.22);
  box-shadow: 0 16px 40px rgba(38, 26, 71, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 20px;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

.ideal-section {
  background: #17131f;
  color: #fff;
}

.ideal-section .section-heading p {
  color: rgba(255,255,255,0.58);
}

.ideal-section .eyebrow {
  color: #ded3ff;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ideal-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.22s ease;
}

.ideal-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.075);
}

.ideal-card__number {
  color: #bda9ff;
  font-size: 13px;
  font-weight: 800;
}

.ideal-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.25;
}

.process-wrap {
  position: relative;
}

.process-line {
  position: absolute;
  left: 25px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(var(--accent), rgba(111, 71, 216, 0.08));
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 180px 1fr;
  align-items: center;
  gap: 26px;
  padding: 23px 26px 23px 0;
}

.process-number {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  border: 6px solid var(--bg);
  font-weight: 800;
}

.process-item h3 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

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

.deliverables-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.deliverable-panel {
  border-radius: var(--radius-xl);
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
}

.deliverable-panel--accent {
  color: #fff;
  background: linear-gradient(145deg, #6f47d8, #3b2288);
  border: 0;
}

.deliverable-panel h3 {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.check-list {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-weight: 900;
  font-size: 13px;
}

.deliverable-panel--accent .check-mark {
  color: #fff;
  background: rgba(255,255,255,0.16);
}

.format-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.format-chip {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  font-weight: 700;
  font-size: 13px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.faq-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--surface-soft);
  transition: 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  max-width: 850px;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.cta-section {
  padding: 30px 0 100px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: 38px;
  color: #fff;
  background: #17131f;
  isolation: isolate;
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -80px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,71,216,0.8), rgba(111,71,216,0));
  z-index: -1;
}

.cta-panel h2 {
  max-width: 760px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
}

.cta-panel p {
  max-width: 650px;
  margin: 20px 0 30px;
  color: rgba(255,255,255,0.66);
  font-size: 17px;
}

.cta-panel .btn--primary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 44px;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1040px) {
  .nav-links,
  .nav-actions .btn--secondary {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .nav-links.mobile-open {
    position: fixed;
    inset: 79px 20px auto 20px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.mobile-open a {
    padding: 13px 12px;
    border-radius: 12px;
  }

  .nav-links.mobile-open a:hover {
    background: var(--surface-soft);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-visual {
    width: min(720px, 100%);
    min-height: 550px;
    margin-inline: auto;
  }

  .hero-card--main {
    width: 68%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-sticky {
    position: static;
  }

  .ideal-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100% - 28px, 1180px);
    --radius-xl: 26px;
  }

  .section,
  .section--tight {
    padding: 74px 0;
  }

  .top-strip {
    font-size: 11px;
  }

  .nav {
    min-height: 70px;
  }

  .brand img {
    width: 138px;
  }

  .nav-actions .btn--primary {
    display: none;
  }

  .nav-links.mobile-open {
    inset: 71px 14px auto 14px;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 68px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 70px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-card--main {
    width: 76%;
    height: 390px;
  }

  .hero-card--small {
    width: 52%;
    height: 215px;
    border-width: 5px;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading p {
    margin-top: 15px;
  }

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

  .video-card,
  .video-card video {
    min-height: 320px;
    height: 320px;
  }

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

  .process-line {
    left: 21px;
  }

  .process-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
  }

  .process-number {
    width: 44px;
    height: 44px;
  }

  .process-item p {
    grid-column: 2;
    margin-top: -8px;
  }

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

  .deliverable-panel {
    padding: 30px;
  }

  .cta-panel {
    padding: 46px 28px;
    border-radius: 28px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 12px;
  }

  .hero-meta__item {
    width: 100%;
  }

  .hero-visual {
    min-height: 370px;
  }

  .hero-card--main {
    width: 82%;
    height: 330px;
  }

  .hero-card--small {
    width: 58%;
    height: 180px;
  }

  .trust-stat {
    flex-basis: 245px;
    min-width: 245px;
    padding: 20px 18px;
  }

  .trust-stat strong {
    font-size: 20px;
  }

  .ideal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ideal-card {
    min-height: 180px;
  }

  .video-card__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .video-card__content h3 {
    font-size: 20px;
  }

  .video-play {
    width: 46px;
    height: 46px;
  }

  .feature-card {
    grid-template-columns: 44px 1fr;
    padding: 20px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;

  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;

  border-radius: 50%;
  overflow: hidden;

  color: #fff;
  background: #25d366;

  box-shadow: 0 10px 28px rgba(20, 126, 61, 0.28);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 34px rgba(20, 126, 61, 0.36);
}

@media (max-width: 700px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;

    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}