/* ============================================================
   Origem Verde — Mix de Frutas Tropicais Liofilizadas
   Design system: mobile-first, componentizado
   ============================================================ */

:root {
  --green-950: #12271A;
  --green-900: #1D4B2E;
  --green-700: #2F7A45;
  --green-500: #3F9D57;
  --green-100: #E7F4EA;
  --green-50:  #F5FAF4;

  --cream: #FFFBF2;
  --white: #FFFFFF;

  --coral: #F1663F;
  --coral-dark: #D6502C;
  --mango: #F5A623;
  --yellow: #FBC94C;

  --text-900: #16241A;
  --text-600: #4A5A4C;
  --text-400: #7C8A7E;

  --border: #E2ECE1;
  --shadow-sm: 0 2px 10px rgba(18, 39, 26, 0.06);
  --shadow-md: 0 10px 30px rgba(18, 39, 26, 0.10);
  --shadow-lg: 0 20px 50px rgba(18, 39, 26, 0.16);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--green-950);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 12px; color: var(--text-600); }

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--lg { padding: 16px 30px; font-size: 1.05rem; width: 100%; }
@media (min-width: 560px) { .btn--lg { width: auto; } }

.btn--sm { padding: 10px 18px; font-size: 0.9rem; }

/* ---------- Top bar & header ---------- */
.topbar {
  background: var(--green-950);
  color: var(--green-50);
  text-align: center;
  font-size: 0.8rem;
  padding: 8px 12px;
}
.topbar p { margin: 0; color: var(--green-50); }
.topbar__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mango);
  margin-right: 6px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.header__logo img { height: 36px; width: auto; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--tint { background: var(--green-50); }
.section--edu { background: var(--cream); }

.kicker {
  color: var(--coral-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.kicker--light { color: var(--yellow); }

.section__lead {
  max-width: 680px;
  font-size: 1.05rem;
}

.h2--light { color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 15% 10%, var(--green-100), var(--cream) 55%);
  padding: 40px 0 56px;
}
.hero__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}

.eyebrow {
  font-family: var(--font-head);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.hero__sub { font-size: 1.05rem; }

.hero__bullets {
  list-style: none;
  margin: 20px 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero__bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--text-900);
}
.hero__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-700);
  font-weight: 700;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--text-600);
}

.hero__media { position: relative; text-align: center; }
.hero__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}
.hero__badge {
  position: absolute;
  top: 10px;
  right: 6px;
  background: var(--white);
  color: var(--green-950);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.75rem;
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 20px; margin-top: 32px; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.card__icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }

.grid--fruits { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid--fruits { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .grid--fruits { grid-template-columns: repeat(4, 1fr); } }

.fruit-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.fruit-card__num {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-100);
  font-size: 1.4rem;
}
.fruit-card__icon { font-size: 2.2rem; display: block; margin: 6px 0 10px; }

.center-cta { text-align: center; margin-top: 36px; }
.micro-trust { font-size: 0.8rem; color: var(--text-400); margin-top: 10px; }

/* ---------- Compare (1 vs 7) ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  text-align: center;
}
.compare__side {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 16px;
}
.compare__side--highlight {
  background: var(--green-900);
  border-color: var(--green-900);
}
.compare__side--highlight p { color: var(--green-50); }
.compare__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--text-400);
}
.compare__side--highlight .compare__num { color: var(--yellow); }
.compare__x { font-size: 1.6rem; color: var(--text-400); font-weight: 700; }
.compare__note {
  text-align: center;
  margin-top: 18px;
  font-weight: 600;
  color: var(--green-700);
}

/* ---------- Gallery ---------- */
.gallery { margin-top: 32px; display: grid; gap: 24px; }
@media (min-width: 800px) { .gallery { grid-template-columns: 300px 1fr; align-items: start; } }

.gallery__video-wrap {
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #0c1f13;
}
.gallery__video-el {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #0c1f13;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 520px) and (max-width: 799px) { .gallery__thumbs { grid-template-columns: repeat(4, 1fr); } }
.gallery__thumbs img {
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 14px; max-width: 720px; }
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-weight: 500;
  color: var(--text-900);
}
.steps__num {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---------- How it works (liofilização) ---------- */
.how {
  display: grid;
  gap: 18px;
  margin: 36px 0 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .how { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .how { grid-template-columns: repeat(4, 1fr); } }
.how__step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.how__icon { font-size: 1.9rem; display: block; margin-bottom: 10px; }

.compare-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.compare-table h3 { margin-bottom: 18px; }
.compare-table__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  min-width: 560px;
  gap: 0;
}
.compare-table__col, .compare-table__row-label {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.compare-table__row-label { font-weight: 600; color: var(--text-900); }
.compare-table__col--head { font-family: var(--font-head); font-weight: 700; color: var(--green-950); border-bottom: 2px solid var(--border); }
.compare-table__col--highlight { background: var(--green-100); color: var(--green-950); font-weight: 600; }
.compare-table__ref { font-size: 0.78rem; color: var(--text-400); margin-top: 14px; }

/* ---------- Two column (diferenciais) ---------- */
.two-col {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 0.9fr 1.1fr; align-items: center; } }
.two-col__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-900);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 700;
}

