:root {
  --primary: #0F172A;
  --secondary: #16A34A;
  --accent: #F59E0B;
  --white: #ffffff;
  --soft: #F7F9FC;
  --muted: #64748B;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --radius: 8px;
  --font-body: "Poppins", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

body.site-locked {
  overflow: hidden;
}

body.site-locked nav,
body.site-locked main,
body.site-locked footer,
body.site-locked .scroll-progress,
body.site-locked .back-to-top,
body.site-locked .floating-whatsapp,
body.site-locked .floating-call {
  visibility: hidden;
  pointer-events: none;
}

body.site-locked .loader {
  display: none;
}

.pin-lock {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(22, 163, 74, 0.24), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(245, 158, 11, 0.22), transparent 26%),
    linear-gradient(135deg, #07101F, var(--primary));
}

.pin-lock::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

body:not(.site-locked) .pin-lock {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pin-card {
  position: relative;
  width: min(440px, 100%);
  padding: 34px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 30px 90px rgba(0,0,0,0.38);
  backdrop-filter: blur(22px);
}

.pin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 18px;
  color: #8CF1B6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(140, 241, 182, 0.2);
}

.pin-card h1 {
  font-size: clamp(2rem, 8vw, 3.1rem);
  margin-bottom: 12px;
}

.pin-card p {
  color: rgba(255,255,255,0.72);
}

.pin-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.pin-form input {
  width: 100%;
  min-height: 62px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.34em;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  outline: none;
}

.pin-form input:focus {
  border-color: #8CF1B6;
  box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.22);
}

.pin-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.pin-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.pin-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.24);
}

.pin-dots span.active {
  background: var(--accent);
}

.pin-message {
  min-height: 26px;
  margin: 14px 0 0;
  color: #FCA5A5 !important;
  font-weight: 700;
}

img { max-width: 100%; }

a { text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.2rem; }
p { color: var(--muted); line-height: 1.8; }

.section { padding: 108px 0; }
.section-sm { padding: 56px 0; }
.bg-soft { background: var(--soft); }
.rounded-premium { border-radius: var(--radius); }
.shadow-soft { box-shadow: var(--shadow); }

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-kicker.light { color: #8CF1B6; }

.btn {
  border-radius: var(--radius);
  font-weight: 700;
  padding: 13px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-brand {
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, var(--secondary), #22C55E 55%, var(--accent));
  box-shadow: 0 14px 34px rgba(22, 163, 74, 0.28);
}

.btn-brand:hover { color: var(--white); box-shadow: 0 18px 44px rgba(22, 163, 74, 0.34); }
.btn-ghost { color: var(--white); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); }
.btn-ghost:hover { color: var(--white); background: rgba(255,255,255,0.2); }

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--primary);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loader.hide { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  animation: pulse 1.2s infinite;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 4px;
  width: 0;
  z-index: 9998;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  border: 2px solid var(--accent);
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.navbar {
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
}

.navbar-brand:hover,
.navbar .nav-link { color: var(--white); }

.brand-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.navbar .nav-link {
  font-weight: 600;
  opacity: 0.84;
  padding: 8px 12px;
}

.navbar .nav-link:hover { opacity: 1; color: #9EF0BD; }
.navbar-toggler { border-color: rgba(255,255,255,0.35); }
.navbar-toggler:focus { box-shadow: 0 0 0 0.16rem rgba(22, 163, 74, 0.35); }
.navbar-toggler-icon { filter: invert(1); }

.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.28), transparent 26%),
    radial-gradient(circle at 20% 24%, rgba(22, 163, 74, 0.25), transparent 30%),
    linear-gradient(135deg, #0B1224 0%, #101B33 48%, #0F172A 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.hero-copy {
  max-width: 650px;
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  margin: 22px 0 30px;
}

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

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-metrics div {
  min-width: 112px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.hero-metrics strong { display: block; font-size: 1.5rem; }
.hero-metrics span { color: rgba(255,255,255,0.72); font-size: 0.85rem; }

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

.product-bottle {
  width: min(430px, 86vw);
  filter: drop-shadow(0 38px 70px rgba(0,0,0,0.38));
  animation: floatBottle 5s ease-in-out infinite;
}

.nutrition-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

.chip-a { left: 3%; top: 22%; }
.chip-b { right: 2%; top: 44%; }
.chip-c { left: 11%; bottom: 18%; }

.float-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.75;
  animation: drift 8s ease-in-out infinite;
}

