:root {
  --green: #778827;
  --green-dark: #5e6b20;
  --green-deep: #384017;
  --sage: #eef2df;
  --paper: #fbf7ef;
  --sand: #f3eadc;
  --white: #ffffff;
  --espresso: #2c261f;
  --clay: #a8662c;
  --muted: #71685f;
  --line: rgba(44, 38, 31, 0.14);
  --shadow: 0 22px 60px rgba(44, 38, 31, 0.11);
  --black: #141414;
  --header: rgba(8, 8, 8, 0.9);
}

@font-face {
  font-family: "Hero";
  src: url("assets/HeroLight-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hero";
  src: url("assets/HeroLight-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hero";
  src: url("assets/HeroLight-Bold.ttf") format("truetype");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--espresso);
  background: #ffffff;
  font-family: "Hero", "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

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

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

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

p {
  margin-bottom: 12px;
}

.container {
  width: min(1276px, calc(100vw - 10%));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 100px;
  padding: 20px 5%;
  background: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-lockup {
  /* O arquivo do logo e verde. As outras quatro paginas o deixam branco com
     este filtro; sem ele a NBR precisava de um logo separado, que era o unico
     do site sem a pinha. */
  filter: brightness(0) invert(1);
  width: 164px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  opacity: 0.96;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  color: #d7e0ac;
  opacity: 1;
}

.main-nav a.active {
  color: #d7e0ac;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 3px;
  background: #ffffff;
}

.nav-button {
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-weight: 600;
  opacity: 1 !important;
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 5% 0;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 7, 7, 0.78) 0%, rgba(7, 7, 7, 0.56) 48%, rgba(7, 7, 7, 0.36) 100%),
    radial-gradient(circle at 20% 20%, rgba(119, 136, 39, 0.22), transparent 32%),
    url("assets/mcmv.jpg"),
    linear-gradient(135deg, #303427, #141414 68%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 0;
}

.hero-grid,
.argument-grid,
.segments-grid,
.hygge-grid,
.faq-grid,
.cta-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 98px);
  align-items: start;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: center;
  min-height: 620px;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.benefits-grid span,
.tags span,
.text-link {
  display: block;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-section .eyebrow,
.hero-section h1,
.hero-section .hero-lead {
  color: #ffffff;
}

h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(31px, 2.5vw, 38px);
  font-weight: 300;
  line-height: 1.08;
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--espresso);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.12;
}

h3 {
  margin-bottom: 11px;
  color: var(--espresso);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
}

.hero-lead {
  max-width: 740px;
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.62;
}

.hero-footnote {
  margin: 16px 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1060px;
  margin: 0 0 30px;
  color: #ffffff;
}

.hero-metrics article {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-metrics article + article {
  padding-left: 20px;
}

.hero-metrics article:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.hero-metrics span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.22;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 15px 25px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: #f1f1f1;
  transform: translateY(-1px);
}

.button.light {
  background: var(--white);
  color: var(--green-dark);
}

.button.green {
  background: var(--green);
  color: #ffffff;
}

.button.green:hover {
  background: var(--green-dark);
}

.section-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.hero-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: end;
  width: min(100%, 360px);
  gap: 14px;
}

.hero-panel {
  display: grid;
  gap: 0;
  align-content: center;
  align-items: center;
  justify-items: center;
  width: 100%;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-brand {
  width: min(300px, 100%);
}

.hero-seal {
  width: min(180px, 100%);
  opacity: 0.88;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.26));
}

section {
  padding: 5% 0;
}

.client-strip {
  padding: 42px 0 46px;
  background: #ffffff;
  color: #767676;
}

.client-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px clamp(34px, 6vw, 80px);
}

