:root {
  --green-950: #022f0c;
  --green-900: #053f12;
  --green-800: #064915;
  --green-700: #0b5d1d;
  --green-600: #13752b;
  --green-500: #238b3b;
  --lime: #93c83e;
  --white: #ffffff;
  --off-white: #f8faf5;
  --cream: #f3f5ed;
  --ink: #101510;
  --muted: #4d5a4f;
  --line: #e5e9e2;
  --shadow: 0 14px 34px rgba(16, 35, 19, .12);
  --radius: 12px;
  --font-body: Arial, sans-serif;
  --font-display: Arial, sans-serif;
  --header-height: 136px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body,
body .site-header,
body .main-nav,
body main,
body .hero,
body .about,
body .products,
body .product-card,
body .product-body,
body .benefits,
body .about-content,
body .video-card,
body .site-footer,
body .footer-column,
body .footer-bottom,
body .button,
body button,
body input,
body textarea,
body select {
  font-family: var(--font-body) !important;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .hero h1,
body .hero h2,
body .section-heading h2,
body .product-card h3,
body .benefit h3,
body .about-content h2,
body .video-card h3,
body .footer-column h3 {
  font-family: var(--font-display) !important;
}
body .main-nav > a { font-size: 13px !important; }
body .button { font-size: 13px !important; }
body .hero h1,
body .hero h2 { font-size: clamp(38px, 4vw, 48px) !important; }
body .hero-content > h1,
body .hero-content > h2 {
  max-width: 430px !important;
  margin: 0 !important;
  color: #030503 !important;
  font-family: Arial, sans-serif !important;
  font-size: clamp(38px, 4vw, 48px) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: -.035em !important;
  text-transform: uppercase !important;
}
body .hero-content > h1 span,
body .hero-content > h2 span {
  display: block !important;
  color: var(--green-800) !important;
  font-family: Arial, sans-serif !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
body .hero-description { font-size: 17px !important; }
body .hero-phone { font-size: 32px !important; }
body .hero-phone small { font-size: 26px !important; }
body .hero-card strong { font-size: 10px !important; }
body .hero-card h2 { font-size: 15px !important; }
body .hero-card p { font-size: 12px !important; }
body .section-heading h2 { font-size: clamp(26px, 3vw, 32px) !important; }
body .section-heading p { font-size: 13px !important; }
body .product-body h3 { font-size: 13px !important; }
body .spec-list { font-size: 12px !important; }
body .benefit h3 {
  margin: 0 0 6px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: normal !important;
  text-transform: uppercase !important;
}
body .benefit p {
  margin: 0 !important;
  color: rgba(255,255,255,.88) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}
body .about-content h2 { font-size: 26px !important; }
body .about-content p { font-size: 14px !important; }
body .video-card h3 { font-size: 18px !important; }
body .video-card p { font-size: 13px !important; }
body .footer-map a { font-size: 13px !important; }
body .site-footer .footer-column h3 {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-family: Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: normal !important;
  text-transform: uppercase !important;
}
body .footer-column a,
body .footer-column span { font-size: 12px !important; }
body .footer-contact a:first-of-type { font-size: 17px !important; }
body .footer-bottom-inner { font-size: 12px !important; }
body .menu-toggle {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: none !important;
  justify-self: end !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 9px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--green-900) !important;
  background: transparent !important;
  box-shadow: none !important;
  line-height: 1 !important;
  cursor: pointer !important;
}
body .menu-toggle span {
  display: block !important;
  width: 28px !important;
  height: 2px !important;
  min-height: 0 !important;
  margin: 6px 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--green-900) !important;
  transition: .25s ease !important;
}
body .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg) !important; }
body .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0 !important; }
body .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg) !important; }
body .hero-dots {
  position: absolute !important;
  z-index: 2 !important;
  left: 50% !important;
  bottom: 20px !important;
  display: flex !important;
  gap: 10px !important;
  transform: translateX(-50%) !important;
}
body .hero-dot {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: block !important;
  width: 12px !important;
  min-width: 12px !important;
  height: 12px !important;
  min-height: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--white) !important;
  box-shadow: none !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: transform 220ms ease, background 220ms ease !important;
}
body .hero-dot:hover,
body .hero-dot:focus-visible {
  transform: scale(1.18) !important;
}
body .hero-dot.is-active,
body .hero-dot[aria-selected="true"] {
  background: #38b02a !important;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container {
  width: calc(100% - 48px);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}
.section { padding: 28px 0 24px; }
.svg-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link {
  position: fixed;
  z-index: 999;
  top: -100px;
  left: 18px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--green-900);
  background: var(--white);
  font-weight: 800;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 26px rgba(5,63,18,.12); }
body.admin-bar .site-header { top: 32px; }
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 275px 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand img {
  width: 245px;
  height: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 43px;
}
.main-nav > a {
  position: relative;
  padding: 48px 0 43px;
  color: #050805;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.main-nav > a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 34px;
  left: 50%;
  height: 3px;
  inset: auto 50% 34px;
  background: var(--green-700);
  transition: inset .2s ease;
}
.main-nav > a:hover::after,
.main-nav > a.active::after {
  right: 0;
  left: 0;
  inset-inline: 0;
}
.menu-toggle {
  display: none;
  justify-self: end;
  background: transparent;
  border: 0;
  padding: 9px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--green-900);
  transition: .25s ease;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 0;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg,
