:root {
  --green-950: #063f33;
  --green-900: #07533f;
  --green-800: #0a6f55;
  --green-700: #0f8b68;
  --green-600: #19a67a;
  --green-200: #c7eadc;
  --green-100: #e6f6f0;
  --green-50: #f4fbf8;
  --slate-900: #253942;
  --slate-700: #4f656e;
  --slate-500: #758a91;
  --slate-200: #dce7e9;
  --white: #ffffff;
  --page: #f8fbfa;
  --shadow-small: 0 14px 38px rgba(14, 70, 56, 0.10);
  --shadow-large: 0 30px 90px rgba(7, 83, 63, 0.18);
  --radius-small: 16px;
  --radius-medium: 25px;
  --radius-large: 38px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 3000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 10px;
}

.skip-link:focus {
  top: 20px;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(20, 66, 55, 0.09);
}

.header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 60px;
  height: 60px;
  padding: 2px;
  object-fit: contain;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(7, 83, 63, 0.15);
}

.brand span {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  color: var(--green-950);
  font-size: 17px;
}

.brand small {
  margin-top: 4px;
  color: var(--slate-700);
  font-size: 12px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navigation > a:not(.navigation__whatsapp) {
  position: relative;
  color: var(--slate-900);
  font-size: 14px;
  font-weight: 700;
}

.navigation > a:not(.navigation__whatsapp)::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-700);
  border-radius: 999px;
  transition: width 0.2s ease;
}

.navigation > a:hover::after,
.navigation > a:focus-visible::after {
  width: 100%;
}

.navigation__whatsapp {
  padding: 11px 18px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(10, 111, 85, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.navigation__whatsapp:hover {
  transform: translateY(-2px);
  background: var(--green-900);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-small);
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--green-950);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(25, 166, 122, 0.13), transparent 28%),
    radial-gradient(circle at 92% 24%, rgba(79, 101, 110, 0.12), transparent 30%),
    linear-gradient(135deg, #f8fdfb 0%, #ecf8f3 58%, #f7fbfc 100%);
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__shape--one {
  top: 100px;
  left: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(15, 139, 104, 0.16);
}

.hero__shape--two {
  right: -170px;
  bottom: 20px;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(15, 139, 104, 0.11);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.hero__content {
  max-width: 670px;
}

.eyebrow {
  margin: 0;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 14px 0 20px;
  color: var(--green-950);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(50px, 7vw, 88px);
}

.hero__summary {
  max-width: 620px;
  margin: 0;
  color: var(--slate-700);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button--primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 16px 40px rgba(10, 111, 85, 0.25);
}

.button--primary:hover {
  transform: translateY(-3px);
  background: var(--green-900);
  box-shadow: 0 20px 45px rgba(10, 111, 85, 0.29);
}

.button--secondary {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(10, 111, 85, 0.18);
}

.button--secondary:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(79, 101, 110, 0.18);
}

.hero__facts > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(20, 72, 59, 0.10);
}

.fact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero__facts > div > span:last-child {
  display: grid;
  line-height: 1.25;
}

.hero__facts small {
  color: var(--slate-500);
  font-size: 12px;
}

.hero__facts strong {
  margin-top: 4px;
  color: var(--green-950);
  font-size: 15px;
}

.hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.logo-card {
  position: relative;
  z-index: 3;
  width: min(100%, 450px);
  aspect-ratio: 1;
  padding: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 10px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: var(--shadow-large);
}