.shape-one { width: 120px; height: 120px; background: rgba(22,163,74,0.24); left: 8%; top: 19%; }
.shape-two { width: 84px; height: 84px; background: rgba(245,158,11,0.26); right: 12%; bottom: 24%; animation-delay: 1s; }
.shape-three { width: 52px; height: 52px; background: rgba(255,255,255,0.18); left: 47%; top: 16%; animation-delay: 2s; }

.hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.62);
  animation: particle 7s linear infinite;
}

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 110px;
  fill: var(--white);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.logo-strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  color: #334155;
  font-family: var(--font-heading);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

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

.mission-grid div,
.feature-card,
.ingredient-card,
.review-card,
.blog-card,
.certificate-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.mission-grid div { padding: 20px; }
.mission-grid i,
.feature-card i {
  color: var(--secondary);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.mission-grid h3,
.feature-card h3,
.ingredient-card h3,
.review-card h3,
.blog-card h3,
.certificate-grid h3 {
  font-size: 1.05rem;
}

.mission-grid p { margin-bottom: 0; font-size: 0.9rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats-grid div {
  padding: 18px 12px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--soft);
}

.stats-grid strong { display: block; font-size: 1.35rem; font-family: var(--font-heading); }
.stats-grid span { color: var(--muted); font-size: 0.78rem; }

.product-card {
  padding: clamp(24px, 5vw, 56px);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(22,163,74,0.45), rgba(245,158,11,0.55)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}

.product-card-img {
  width: min(360px, 100%);
  filter: drop-shadow(0 28px 42px rgba(15,23,42,0.22));
}

.product-meta,
.product-lists,
.nutrition-mini,
.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.product-meta span {
  padding: 8px 12px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: var(--radius);
  background: rgba(22, 163, 74, 0.1);
}

.product-card h3 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 20px 0 12px; }
.product-lists > div { flex: 1 1 230px; padding: 18px; border-radius: var(--radius); background: var(--soft); }
.product-lists h4 { font-size: 0.95rem; }
.product-lists ul { margin-bottom: 0; padding-left: 18px; color: var(--muted); }

.nutrition-mini {
  margin: 20px 0;
}

