/* ============================================================
   EasyHealthy Space — Landing institucional
   Paleta: verde + branco
   ============================================================ */

:root {
  --green-900: #0f5132;
  --green-700: #157347;
  --green-600: #1f8a4c;
  --green-500: #27a35b;
  --green-400: #4cbd7a;
  --green-100: #e6f5ec;
  --green-50:  #f2faf5;

  --ink:     #16241c;
  --body:    #46564d;
  --muted:   #7a887f;
  --white:   #ffffff;
  --line:    #e4ebe6;

  --shadow-sm: 0 2px 8px rgba(15, 81, 50, .06);
  --shadow-md: 0 12px 32px rgba(15, 81, 50, .10);
  --shadow-lg: 0 24px 60px rgba(15, 81, 50, .16);

  --radius:    16px;
  --radius-lg: 24px;
  --container: 1160px;

  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-head: 'Fraunces', Georgia, serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 600; }

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

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

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.center { display: inline-block; }

.hl { color: var(--green-600); }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 13px 26px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 20px; font-size: .9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

.btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 8px 20px rgba(31,138,76,.28); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31,138,76,.34); }

.btn-ghost { background: var(--white); color: var(--green-700); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green-400); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--green-700); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand-text { letter-spacing: -.02em; }
.brand-accent { color: var(--green-600); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 600; font-size: .96rem; color: var(--ink); transition: color .15s; }
.nav a:not(.btn):hover { color: var(--green-600); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 85% -10%, var(--green-100), transparent 60%),
    linear-gradient(180deg, var(--green-50), #fff 70%);
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); letter-spacing: -.02em; margin-bottom: 22px; }
.lead { font-size: 1.16rem; color: var(--body); max-width: 560px; margin-bottom: 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 18px 26px; list-style: none; }
.hero-badges li { font-weight: 600; font-size: .94rem; color: var(--green-700); }

/* Hero visual */
.hero-visual { position: relative; min-height: 420px; }
.hero-blob {
  position: absolute; inset: 8% 4% 4% 8%;
  background: linear-gradient(150deg, var(--green-400), var(--green-700));
  border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
  filter: blur(2px);
  opacity: .95;
  box-shadow: var(--shadow-lg);
  animation: morph 12s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%; }
  50%     { border-radius: 55% 45% 42% 58% / 55% 52% 48% 45%; }
}
.glow { position: absolute; width: 240px; height: 240px; right: 6%; top: 4%; background: radial-gradient(circle, rgba(76,189,122,.5), transparent 65%); filter: blur(20px); }

.hero-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  min-width: 172px;
  border: 1px solid var(--line);
}
.hero-card strong { color: var(--ink); font-size: 1.02rem; }
.hero-card span { color: var(--muted); font-size: .84rem; }
.hero-card-icon { font-size: 1.5rem; margin-bottom: 6px; }
.hero-card:nth-child(2) { top: 12%;  left: -4%; }
.hero-card:nth-child(3) { top: 42%;  right: -2%; }
.hero-card:nth-child(4) { bottom: 8%; left: 10%; }

