:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-soft: #eef3ee;
  --ink: #07131d;
  --ink-soft: #263340;
  --muted: #667381;
  --line: #dfe6df;
  --green: #118746;
  --green-dark: #063f25;
  --green-soft: #e2f5e9;
  --lime: #9ee61c;
  --yellow: #f0c736;
  --danger: #ed2d2d;
  --shadow: 0 18px 48px rgba(7, 19, 29, 0.12);
  --shadow-soft: 0 10px 26px rgba(7, 19, 29, 0.08);
  --max-width: 1230px;
  --radius: 8px;
  --headline: "Arial Black", "Impact", "Segoe UI Black", sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
video,
iframe,
svg {
  display: block;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 19, 29, 0.08);
  box-shadow: 0 6px 24px rgba(7, 19, 29, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  flex: 0 0 auto;
  width: clamp(7.8rem, 11vw, 9.7rem);
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.45rem, 1.3vw, 1.15rem);
  color: #1d2832;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 0.45rem 0.25rem;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  bottom: 0.08rem;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #334151;
  font-weight: 700;
  white-space: nowrap;
}

.phone-link svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-transform: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta {
  padding: 0.85rem 1.25rem;
  background: var(--green);
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(17, 135, 70, 0.22);
}

.button {
  min-width: 11.5rem;
  padding: 0.95rem 1.35rem;
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(17, 135, 70, 0.24);
}

.button-secondary {
  border: 1px solid rgba(7, 19, 29, 0.18);
  background: #fff;
  color: var(--ink);
}

.button.compact {
  width: fit-content;
  min-width: 0;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:focus-visible,
.button:focus-visible,
.main-nav a:focus-visible,
.phone-link:focus-visible,
.service-body a:focus-visible,
.footer-links a:focus-visible,
.floating-whatsapp:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(158, 230, 28, 0.42);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-anchor {
  scroll-margin-top: 96px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(17, 135, 70, 0.1), transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(240, 199, 54, 0.22), transparent 20rem),
    #f7f9f5;
}

.hero::before {
  content: "AUTO VIDROS";
  position: absolute;
  right: -5vw;
  top: 3.5rem;
  color: rgba(7, 19, 29, 0.035);
  font-family: var(--headline);
  font-size: clamp(5rem, 15vw, 15rem);
  line-height: 0.85;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.76fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.4rem, 5vw, 5rem) 0;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
  background: var(--lime);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--headline);
  color: var(--ink);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  margin-top: 1rem;
  max-width: 13ch;
  font-size: clamp(2.45rem, 5.3vw, 5.25rem);
}

.hero p,
.section-heading p,
.about-copy p,
.advantage-card p,
.service-body p,
.info-card p,
.footer-brand p,
.footer-bottom span,
.check-list,
.media-card figcaption {
  color: var(--muted);
  line-height: 1.62;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.hero p {
  max-width: 42rem;
  margin: 1.15rem 0 0;
  color: #334151;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-media {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 7% -7% -5% 10%;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--lime));
  opacity: 0.9;
  filter: blur(0.2px);
}

.hero-media img {
  width: 100%;
  max-height: 660px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  max-width: 16rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(7, 19, 29, 0.92);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge span {
  margin-top: 0.35rem;
  color: #dbe5de;
  line-height: 1.45;
  font-size: 0.9rem;
}

.stats-band {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #000;
  padding: clamp(2rem, 5vw, 4.2rem) max(1rem, calc((100vw - var(--max-width)) / 2));
}

.stats-band article {
  min-height: 8.5rem;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 1.35rem;
  text-align: center;
  background: #000;
}

.stats-band strong {
  display: block;
  color: var(--lime);
  font-family: var(--headline);
  font-size: clamp(2.1rem, 3.4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.stats-band span {
  display: block;
  max-width: 17rem;
  margin-top: 0.55rem;
  color: #b8c6d0;
  line-height: 1.45;
  font-size: 1rem;
}

.about-section,
.services-section,
.advantages-section,
.media-section,
.contact-section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.experience-seal {
  position: absolute;
  right: -1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: 7px solid var(--bg);
  text-align: center;
  font-family: var(--headline);
  font-size: 0.95rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 16ch;
  margin-top: 1rem;
  font-size: clamp(2rem, 3.8vw, 3.65rem);
}

.about-copy p {
  max-width: 44rem;
  margin: 1.3rem 0 0;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.45rem 0 1.8rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: #263340;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: radial-gradient(circle, var(--lime) 0 35%, transparent 37%);
}

.services-section,
.advantages-section,
.media-section,
.contact-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.8rem;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3.4rem);
}

.section-heading h2 {
  font-size: clamp(2rem, 3.65vw, 3.55rem);
}

.section-heading p {
  max-width: 45rem;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(7, 19, 29, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.service-card:nth-child(2) img,
.service-card:nth-child(4) img {
  object-position: center top;
}

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

.service-card-wide img {
  aspect-ratio: 4 / 5;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.service-body h3,
.advantage-card h3,
.info-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--headline);
  line-height: 1.05;
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
}

.service-body p {
  margin: 0.7rem 0 1rem;
}

.service-body a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
}

.service-body a::after {
  content: "->";
  transition: transform 180ms ease;
}

.service-body a:hover::after {
  transform: translateX(4px);
}

.advantages-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(rgba(7, 19, 29, 0.88), rgba(7, 19, 29, 0.88)),
    url("./assets/img/auto-vidros-avaliacao-servico.png") center / cover;
  color: #fff;
}

.advantages-section .section-heading {
  width: min(calc(100% - 2rem), var(--max-width));
}

.advantages-section .section-heading h2,
.advantages-section .section-tag {
  color: #fff;
}

.advantages-section .section-heading p {
  color: #d5ded8;
}

.advantages-section .section-tag::before {
  box-shadow: inset 0 0 0 3px var(--green-dark);
}

.advantages-layout {
  width: min(calc(100% - 2rem), var(--max-width));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
}

.advantage-card {
  min-height: 17rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.advantage-card span {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-dark);
  font-family: var(--headline);
  font-weight: 900;
}

.advantage-card h3 {
  margin-top: 1.2rem;
  color: #fff;
}

.advantage-card p {
  margin: 0.75rem 0 0;
  color: #dce5df;
}

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

.media-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(7, 19, 29, 0.08);
}