.client-eyebrow {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(92px, 1fr));
  align-items: center;
  gap: 14px clamp(12px, 2vw, 24px);
}

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(44, 38, 31, 0.08);
  background: rgba(238, 242, 223, 0.52);
  color: #9b9b9b;
  filter: grayscale(1);
  opacity: 0.72;
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  transition: color 180ms ease, border-color 180ms ease, filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.client-logo:hover {
  border-color: rgba(119, 136, 39, 0.35);
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.client-logo--mrv:hover {
  color: #6f7065;
}

.client-logo--valor:hover {
  color: #9a5b2b;
}

.client-logo--direcional:hover {
  color: #2f6687;
}

.client-logo--lyx:hover {
  color: #6a5d91;
}

.client-logo--village:hover {
  color: #6f6a54;
}

.client-logo--rottas:hover {
  color: #4f6f2b;
}

.argument-section {
  background: #ffffff;
}

.argument-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  align-items: center;
}

.argument-copy > p,
.proof-copy > p,
.segments-grid p,
.hygge-grid p,
.decision-grid p,
.cta-grid p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}

.square-list {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 1.02rem;
  list-style: none;
}

.square-list li {
  position: relative;
  padding-left: 30px;
}

.square-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background: var(--green);
}

.proof-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: transparent;
  box-shadow: none;
}

.proof-visual svg,
.proof-visual img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.proof-visual figcaption {
  margin-top: 10px;
  padding: 0;
  background: transparent;
  color: var(--espresso);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: clamp(34px, 5vw, 62px);
}

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

.benefits-grid article {
  min-height: 184px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  background: #f7f7f7;
  box-shadow: var(--shadow);
}

.benefits-grid span {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.11em;
}

.benefits-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.24;
}

.benefits-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.hygge-section,
.segments-section {
  background: #ececec;
}

.platform-section {
  background: #ffffff;
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.platform-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 22px;
}

.platform-metrics article {
  min-height: 120px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: #f7f7f7;
  box-shadow: var(--shadow);
}

.platform-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.platform-metrics span {
  color: var(--muted);
}

.platform-shot {
  margin: 0;
  overflow: hidden;
  background: #f2efe4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.platform-shot img {
  width: 100%;
  height: auto;
}

.platform-shot figcaption {
  padding: 14px 16px;
  color: var(--espresso);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hygge-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  align-items: center;
}

.hygge-image {
  margin: 0;
  overflow: hidden;
  background: #dcdcdc;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hygge-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hygge-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 25px;
}

.hygge-stats article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hygge-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.hygge-stats span {
  color: var(--muted);
}

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

.tags span {
  min-height: 96px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 16px 18px;
  border: 1px solid rgba(119, 136, 39, 0.28);
  border-radius: 24px;
  background: #eef2df;
  color: var(--green-dark);
  line-height: 1.35;
  box-shadow: var(--shadow);
}

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

.phase-card {
  min-height: 168px;
  padding: 20px;
  border: 1px solid rgba(119, 136, 39, 0.24);
  border-radius: 24px;
  background: #f8fbef;
  box-shadow: var(--shadow);
}

.phase-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #778827;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.phase-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.phase-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pbqph-mark {
  width: min(260px, 75%);
  max-height: 96px;
  margin-top: 18px;
  margin-inline: auto;
  object-fit: contain;
}

.faq-section,
.cta-section {
  background: #ffffff;
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(19, 19, 19, 0.78), rgba(19, 19, 19, 0.58)),
    radial-gradient(circle at 8% 22%, rgba(119, 136, 39, 0.28), transparent 42%),
    url("assets/mcmv.jpg");
  background-size: cover;
  background-position: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(24, 24, 24, 0.28), rgba(24, 24, 24, 0.08));
}

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

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f8f8f8;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

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

.cta-grid {
  align-items: center;
  grid-template-columns: 1fr;
  justify-items: center;
}