.footer-contact svg,
.floating-whatsapp svg,
.spec-list svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-whatsapp,
.button-primary,
.button-card {
  color: var(--white);
  background: linear-gradient(180deg, #08661a, #03450f);
  box-shadow: 0 8px 18px rgba(2,47,12,.2);
}
.header-whatsapp {
  min-width: 186px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0;
}
.button-outline {
  min-width: 170px;
  color: var(--green-900);
  background: transparent;
  border: 1px solid var(--green-900);
  box-shadow: none;
}
.button-outline:hover {
  color: var(--white);
  background: var(--green-900);
}

.hero {
  position: relative;
  min-height: 560px;
  padding: calc(var(--header-height) + 54px) 0 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.86) 32%, rgba(255,255,255,.2) 56%, rgba(255,255,255,0) 100%),
    radial-gradient(circle at 75% 37%, rgba(255,255,255,.75), rgba(255,255,255,0) 26%),
    linear-gradient(180deg, #dbeaf0 0%, #edf3ed 47%, #d5b080 72%, #8a643d 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background:
    radial-gradient(ellipse at 22% 100%, rgba(20,95,24,.24), transparent 40%),
    repeating-linear-gradient(105deg, rgba(72,108,31,.22) 0 2px, transparent 2px 16px);
  opacity: .72;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 85px;
  background: linear-gradient(180deg, rgba(88,54,22,0), rgba(88,54,22,.28));
}
.hero-carousel {
  position: relative;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 26px;
}
.hero-content { padding-bottom: 28px; }
.hero h1,
.hero h2 {
  max-width: 430px;
  margin: 0;
  color: #030503;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero h1 span,
.hero h2 span {
  display: block;
  color: var(--green-800);
}
.title-line {
  display: block;
  width: 78px;
  height: 4px;
  margin: 23px 0 30px;
  background: var(--green-700);
  box-shadow: 12px 0 0 rgba(19,117,43,.14);
}
.hero-description {
  max-width: 355px;
  margin: 0 0 28px;
  color: #0e140f;
  font-size: 17px;
  line-height: 1.62;
}
.hero-phone {
  margin: 17px 0 0;
  color: #050805;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.hero-phone small {
  color: var(--green-700);
  font-size: 26px;
}
.hero-visual {
  position: relative;
  min-height: 385px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-photo {
  width: min(100%, 720px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 20px rgba(48, 30, 13, .22));
}
.hero-photo-distributor {
  width: min(100%, 760px);
}
.hero-card {
  position: absolute;
  right: 50px;
  bottom: 14px;
  width: 300px;
  padding: 13px 18px 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(5, 63, 18, .78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero-card strong {
  display: inline-block;
  margin-bottom: 5px;
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--white);
  background: var(--green-600);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-card h2 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}
.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}
.hero-dot:hover,
.hero-dot:focus-visible {
  transform: scale(1.18);
}
.hero-dot.is-active { background: #38b02a; }

.section-heading {
  margin-bottom: 22px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.section-heading h2 span { font-size: .72em; }
.section-heading p {
  margin: 7px 0 0;
  color: #111;
  font-size: 13px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-image {
  height: 186px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--white);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .35s ease;
}
.product-card:hover .product-image img { transform: scale(1.045); }
.product-body {
  padding: 13px 23px 18px;
}
.product-body h3 {
  min-height: 32px;
  margin: 0 0 16px;
  color: #050805;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.24;
  text-transform: uppercase;
}
.spec-list {
  display: grid;
  gap: 9px;
  min-height: 112px;
  margin: 0 0 17px;
  padding: 0;
  list-style: none;
}
.spec-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #111;
  font-size: 12px;
}
.spec-list svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #0b0f0c;
  stroke-width: 1.7;
}
.button-card {
  width: 142px;
  min-height: 35px;
  margin: 0 auto;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 12px;
}

.benefits {
  padding: 25px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 40%, rgba(16, 124, 34, .55), transparent 28%),
    linear-gradient(90deg, #012f0b, #064915 50%, #012f0b);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.benefit {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 106px;
  padding: 0 30px;
  border-left: 1px solid rgba(255,255,255,.25);
}
.benefit:first-child { border-left: 0; }
.benefit > svg {
  width: 58px;
  height: 58px;
  padding: 12px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.benefit p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  line-height: 1.55;
}

.about {
  padding: 31px 0 27px;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: 68px;
}
.about-content h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
}
.about-content .title-line {
  width: 44px;
  height: 3px;
  margin: 12px 0 24px;
}
.about-content p {
  max-width: 470px;
  margin: 0 0 16px;
  color: #111;
  font-size: 14px;
}
.about-videos {
  display: grid;
  gap: 24px;
}
.about-photo-card {
  max-width: 430px;
  margin: 0 0 22px;
  padding: 10px;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 35, 19, .1);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.about-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(16, 35, 19, .16);
}
.about-photo-card img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 14px;
  background: #f3f6f2;
}
.about-photo-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.video-card {
  padding: 20px;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 35, 19, .1);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(16, 35, 19, .16);
}
.video-card h3 {
  margin: 0 0 7px;
  color: var(--green-900);
  font-size: 18px;
  font-weight: 900;
}
.video-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}
.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: #e8eee7;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@supports not (aspect-ratio: 16 / 9) {
  .video-frame {
    height: 0;
    padding-bottom: 56.25%;
  }
}