/* ---------- Nutritional table ---------- */
.nutri-table {
  margin-top: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.nutri-table table { width: 100%; border-collapse: collapse; }
.nutri-table th, .nutri-table td {
  text-align: left;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.nutri-table thead th {
  background: var(--green-900);
  color: var(--white);
  font-family: var(--font-head);
}
.nutri-table__note { font-size: 0.85rem; color: var(--text-400); margin-top: 12px; }

/* ---------- Tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tags span {
  background: var(--white);
  border: 1px solid var(--green-500);
  color: var(--green-900);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.disclaimer-note { font-size: 0.8rem; color: var(--text-400); margin-top: 22px; }

/* ---------- Reviews / testimonials ---------- */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.reviews-summary__score { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--green-900); }
.stars { color: var(--mango); letter-spacing: 2px; }
.reviews-summary__count { font-size: 0.85rem; margin: 4px 0 0; }

.testimonials {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-top: 22px;
  padding-bottom: 6px;
}
.testimonial-card {
  flex: 0 0 82%;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 700px) { .testimonial-card { flex-basis: 45%; } }
@media (min-width: 1000px) { .testimonial-card { flex-basis: 31%; } }
.testimonial-card--photo { padding: 0 0 22px; overflow: hidden; }
.testimonial-card--photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}
.testimonial-card--photo .stars,
.testimonial-card--photo p,
.testimonial-card--photo .testimonial-card__name { padding-left: 22px; padding-right: 22px; }
.testimonial-card__name { display: block; margin-top: 12px; font-size: 0.85rem; font-weight: 600; color: var(--text-900); }
.testimonials__nav { display: flex; gap: 10px; justify-content: center; margin-top: 12px; }
.testimonials__nav button {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
}

/* ---------- Offer ---------- */
.section--offer { background: var(--green-950); color: var(--white); }
.section--offer p { color: var(--green-50); }

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 30px;
  display: grid;
  gap: 22px;
  box-shadow: var(--shadow-lg);
  align-items: center;
}
@media (min-width: 700px) { .offer-card { grid-template-columns: 220px 1fr; } }
.offer-card img { border-radius: var(--radius-md); margin: 0 auto; }
.offer-card__info h3 { color: var(--green-950); }
.offer-card__info p { color: var(--text-600); }
.offer-card__price { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 10px 0; }
.offer-card__old { text-decoration: line-through; color: var(--text-400); font-size: 0.95rem; }
.offer-card__new { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: var(--green-950); }
.offer-card__off { background: var(--coral); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.offer-card__install { font-size: 0.9rem; }
.offer-card__sizes { font-size: 0.85rem; }
.offer-card__secure { font-size: 0.78rem; margin-top: 10px; color: var(--text-400); }

.offer-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: center;
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--green-50);
}

/* ---------- FAQ / accordion ---------- */
.accordion { margin-top: 30px; display: grid; gap: 12px; max-width: 800px; }
.accordion__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-900);
}
.accordion__trigger span { color: var(--coral-dark); font-size: 1.3rem; transition: transform .2s ease; }
.accordion__item.is-open .accordion__trigger span { transform: rotate(45deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 20px;
}
.accordion__item.is-open .accordion__panel { max-height: 300px; padding-bottom: 18px; }

/* ---------- Final CTA ---------- */
.section--final {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  text-align: center;
}
.final__lead { max-width: 560px; margin: 0 auto 22px; color: var(--green-50); }
.final__note { font-size: 0.85rem; color: var(--green-50); margin-top: 12px; }

.countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 20px 0 6px;
}
.countdown div {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  min-width: 64px;
}
.countdown span { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; }
.countdown small { font-size: 0.7rem; color: var(--green-50); }

/* ---------- Footer ---------- */
.footer {
  background: var(--green-950);
  color: var(--green-50);
  padding: 40px 0 100px;
  font-size: 0.85rem;
}
.footer a { text-decoration: underline; }
.footer__legal { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 14px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 50;
  transform: translateY(120%);
  transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__info { display: flex; flex-direction: column; line-height: 1.1; }
.sticky-cta__info strong { font-family: var(--font-head); font-size: 1.1rem; color: var(--green-950); }
.sticky-cta__info span { font-size: 0.72rem; color: var(--text-400); }

@media (min-width: 900px) { .sticky-cta { display: none; } }
