:root {
  --color-primary: #1f3b4d;
  --color-primary-light: #2f5468;
  --color-accent: #6f8c63;
  --color-accent-light: #a7bfa0;
  --color-bg: #faf7f1;
  --color-bg-alt: #f2f0e6;
  --color-text: #22323d;
  --color-text-muted: #5c6b70;
  --color-border: #e4e0d3;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(31, 59, 77, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 59, 77, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31, 59, 77, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost:hover { background: var(--color-bg-alt); }
.btn-block { width: 100%; margin-top: 8px; }

/* Promo bar */
.promo-bar {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
}
.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 24px;
  text-align: center;
}
.promo-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 500;
}
.promo-clock { font-size: 1rem; }
.promo-timer {
  font-family: var(--font-title);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
  padding: 2px 10px;
  border-radius: 999px;
  min-width: 60px;
  display: inline-block;
  letter-spacing: 0.02em;
}
.promo-cta {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s ease;
}
.promo-cta:hover { transform: translateY(-1px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-primary);
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.nav { display: flex; gap: 32px; }
.nav a {
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--color-primary); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.18) 0%, rgba(250, 247, 241, 0.35) 55%, var(--color-bg-alt) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-text {
  text-align: center;
  max-width: 680px;
  padding: 36px 32px;
  border-radius: 28px;
  background: rgba(250, 247, 241, 0.55);
  backdrop-filter: blur(6px);
}
.hero-text .hero-sub { margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(111, 140, 99, 0.14);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 32px;
}

/* Section shared */
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-sub-rich {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-sub-rich p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.section-sub-rich p:last-of-type { margin-bottom: 28px; }

/* Beneficios */
.beneficios { padding: 100px 0; }
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.beneficio-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.beneficio-card:hover { transform: translateY(-6px); }
.beneficio-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.beneficio-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.beneficio-card h3 { font-size: 1.05rem; margin: 20px 20px 8px; }
.beneficio-card p { color: var(--color-text-muted); font-size: 0.92rem; padding: 0 20px 24px; }

/* Produtos */
.produtos { padding: 100px 0; background: var(--color-bg-alt); }
.beneficios-highlight {
  background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
  border-radius: 24px;
  padding: 36px 32px 32px;
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: center;
  box-shadow: 0 24px 50px rgba(31, 59, 77, 0.3);
  animation: highlightGlow 3s ease-in-out infinite;
}
@keyframes highlightGlow {
  0%, 100% { box-shadow: 0 24px 50px rgba(31, 59, 77, 0.3); }
  50% { box-shadow: 0 24px 60px rgba(111, 140, 99, 0.45); }
}
.beneficios-highlight-eyebrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.produtos-beneficios {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}
.produtos-beneficios li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, opacity 0.5s ease;
}
.produtos-beneficios li:hover { transform: translateY(-3px) scale(1.04); background: rgba(255, 255, 255, 0.22); }
.produtos-beneficios li.reveal { transform: translateY(14px) scale(0.9); }
.produtos-beneficios li.reveal.is-visible { transform: translateY(0) scale(1); }
.produtos-beneficios li:nth-child(1) { transition-delay: 0s; }
.produtos-beneficios li:nth-child(2) { transition-delay: 0.1s; }
.produtos-beneficios li:nth-child(3) { transition-delay: 0.2s; }
.produtos-beneficios li:nth-child(4) { transition-delay: 0.3s; }
.produtos-beneficios li:nth-child(5) { transition-delay: 0.4s; }
.check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  flex-shrink: 0;
}
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.produtos-grid { align-items: center; }
.produto-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.produto-card:hover { transform: translateY(-8px) scale(1.02); }

.produto-card--popular {
  border-color: var(--color-accent);
  transform: translateY(-14px) scale(1.05);
  z-index: 2;
  animation: popularGlow 2.6s ease-in-out infinite;
}
.produto-card--popular:hover { transform: translateY(-20px) scale(1.06); animation-play-state: paused; }

@keyframes popularGlow {
  0%, 100% {
    box-shadow: 0 20px 40px rgba(111, 140, 99, 0.3), 0 0 0 0 rgba(111, 140, 99, 0.35);
  }
  50% {
    box-shadow: 0 20px 40px rgba(111, 140, 99, 0.35), 0 0 0 12px rgba(111, 140, 99, 0);
  }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.06); }
}

