:root {
  --forest: #163f32;
  --forest-dark: #0c2c23;
  --leaf: #4f8a67;
  --lime: #c9e87a;
  --cream: #f7f4ec;
  --paper: #fffdfa;
  --ink: #14251f;
  --muted: #64736d;
  --line: rgba(20, 37, 31, 0.12);
  --white: #fff;
  --shadow: 0 24px 70px rgba(12, 44, 35, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
}

body img,
body svg {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

a,
button,
.menu-toggle,
.whatsapp-float {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle,
.whatsapp-float,
.whatsapp-float svg,
.button,
.nav-cta {
  pointer-events: auto;
}

section[id] {
  scroll-margin-top: 88px;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
  width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 250, 0.9);
  box-shadow: 0 8px 30px rgba(12, 44, 35, 0.06);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-dark);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand strong {
  color: var(--leaf);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--forest);
}

.brand-mark svg {
  width: 27px;
  fill: var(--lime);
}

.brand-mark .brand-leaf {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-width: 3;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #31433c;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--leaf);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: none;
  cursor: pointer;
  touch-action: manipulation;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--forest);
  transition: transform 0.25s, opacity 0.25s;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 160px 0 90px;
  background:
    radial-gradient(circle at 86% 20%, rgba(201, 232, 122, 0.16), transparent 26%),
    linear-gradient(135deg, #fffdfa 0%, #f4f4e9 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(22, 63, 50, 0.12) 0.8px, transparent 0.8px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 70%);
  opacity: 0.35;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--leaf);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  font-size: clamp(50px, 6.2vw, 78px);
  font-weight: 800;
}