.card-float { animation: float 5s ease-in-out infinite; }
.card-float.delay-1 { animation-delay: 1.2s; }
.card-float.delay-2 { animation-delay: 2.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ================= TRUST BAR ================= */
.trust-bar { background: var(--green-900); color: #fff; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 28px 0; text-align: center; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--font-head); font-size: 1.7rem; color: #fff; }
.trust-item span { color: rgba(255,255,255,.7); font-size: .88rem; }

/* ================= SECTIONS ================= */
.section { padding: 92px 0; }
.section-alt { background: var(--green-50); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-sub { font-size: 1.08rem; color: var(--body); }
.section-foot { text-align: center; margin-top: 48px; }

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

/* Features */
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.feature-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  background: var(--green-100);
  border-radius: 14px;
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 8px; }
.feature p { color: var(--body); font-size: .98rem; }

/* Products */
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-media {
  height: 148px;
  display: grid; place-items: center;
  font-size: 3rem;
  position: relative;
}
.product-media.energy   { background: linear-gradient(135deg, #d9f4e3, #a9e4c1); }
.product-media.focus    { background: linear-gradient(135deg, #d5efe0, #9cdcb7); }
.product-media.immunity { background: linear-gradient(135deg, #e2f6ea, #b7e8cb); }
.product-media.sleep    { background: linear-gradient(135deg, #cdeadb, #94d3ae); }
.product-media.fit      { background: linear-gradient(135deg, #dcf3e6, #a5e2be); }
.product-media.detox    { background: linear-gradient(135deg, #e6f7ed, #bdead0); }
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tag {
  align-self: flex-start;
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--green-700); background: var(--green-100);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.product-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.product-body p { color: var(--body); font-size: .96rem; margin-bottom: 18px; flex: 1; }
.link-arrow { font-weight: 700; color: var(--green-600); transition: gap .2s; }
.link-arrow:hover { color: var(--green-700); }

/* ================= ABOUT ================= */
.about-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-photo {
  position: relative;
  aspect-ratio: 4 / 4.4;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(500px 300px at 30% 20%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(150deg, var(--green-400), var(--green-700));
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.about-badge strong { color: var(--green-700); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.about-badge span { color: var(--ink); font-family: var(--font-head); font-size: 1.15rem; }

.about-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 20px; }
.about-copy p { margin-bottom: 16px; font-size: 1.05rem; }
.about-list { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.about-list li { position: relative; padding-left: 30px; color: var(--body); }
.about-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #fff; background: var(--green-600);
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: .72rem; font-weight: 800;
}

/* ================= STEPS ================= */
.steps .step { text-align: center; padding: 28px 22px; }
.step-num {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 600;
  color: #fff; background: var(--green-600);
  border-radius: 50%; margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(31,138,76,.3);
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--body); }

/* ================= TESTIMONIALS ================= */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.stars { color: #f4b400; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial blockquote { font-size: 1.05rem; color: var(--ink); margin-bottom: 20px; line-height: 1.55; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
}
.testimonial figcaption strong { display: block; color: var(--ink); }
.testimonial figcaption small { color: var(--muted); }

/* ================= CTA FINAL ================= */
.cta-final {
  background:
    radial-gradient(700px 340px at 15% 0%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  padding: 84px 0;
  text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-final h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-final p { color: rgba(255,255,255,.9); font-size: 1.14rem; margin-bottom: 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-micro { font-size: .92rem; color: rgba(255,255,255,.75); margin-top: 22px; margin-bottom: 0; }

/* ================= FOOTER ================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { max-width: 320px; font-size: .96rem; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-weight: 700; font-size: .96rem; margin-bottom: 16px; }
.footer-col a { display: block; margin-bottom: 10px; font-size: .94rem; transition: color .15s; }
.footer-col a:hover { color: var(--green-400); }

.footer-bottom { padding-top: 28px; }
.disclaimer { font-size: .82rem; color: rgba(255,255,255,.55); max-width: 780px; margin-bottom: 14px; }
.copyright { font-size: .86rem; color: rgba(255,255,255,.6); }

/* ================= RESPONSIVE ================= */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 340px; order: -1; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { max-width: 420px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch;
    gap: 4px; padding: 16px 24px 24px;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav a.btn { justify-content: center; margin-top: 8px; border: 2px solid transparent; }
  .nav-toggle { display: flex; }

  .trust-inner { grid-template-columns: 1fr 1fr; gap: 24px 10px; }
  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-actions .btn { flex: 1; }
}

/* ================= LEGAL PAGES ================= */
.legal-entity { font-size: .84rem; color: rgba(255,255,255,.72); margin-bottom: 14px; }
.legal-entity strong { color: #fff; }

.legal-hero {
  background: linear-gradient(180deg, var(--green-50), #fff);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 40px;
}
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal-hero p { color: var(--muted); font-size: .96rem; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; color: var(--green-700); font-weight: 600; margin-bottom: 20px; font-size: .94rem; }

.legal-body { padding: 56px 0 80px; }
.legal-body .container { max-width: 800px; }
.legal-body h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.legal-body p, .legal-body li { color: var(--body); font-size: 1.02rem; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; margin-bottom: 12px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--green-600); text-decoration: underline; }
.legal-note {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-left: 4px solid var(--green-600);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: .96rem;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card-float, .hero-blob { animation: none; }
  html { scroll-behavior: auto; }
}