.produto-card--side {
  transform: scale(0.94) rotate(0deg);
  z-index: 1;
}
.produto-card--left { transform: scale(0.94) rotate(-3deg) translateY(8px); }
.produto-card--right { transform: scale(0.94) rotate(3deg) translateY(8px); }
.produto-card--left:hover { transform: scale(0.97) rotate(-1deg) translateY(0); }
.produto-card--right:hover { transform: scale(0.97) rotate(1deg) translateY(0); }

.produto-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 0 0 0 14px;
  z-index: 3;
  animation: badgeFloat 2.6s ease-in-out infinite;
}

@media (max-width: 900px) {
  .produto-card--popular,
  .produto-card--left,
  .produto-card--right {
    transform: none;
  }
  .produto-card--popular:hover,
  .produto-card--left:hover,
  .produto-card--right:hover {
    transform: translateY(-8px);
  }
}
.produto-img {
  background: linear-gradient(135deg, #eef2e9, #e2e8db);
  aspect-ratio: 1055 / 1491;
  overflow: hidden;
}
.produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.produto-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.produto-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.produto-body p { color: var(--color-text-muted); font-size: 0.92rem; flex: 1; margin-bottom: 8px; }
.produto-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin-bottom: 16px;
}
.produto-discount {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.produto-body .produto-price {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
}
.produto-price-old {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-right: 8px;
}
.produto-price span:not(.produto-price-old) {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}
.produtos-nota {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  margin-top: 32px;
  font-style: italic;
}

/* Depoimentos */
.depoimentos { padding: 100px 0; overflow: hidden; }
.depoimentos-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.depoimentos-track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.depoimento-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 320px;
  flex-shrink: 0;
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.depoimento-slide--center {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 20px 40px rgba(31, 59, 77, 0.3);
  z-index: 2;
}
.depoimento-slide--side {
  display: none;
  background: #fff;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  transform: scale(0.92);
  opacity: 0.6;
  z-index: 1;
}
.depoimento-quote {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 28px;
}
.depoimento-slide--side .depoimento-quote { filter: blur(0.3px); }
.depoimento-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depoimento-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.depoimento-slide--center .depoimento-avatar { background: #fff; color: var(--color-primary); }
.depoimento-slide--side .depoimento-avatar { background: var(--color-bg-alt); color: var(--color-accent); }
.depoimento-name-wrap { display: flex; flex-direction: column; text-align: left; }
.depoimento-name { font-weight: 700; font-size: 1rem; }
.depoimento-slide--center .depoimento-name { color: #fff; }
.depoimento-slide--side .depoimento-name { color: var(--color-text); }
.depoimento-role { font-size: 0.82rem; }
.depoimento-slide--center .depoimento-role { color: rgba(255, 255, 255, 0.75); }
.depoimento-slide--side .depoimento-role { color: var(--color-text-muted); }

.depoimentos-nav { display: flex; gap: 16px; margin-top: 36px; }
.depoimentos-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  box-shadow: 0 6px 14px rgba(31, 59, 77, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.depoimentos-arrow:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

@media (min-width: 720px) {
  .depoimento-slide--side { display: flex; }
}
@media (max-width: 719px) {
  .depoimento-slide--center { width: 100%; max-width: 340px; }
}

/* CTA final */
.cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
}
.cta-inner { text-align: center; }
.cta-inner h2 { color: #fff; margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.9); margin-bottom: 28px; }
.cta-inner .btn-primary {
  background: #fff;
  color: var(--color-primary);
  box-shadow: none;
}
.cta-inner .btn-primary:hover { transform: translateY(-2px); }

/* Footer */
.site-footer {
  background: #16232d;
  color: rgba(255,255,255,0.75);
  padding: 48px 0 28px;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}
.footer-brand .logo-icon { background: rgba(255,255,255,0.08); color: var(--color-primary-light); }
.footer-text { font-size: 0.9rem; max-width: 420px; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.footer-copy { font-size: 0.8rem; margin-top: 12px; color: rgba(255,255,255,0.5); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
  .produtos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-toggle { display: flex; }
  .beneficios-grid { grid-template-columns: 1fr; }
}