.nutrition-mini div {
  flex: 1 1 112px;
  padding: 14px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.nutrition-mini b { display: block; font-size: 1.35rem; }
.nutrition-mini span { color: var(--muted); font-size: 0.82rem; }

.price-row {
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-row span { display: block; color: var(--muted); font-size: 0.85rem; }
.price-row strong { font-size: 1.8rem; font-family: var(--font-heading); }
.available { display: flex; gap: 12px; color: var(--accent); font-size: 1.6rem; }

.feature-card {
  height: 100%;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.blog-card:hover,
.certificate-grid article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.bg-dark-premium {
  background:
    radial-gradient(circle at 18% 25%, rgba(22,163,74,0.18), transparent 28%),
    linear-gradient(135deg, #0B1224, var(--primary));
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.benefit-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.benefit-list i { color: #8CF1B6; }

.ingredients-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(22,163,74,0.12), transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(245,158,11,0.12), transparent 22%),
    var(--white);
}

.ingredient-card {
  height: 100%;
  padding: 18px;
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(18px);
}

.ingredient-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.ingredient-card span,
.blog-card span {
  display: inline-flex;
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.78rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.timeline-item {
  position: relative;
  padding: 26px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.timeline-item span {
  position: absolute;
  top: -14px;
  left: 18px;
  color: var(--white);
  font-weight: 800;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--primary);
}

.timeline-item i {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.nutrition-table-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.nutrition-table { margin-bottom: 0; }
.nutrition-table thead th {
  color: var(--white);
  background: var(--primary);
  padding: 18px;
}
.nutrition-table td { padding: 18px; }

.review-swiper { padding: 8px 8px 52px; }
.review-card {
  padding: 28px;
  min-height: 286px;
}

.review-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.stars { color: var(--accent); letter-spacing: 0; margin-bottom: 12px; }
.swiper-pagination-bullet-active { background: var(--secondary); }

.gallery-card {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img { transform: scale(1.06); }
.gallery-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: var(--white);
  font-weight: 800;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
}

.video-section {
  color: var(--white);
  background: linear-gradient(135deg, #111827, #0F172A);
}

.video-section p { color: rgba(255,255,255,0.72); }
.video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}

.play-pulse {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.9);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse 1.6s infinite;
}

.premium-accordion .accordion-item {
  border: 0;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15,23,42,0.06);
}

.premium-accordion .accordion-button {
  font-weight: 800;
  font-family: var(--font-heading);
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(22, 163, 74, 0.1);
  box-shadow: none;
}

.blog-card {
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 2.6;
  object-fit: cover;
}

.blog-card div { padding: 24px; }
.blog-card a { color: var(--secondary); font-weight: 800; }

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

.certificate-grid article {
  padding: 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.certificate-grid i {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 14px;
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(22,163,74,0.26), transparent 26%),
    linear-gradient(135deg, var(--primary), #111827);
}

.contact-section p { color: rgba(255,255,255,0.74); }
.contact-list p { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.contact-list i { color: #8CF1B6; }

.btn-whatsapp {
  color: var(--white);
  background: #25D366;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
}

.contact-form label {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  margin-bottom: 8px;
}

.form-control {
  min-height: 50px;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: var(--radius);
}

.contact-card .form-control {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
}

.contact-card .form-control:focus {
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border-color: #8CF1B6;
  box-shadow: 0 0 0 0.18rem rgba(22,163,74,0.22);
}

.map-box {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 8px;
  margin-top: 20px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.78);
  background:
    linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25%) 0 0 / 28px 28px,
    rgba(15,23,42,0.32);
}

.map-box i { font-size: 2rem; color: var(--accent); }

.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.newsletter-box h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0; }
.newsletter-form {
  display: flex;
  gap: 12px;
  width: min(520px, 100%);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.insta-grid img:hover { transform: translateY(-6px); filter: saturate(1.15); }

.social-band {
  padding: 34px 0;
  background: var(--primary);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-links a,
.footer-social a,
.back-to-top,
.floating-whatsapp,
.floating-call {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-links a:hover,
.footer-social a:hover { transform: translateY(-4px); background: var(--secondary); }

.footer {
  padding: 70px 0 26px;
  color: rgba(255,255,255,0.78);
  background: #090F1D;
}

.footer p { color: rgba(255,255,255,0.68); }
.footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer a { display: block; color: rgba(255,255,255,0.68); margin-bottom: 9px; }
.footer a:hover { color: #8CF1B6; }
.footer-brand { margin-bottom: 14px; color: var(--white) !important; }
.footer-social { display: flex; gap: 10px; }
.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.back-to-top,
.floating-whatsapp,
.floating-call {
  position: fixed;
  right: 20px;
  z-index: 950;
  border: 0;
  opacity: 0;
  visibility: hidden;
  background: var(--primary);
}

.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top { bottom: 24px; }
.floating-whatsapp { bottom: 86px; opacity: 1; visibility: visible; background: #25D366; }
.floating-call { bottom: 142px; opacity: 1; visibility: visible; background: var(--accent); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,0.82);
}

.lightbox.open { display: grid; }
.lightbox img {
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0,0,0,0.45);
}

.lightbox-close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}

@keyframes floatBottle {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(18px,-22px,0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,158,11,0.42); }
  70% { box-shadow: 0 0 0 18px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

@keyframes particle {
  from { transform: translateY(0); opacity: 0; }
  15% { opacity: 0.7; }
  to { transform: translateY(-100vh); opacity: 0; }
}

@media (max-width: 1199px) {
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(18px);
  }

  .hero { padding-top: 96px; }
  .hero-visual { min-height: 460px; }
  .mission-grid,
  .stats-grid,
  .timeline,
  .certificate-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .newsletter-box { flex-direction: column; align-items: stretch; }
}

@media (max-width: 767px) {
  .section { padding: 76px 0; }
  .section-sm { padding: 42px 0; }
  .cursor-dot { display: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-metrics { gap: 10px; }
  .hero-metrics div { flex: 1 1 30%; min-width: 96px; padding: 12px; }
  .nutrition-chip { font-size: 0.78rem; padding: 9px 10px; }
  .chip-a { left: 0; }
  .chip-b { right: 0; }
  .chip-c { left: 4%; }
  .logo-strip,
  .mission-grid,
  .stats-grid,
  .benefit-list,
  .timeline,
  .certificate-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .price-row { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp,
  .floating-call { right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