.site-footer {
  color: rgba(255,255,255,.86);
  background: linear-gradient(90deg, #012f0b, #064915 52%, #012f0b);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .7fr 1fr 1.4fr;
  gap: 42px;
  padding: 25px 0 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-map {
  width: 100%;
  max-width: 280px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 155px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
}
.footer-map a {
  display: inline-flex;
  margin-top: 9px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 36px;
  border-left: 1px solid rgba(255,255,255,.26);
}
.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-column a,
.footer-column span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
}
.footer-column a:hover { color: var(--lime); }
.footer-contact svg {
  color: #7bdc32;
  width: 21px;
  height: 21px;
}
.footer-contact a:first-of-type {
  font-size: 17px;
  font-weight: 900;
}
.footer-bottom {
  background: rgba(0,0,0,.18);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  font-size: 12px;
}
.footer-bottom p { margin: 0; }
.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp svg { width: 29px; height: 29px; }

.reveal,
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible,
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: none;
}
.product-card:nth-child(2), .benefit:nth-child(2) { transition-delay: .08s; }
.product-card:nth-child(3), .benefit:nth-child(3) { transition-delay: .16s; }
.product-card:nth-child(4), .benefit:nth-child(4) { transition-delay: .24s; }
.product-card:nth-child(5) { transition-delay: .32s; }
.product-card:nth-child(6) { transition-delay: .4s; }
.product-card:nth-child(7) { transition-delay: .48s; }
.product-card:nth-child(8) { transition-delay: .56s; }
.product-card:nth-child(9) { transition-delay: .64s; }

@media (max-width: 1120px) {
  :root { --header-height: 110px; }
  .header-inner { grid-template-columns: 220px 1fr auto; gap: 20px; }
  .brand img { width: 210px; }
  .main-nav { gap: 24px; }
  .main-nav > a { font-size: 12px; }
  .header-whatsapp { min-width: 165px; padding-inline: 14px; font-size: 12px; }
  .hero-grid { grid-template-columns: .75fr 1.25fr; }
  .hero-photo { width: min(100%, 640px); }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .product-image { height: 210px; }
  .benefit { grid-template-columns: 60px 1fr; padding-inline: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --header-height: 82px; }
  .container {
    width: calc(100% - 32px);
    max-width: 680px;
  }
  .header-inner { grid-template-columns: 1fr auto; gap: 16px; }
  .brand img { width: 160px; }
  .menu-toggle,
  body .menu-toggle { display: block !important; z-index: 3; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    inset: var(--header-height) 0 auto;
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 25px 24px 45px;
    background: var(--white);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
  }
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar .main-nav {
    top: calc(var(--header-height) + 46px);
    height: calc(100vh - var(--header-height) - 46px);
  }
  .main-nav.open {
    transform: none;
    visibility: visible;
  }
  .main-nav > a {
    padding: 17px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .main-nav > a::after { display: none; }
  .header-whatsapp { display: none; }
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }
  .hero h1,
  .hero h2 { max-width: 560px; }
  .title-line { margin-inline: auto; }
  .hero-description { max-width: 500px; }
  .hero-visual {
    min-height: 300px;
    justify-content: center;
  }
  .hero-photo { width: min(100%, 560px); }
  .hero-card {
    right: 50%;
    bottom: 0;
    width: min(300px, 90%);
    text-align: left;
    transform: translateX(50%);
  }
  .hero-dots { bottom: 16px; }
  body .hero-dots { bottom: 16px !important; }
  .section { padding-top: 34px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 20px 0; }
  .benefit:nth-child(odd) { border-left: 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-content { text-align: center; }
  .about-content p { margin-inline: auto; }
  .about-photo-card { margin-inline: auto; }
  .about-videos { width: 100%; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand,
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 26px);
    max-width: 420px;
  }
  .brand img { width: 138px; }
  .hero h1,
  .hero h2 { font-size: 34px; }
  body .hero-content > h1,
  body .hero-content > h2 { font-size: 34px !important; }
  .hero-description { font-size: 15px; }
  .hero-phone { font-size: 26px; }
  .hero-visual { min-height: 250px; }
  .hero-card { position: relative; margin-top: -20px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { height: 225px; }
  .spec-list { min-height: auto; }
  .benefits-grid { grid-template-columns: 1fr; gap: 0; }
  .benefit,
  .benefit:nth-child(odd) {
    grid-template-columns: 62px 1fr;
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .benefit:first-child { border-top: 0; }
  .video-card { padding: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-column {
    padding-left: 0;
    border-left: 0;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 51px;
    height: 51px;
  }
}