h1 em {
  display: block;
  color: var(--leaf);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-text {
  max-width: 590px;
  margin: 26px 0 32px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  touch-action: manipulation;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

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

.button-primary {
  background: var(--forest);
  box-shadow: 0 14px 32px rgba(22, 63, 50, 0.22);
  color: var(--white);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(22, 63, 50, 0.3);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.hero-trust {
  display: flex;
  gap: 36px;
  margin-top: 50px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  color: var(--forest);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

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

.hero-visual {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest), #2d7258);
  box-shadow: 0 40px 100px rgba(12, 44, 35, 0.25);
  content: "";
}

.visual-card {
  position: relative;
  z-index: 2;
  display: grid;
  width: 272px;
  height: 330px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 135px 135px 30px 30px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(8px);
}

.visual-icon {
  align-self: end;
  width: 128px;
}

.visual-icon svg {
  fill: var(--lime);
}

.visual-icon .leaf-line {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-width: 5;
}

.visual-card p {
  align-self: start;
  margin: 12px 0 0;
  font-size: 17px;
}

.visual-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(22, 63, 50, 0.14);
  border-radius: 50%;
}

.orbit-large {
  width: 500px;
  height: 500px;
  animation: spin 28s linear infinite;
}

.orbit-large::before,
.orbit-small::before {
  position: absolute;
  top: 50%;
  left: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.orbit-small {
  width: 440px;
  height: 440px;
  animation: spin 20s linear reverse infinite;
}

.floating-pill {
  position: absolute;
  z-index: 3;
  padding: 10px 17px;
  border: 1px solid rgba(22, 63, 50, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(12, 44, 35, 0.14);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  animation: float 5s ease-in-out infinite;
}

.floating-pill span {
  color: var(--leaf);
}

.pill-one {
  top: 95px;
  right: 0;
}

.pill-two {
  bottom: 72px;
  left: -5px;
  animation-delay: -2.5s;
}

.floating-leaf {
  position: absolute;
  z-index: 3;
  color: var(--lime);
  font-size: 38px;
  transform: rotate(-35deg);
}

.leaf-one {
  top: 45px;
  left: 45px;
}

.leaf-two {
  right: 35px;
  bottom: 35px;
  transform: rotate(120deg) scale(0.7);
}

.section {
  padding: 110px 0;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 110px;
}

.intro h2,
.section-heading h2,
.product-copy h2,
.cta-panel h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.intro-content {
  padding-top: 34px;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--forest);
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s;
}

.text-link:hover span {
  transform: translateX(4px);
}

.benefits {
  background: var(--cream);
}

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

.section-heading > p:last-child {
  max-width: 550px;
  margin: 18px auto 0;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

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

.benefit-card.featured {
  background: var(--forest);
  color: var(--white);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(20, 37, 31, 0.25);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.32);
}

.benefit-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 55px;
  place-items: center;
  border-radius: 17px;
  background: rgba(79, 138, 103, 0.13);
  color: var(--leaf);
  font-size: 22px;
}

.featured .benefit-icon {
  background: var(--lime);
  color: var(--forest);
}

.benefit-card h3 {
  margin-bottom: 14px;
  font-size: 27px;
}

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

.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.product {
  background: var(--paper);
}

.product-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.product-art {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  border-radius: 40px;
  background: linear-gradient(145deg, #e4f1cf, #b8d995);
  overflow: hidden;
}

.product-art::after {
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 460px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  transform: rotate(-12deg);
}

.product-bottle {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 35px 32px rgba(22, 63, 50, 0.22));
  transform: rotate(4deg);
}

.bottle-cap {
  width: 112px;
  height: 58px;
  margin: auto;
  border-radius: 16px 16px 8px 8px;
  background: repeating-linear-gradient(90deg, #193d32 0 5px, #244e41 5px 9px);
}

.bottle-body {
  display: grid;
  width: 210px;
  height: 318px;
  place-items: center;
  border-radius: 36px 36px 46px 46px;
  background: linear-gradient(90deg, #fcfff7, #dce9d7 45%, #f8fff4);
  box-shadow: inset -16px 0 25px rgba(22, 63, 50, 0.08);
}

.bottle-label {
  display: flex;
  width: 100%;
  min-height: 160px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--forest);
  color: var(--white);
  text-align: center;
}

.bottle-label small {
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 1.5px;
}

.bottle-label strong {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  letter-spacing: -1px;
}

.bottle-label span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}

.wave {
  position: absolute;
  width: 580px;
  height: 180px;
  border: 3px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.wave-one {
  top: 110px;
  left: -150px;
  transform: rotate(24deg);
}

.wave-two {
  right: -170px;
  bottom: 90px;
  transform: rotate(-18deg);
}

.bubble {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.bubble-one {
  top: 80px;
  right: 70px;
  width: 26px;
  height: 26px;
}

.bubble-two {
  top: 180px;
  left: 62px;
  width: 14px;
  height: 14px;
}

.bubble-three {
  right: 72px;
  bottom: 95px;
  width: 42px;
  height: 42px;
}

.product-copy > p:not(.section-kicker, .product-note) {
  margin: 22px 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.feature-list span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(79, 138, 103, 0.13);
  color: var(--leaf);
}

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

.product-note {
  max-width: 480px;
  margin-top: 20px;
  color: #83908b;
  font-size: 11px;
}

.cta {
  padding-top: 40px;
}

.cta-panel {
  display: grid;
  align-items: center;
  padding: 70px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 232, 122, 0.18), transparent 30%),
    var(--forest);
  color: var(--white);
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
}

.section-kicker.light {
  color: var(--lime);
}

.cta-panel p:not(.section-kicker) {
  max-width: 550px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.button-white {
  background: var(--lime);
  color: var(--forest-dark);
}

.facebook-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
}

.site-footer {
  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
}

.footer-grid > p {
  color: var(--muted);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #829089;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(5, 91, 37, 0.3);
  touch-action: manipulation;
  transition: transform 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 31px;
  fill: var(--white);
}

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

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 76px;
  }

  section[id] {
    scroll-margin-top: 76px;
  }

  .site-header.scrolled,
  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .main-nav {
    position: fixed;
    z-index: 100;
    inset: calc(82px + env(safe-area-inset-top)) 0 auto;
    display: flex;
    max-height: 0;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px;
    background: var(--paper);
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s, opacity 0.3s;
  }

  .main-nav.open {
    max-height: 520px;
    padding: 24px 20px calc(28px + env(safe-area-inset-bottom));
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }

  .main-nav > a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 8px 0;
    font-size: 16px;
  }

  .nav-cta {
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    font-size: 15px;
  }

  body.menu-open::before {
    position: fixed;
    z-index: 90;
    inset: 0;
    background: rgba(12, 44, 35, 0.35);
    content: "";
  }

  .menu-toggle {
    display: block;
    z-index: 101;
  }

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

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

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

  .hero-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .product-grid {
    gap: 48px;
  }

  .product-copy {
    order: 1;
  }

  .product-art {
    order: 2;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-trust {
    justify-content: center;
  }

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

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-content {
    padding-top: 0;
  }

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

  .benefit-card:last-child {
    grid-column: 1 / -1;
  }

  .product-grid {
    gap: 60px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .cta-actions {
    align-items: stretch;
    width: 100%;
  }

  .facebook-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 72px;
  }

  section[id] {
    scroll-margin-top: 72px;
  }

  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .main-nav {
    inset: calc(72px + env(safe-area-inset-top)) 0 auto;
  }

  .hero {
    min-height: auto;
    padding: calc(118px + env(safe-area-inset-top)) 0 56px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 45px);
    line-height: 1.05;
  }

  .hero-text {
    margin: 20px 0 26px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
    font-size: 15px;
  }

  .hero-trust {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 34px;
  }

  .hero-trust strong {
    font-size: 14px;
  }

  .hero-trust span {
    font-size: 11px;
  }

  .hero-visual {
    min-height: 320px;
    margin-inline: auto;
    max-width: 360px;
    transform: none;
  }

  .hero-visual::before {
    width: 280px;
    height: 280px;
  }

  .visual-card {
    width: 220px;
    height: 270px;
  }

  .orbit-large {
    width: 340px;
    height: 340px;
  }

  .orbit-small {
    width: 300px;
    height: 300px;
  }

  .floating-pill,
  .floating-leaf {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .intro-grid {
    gap: 16px;
  }

  .intro h2,
  .section-heading h2,
  .product-copy h2,
  .cta-panel h2 {
    font-size: clamp(28px, 8vw, 35px);
  }

  .section-heading > p:last-child,
  .intro-content,
  .product-copy > p:not(.section-kicker, .product-note) {
    font-size: 16px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .benefit-card:last-child {
    grid-column: auto;
  }

  .benefit-icon {
    margin-bottom: 28px;
  }

  .product-art {
    min-height: 380px;
    border-radius: 28px;
  }

  .product-bottle {
    transform: scale(0.78) rotate(4deg);
  }

  .button-dark {
    width: 100%;
    min-height: 54px;
  }

  .cta {
    padding-top: 24px;
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

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

  .button-white,
  .facebook-link {
    width: 100%;
  }

  .button-white {
    padding-inline: 15px;
    font-size: 14px;
  }

  .site-footer {
    padding: 56px 0 calc(24px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    text-align: center;
  }

  .footer-grid > p {
    margin: 0;
    font-size: 15px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    font-size: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 11px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 28px;
  }
}

@media (max-width: 380px) {
  .hero-trust {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .product-art {
    min-height: 340px;
  }
}

@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;
  }
}