.media-card img,
.media-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #101820;
}

.video-card video {
  object-fit: contain;
}

.media-card figcaption {
  min-height: 3.3rem;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.9rem;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-section {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.35fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.3rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(7, 19, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.info-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
}

.info-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card p {
  margin: 0.35rem 0 0;
}

.info-card a {
  color: var(--green);
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  height: 240px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  border: 1px solid rgba(7, 19, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(7, 19, 29, 0.08);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 0.48rem;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid #d9e0dc;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(17, 135, 70, 0.12);
}

.form-button {
  width: 100%;
  margin-top: 0.4rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 24rem);
  gap: 1rem;
  align-items: center;
}

.footer-brand img {
  width: 8rem;
}

.footer-brand p {
  margin: 0;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 900;
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-family: var(--headline);
  color: var(--ink);
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #20ce62;
  color: #fff;
  box-shadow:
    0 0 0 16px rgba(32, 206, 98, 0.14),
    0 18px 38px rgba(7, 19, 29, 0.22);
}

.floating-whatsapp svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

html.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  html.has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .header-actions .phone-link {
    display: none;
  }

  .services-grid,
  .advantages-layout,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 88px;
    display: grid;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav a {
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: var(--green-soft);
  }

  .main-nav a::after {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .hero-inner,
  .about-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-media {
    width: min(100%, 380px);
  }

  .about-media {
    max-width: 460px;
    margin: 0 auto;
  }

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .hero-inner,
  .about-section,
  .services-section,
  .media-section,
  .contact-section,
  .site-footer {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .brand {
    width: 8.7rem;
  }

  .header-actions {
    display: none;
  }

  .hero::before {
    top: 2rem;
    right: -8rem;
  }

  .hero-inner {
    padding: 2rem 0 3rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 0.8rem;
  }

  .hero-media::before {
    inset: 8% -2% 4% 8%;
  }

  .stats-band {
    grid-template-columns: 1fr;
    padding: 2rem 0.6rem;
  }

  .stats-band article {
    min-height: 7rem;
  }

  .about-section,
  .services-section,
  .advantages-section,
  .media-section,
  .contact-section {
    padding: 3.4rem 0;
  }

  .experience-seal {
    right: 0.5rem;
    bottom: 0.5rem;
    width: 6.5rem;
    height: 6.5rem;
    font-size: 0.8rem;
  }

  .about-copy h2,
  .section-heading h2 {
    font-size: clamp(1.95rem, 8.8vw, 2.75rem);
  }

  .services-grid,
  .advantages-layout,
  .media-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card-wide img,
  .service-card img {
    aspect-ratio: 4 / 3;
  }

  .advantage-card {
    min-height: auto;
  }

  .contact-form,
  .info-card {
    padding: 1rem;
  }

  .info-card {
    align-items: start;
  }

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

  .floating-whatsapp {
    width: 3.55rem;
    height: 3.55rem;
  }
}