.proposal-form {
  width: min(560px, 100%);
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.proposal-form h2 {
  margin-bottom: 4px;
  color: #ffffff;
}

.proposal-form label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.proposal-form input[type="text"],
.proposal-form input[type="email"],
.proposal-form input[type="tel"] {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: #1b1b1b;
  font-family: inherit;
  font-size: 16px;
}

.proposal-form input::placeholder {
  color: #7f7f7f;
}

.proposal-form input:focus {
  outline: 2px solid rgba(215, 224, 172, 0.6);
  outline-offset: 1px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.form-check span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.35;
}

.proposal-form .button {
  width: 100%;
  margin-top: 6px;
}

.site-footer {
  padding: 60px 5% 32px;
  color: #ffffff;
  background: #111111;
}

.footer-grid {
  grid-template-columns: minmax(220px, 0.7fr) minmax(220px, 0.5fr) minmax(260px, 0.8fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.footer-brand img {
  width: min(240px, 100%);
}

.footer-column h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 24px;
}

.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  flex: 0 0 auto;
}

.footer-contact a,
.footer-copy p,
.legal-note {
  color: rgba(255, 255, 255, 0.74);
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy p,
.legal-note {
  margin: 0;
  font-size: 14px;
}

.legal-note {
  margin-top: 14px;
}

@media (max-width: 980px) {
  .site-header {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 24px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .main-nav a.active::after {
    bottom: -12px;
  }

  .hero-grid,
  .argument-grid,
  .segments-grid,
  .hygge-grid,
  .faq-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    width: 100%;
  }

  .benefits-grid,
  .platform-metrics,
  .tags,
  .phase-grid,
  .hygge-stats {
    grid-template-columns: 1fr 1fr;
  }

  .platform-grid,
  .hygge-grid {
    grid-template-columns: 1fr;
  }

  .client-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .client-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(1276px, calc(100vw - 8%));
  }

  .site-header {
    min-height: auto;
    padding: 18px 4% 20px;
  }

  .brand-lockup {
    width: 138px;
  }

  .main-nav {
    font-size: 13px;
    gap: 10px 14px;
  }

  .nav-button,
  .button {
    width: 100%;
  }

  .hero-section {
    min-height: auto;
    background-attachment: scroll;
  }

  .hero-grid {
    gap: 28px;
    min-height: auto;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 25px;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero-metrics,
  .benefits-grid,
  .platform-metrics,
  .tags,
  .phase-grid,
  .hygge-stats {
    grid-template-columns: 1fr;
  }

  .benefits-grid article {
    min-height: auto;
    padding: 18px;
  }

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

  .proposal-form {
    border-radius: 20px;
    padding: 18px;
  }

  .hero-metrics article {
    min-height: auto;
    padding: 16px 0 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .hero-metrics article + article {
    padding-left: 0;
  }

  .hero-metrics article:last-child {
    border-bottom: 0;
  }

  .argument-copy > p,
  .proof-copy > p,
  .segments-grid p,
  .hygge-grid p,
  .decision-grid p,
  .cta-grid p {
    font-size: 16px;
  }

  .site-footer {
    padding-inline: 4%;
  }
}

/* ---------- Retorno do envio do formulario ----------
   O formulario agora envia para o Elementor por fetch, entao precisa de um
   lugar para dizer ao visitante o que aconteceu. Fica sobre o painel escuro. */

.proposal-form .form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.proposal-form .form-status.is-ok {
  color: #d7e0ac;
}

.proposal-form .form-status.is-erro {
  color: #ffb9a6;
}

.proposal-form .form-submit[disabled] {
  opacity: 0.65;
  cursor: progress;
  transform: none;
}

.proposal-form .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.proposal-form .form-check input {
  flex: none;
  width: 17px;
  height: 17px;
  min-height: 0;
  accent-color: var(--green);
  cursor: pointer;
}


/* ---------- Botao de WhatsApp ----------
   A home tem este botao pelo widget de botao flutuante do Elementor, que nao
   alcanca pagina estatica. Aqui ele e recriado, com o mesmo numero. */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }
  .whatsapp-float:hover {
    transform: none;
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}