.logo-card__ring {
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(10, 111, 85, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.floating-label {
  position: absolute;
  z-index: 4;
  padding: 12px 18px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 111, 85, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-small);
  font-size: 14px;
  font-weight: 800;
}

.floating-label--top {
  top: 80px;
  right: -14px;
}

.floating-label--bottom {
  bottom: 80px;
  left: -18px;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section--light {
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section h2,
.contact h2 {
  font-size: clamp(38px, 5vw, 62px);
}

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

.service-card {
  position: relative;
  min-height: 300px;
  padding: 38px;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(10, 111, 85, 0.12);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.service-card--body {
  background: linear-gradient(135deg, #f2fbf7, #e2f4ec);
}

.service-card--mind {
  background: linear-gradient(135deg, #f7fafb, #e8f0f2);
}

.service-card__icon {
  position: relative;
  z-index: 2;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(18, 70, 57, 0.12);
}

.service-card__icon svg {
  width: 61px;
  height: 61px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card > div:last-child {
  position: relative;
  z-index: 2;
}

.service-card__number {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin: 7px 0 10px;
  color: var(--green-950);
  font-size: 30px;
  line-height: 1.15;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--slate-700);
}

.service-card a,
.inline-link {
  color: var(--green-800);
  font-weight: 800;
}

.service-card a:hover,
.inline-link:hover {
  color: var(--green-950);
}

.section--body {
  background:
    radial-gradient(circle at 90% 20%, rgba(25, 166, 122, 0.10), transparent 28%),
    var(--green-50);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 82px;
}

.feature-grid--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
}

.feature-content h2 {
  margin-bottom: 20px;
}

.feature-content__lead {
  margin: 0 0 24px;
  color: var(--slate-700);
  font-size: 19px;
}

.feature-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.feature-visual--body {
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
}

.body-figure {
  width: 82%;
  max-width: 340px;
}

.body-figure svg {
  width: 100%;
  height: auto;
}

.body-silhouette {
  fill: rgba(255, 255, 255, 0.09);
}

.spine rect {
  fill: rgba(255, 255, 255, 0.92);
}

.visual-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  min-width: 190px;
  padding: 16px 18px;
  display: grid;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  box-shadow: var(--shadow-small);
  line-height: 1.3;
}

.visual-note span {
  margin-top: 4px;
  color: var(--slate-700);
  font-size: 12px;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.tag-grid span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--green-200);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(14, 78, 61, 0.07);
  font-weight: 800;
}

.section--mind {
  overflow: hidden;
  background: linear-gradient(145deg, #f7fafb, #edf4f5);
}

.section-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.section-orb--one {
  top: 60px;
  left: -110px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(79, 101, 110, 0.14);
}

.section-orb--two {
  right: -140px;
  bottom: 40px;
  width: 330px;
  height: 330px;
  background: rgba(25, 166, 122, 0.08);
}

.topic-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.topic-list article {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid rgba(79, 101, 110, 0.12);
  border-radius: 17px;
  box-shadow: 0 10px 28px rgba(30, 66, 72, 0.07);
}

.topic-list__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 14px;
}

.topic-list__icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.topic-list h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 18px;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-tags span {
  padding: 9px 15px;
  color: var(--slate-900);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.feature-visual--mind {
  background: linear-gradient(145deg, #38535d, #213b45);
}

.mind-figure {
  width: 90%;
  max-width: 380px;
}

.mind-figure svg {
  width: 100%;
  height: auto;
}

.mind-figure .head {
  fill: rgba(255, 255, 255, 0.09);
}

.mind-figure .brain {
  fill: rgba(25, 166, 122, 0.28);
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 5;
  stroke-linejoin: round;
}

.mind-figure .brain-detail {
  fill: none;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 4;
  stroke-linecap: round;
}

.contact {
  padding: 90px 0;
  background: var(--white);
}

.contact__panel {
  padding: 52px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  align-items: center;
  gap: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.13), transparent 26%),
    linear-gradient(135deg, var(--green-950), var(--green-700));
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.eyebrow--light {
  color: var(--green-200);
}

.contact h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
}

.contact p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact__data {
  display: grid;
  gap: 14px;
}

.contact__data > a,
.contact__data > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--green-950);
  background: var(--white);
  border-radius: 14px;
}

.contact__icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact__data > a > span:last-child,
.contact__data > div > span:last-child {
  display: grid;
  line-height: 1.3;
}

.contact__data small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.contact__data strong {
  margin-top: 2px;
  font-size: 15px;
}

.button--white {
  color: var(--green-950);
  background: var(--white);
  white-space: nowrap;
}

.button--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.footer {
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #18323b;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  align-items: center;
  gap: 35px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer__brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
}

.footer__brand span {
  display: grid;
  line-height: 1.3;
}

.footer__brand strong {
  color: var(--white);
  font-size: 17px;
}

.footer__brand small {
  margin-top: 3px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--white);
}

.footer__contact {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.footer__contact a {
  color: var(--white);
  font-weight: 800;
}

.footer__bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  text-align: center;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--white);
  background: #19a463;
  border-radius: 999px;
  box-shadow: 0 15px 38px rgba(16, 116, 70, 0.34);
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 91px;
  z-index: 1150;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: var(--white);
  border: 0;
  border-radius: 14px;
  box-shadow: var(--shadow-small);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .navigation {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    padding: 18px;
    display: grid;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(10, 111, 85, 0.12);
    border-radius: 18px;
    box-shadow: var(--shadow-large);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navigation a {
    padding: 12px 14px;
  }

  .navigation > a:not(.navigation__whatsapp)::after {
    display: none;
  }

  .navigation__whatsapp {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 90px;
  }

  .hero__grid,
  .feature-grid,
  .feature-grid--reverse {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 55px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    min-height: 500px;
  }

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

  .feature-grid {
    gap: 55px;
  }

  .feature-grid--reverse .feature-content {
    order: 2;
  }

  .feature-grid--reverse .feature-visual {
    order: 1;
  }

  .feature-visual {
    min-height: 470px;
  }

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

  .contact__panel .button {
    grid-column: 1 / -1;
    width: max-content;
  }

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

  .footer__links {
    justify-content: flex-end;
  }

  .footer__contact {
    grid-column: 1 / -1;
    justify-items: start;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 28px);
  }

  .header__inner {
    min-height: 76px;
  }

  .brand img {
    width: 51px;
    height: 51px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .navigation {
    top: 70px;
    right: 14px;
    left: 14px;
  }

  .hero {
    padding: 115px 0 72px;
  }

  .hero h1 {
    font-size: clamp(45px, 15vw, 66px);
  }

  .hero__summary {
    font-size: 18px;
  }

  .hero__buttons,
  .hero__buttons .button {
    width: 100%;
  }

  .hero__facts {
    display: grid;
    gap: 14px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .logo-card {
    width: min(100%, 340px);
    border-width: 7px;
  }

  .floating-label {
    padding: 9px 13px;
    font-size: 12px;
  }

  .floating-label--top {
    top: 50px;
    right: 0;
  }

  .floating-label--bottom {
    bottom: 50px;
    left: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .service-card {
    min-height: 0;
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 28px;
  }

  .service-card__icon {
    width: 82px;
    height: 82px;
    border-radius: 23px;
  }

  .service-card__icon svg {
    width: 48px;
    height: 48px;
  }

  .service-card h3 {
    font-size: 27px;
  }

  .feature-visual {
    min-height: 400px;
    border-radius: 28px;
  }

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

  .visual-note {
    right: 15px;
    bottom: 15px;
    min-width: 165px;
  }

  .contact {
    padding: 70px 0;
  }

  .contact__panel {
    padding: 32px 24px;
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .contact__panel .button {
    grid-column: auto;
    width: 100%;
  }

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

  .footer__links {
    justify-content: flex-start;
  }

  .footer__contact {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .back-to-top {
    right: 19px;
    bottom: 80px;
  }
}

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

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