/* ==========================================================================
   Organizador de Alimentos Acrílico — Landing Page (redesign)
   ========================================================================== */

@font-face {
  font-family: Poppins;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/poppins_n4.0ba78fa5af9b0e1a374041b3ceaadf0a43b41362.woff2") format("woff2"),
       url("../fonts/poppins_n4.214741a72ff2596839fc9760ee7a770386cf16ca.woff") format("woff");
}
@font-face {
  font-family: Poppins;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/poppins_n6.aa29d4918bc243723d56b59572e18228ed0786f6.woff2") format("woff2"),
       url("../fonts/poppins_n6.5f815d845fe073750885d5b7e619ee00e8111208.woff") format("woff");
}
@font-face {
  font-family: Poppins;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/poppins_n7.56758dcf284489feb014a026f3727f2f20a54626.woff2") format("woff2"),
       url("../fonts/poppins_n7.f34f55d9b3d3205d2cd6f64955ff4b36f0cfd8da.woff") format("woff");
}

:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-alt: #fff6ea;
  --text: #241f1a;
  --text-muted: #6f6a63;
  --border: #ece5da;

  --accent: #fc9c14;
  --accent-dark: #d67e00;
  --accent-soft: rgba(252, 156, 20, .12);

  --price: #0fb930;
  --price-dark: #0a8f24;
  --price-compare: #a19c93;

  --danger: #e2350c;

  --cta-1: #ff7a3d;
  --cta-2: #e2350c;
  --cta-shadow: rgba(226, 53, 12, .5);
  --cta-shadow-strong: rgba(226, 53, 12, .78);

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

  --shadow-soft: 0 16px 40px -20px rgba(36, 31, 26, .28);
  --shadow-card: 0 10px 24px -16px rgba(36, 31, 26, .22);

  --container: 1180px;
  --font: Poppins, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#avaliacoes { scroll-margin-top: 76px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Top strip ---------- */
.top-strip {
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 9px 12px;
  letter-spacing: .2px;
}
.top-strip strong { color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  flex: none;
}
.site-header__logo svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.site-header__trust {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.site-header__trust svg { width: 16px; height: 16px; flex: none; color: var(--price); }
@media (min-width: 560px) {
  .site-header__trust { display: flex; }
}
.site-header__cta {
  display: inline-flex;
  flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn--buy {
  background: linear-gradient(180deg, var(--cta-1), var(--cta-2));
  color: #fff;
  padding: 17px 30px;
  font-size: 17px;
  box-shadow: 0 14px 28px -12px var(--cta-shadow);
}
.btn--buy:hover { filter: brightness(1.05); }
.btn--buy svg { width: 20px; height: 20px; }

.btn--buy.btn--sm {
  padding: 12px 22px;
  font-size: 14.5px;
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 10px 18px;
  font-size: 14px;
}

.btn--block { width: 100%; }

.btn-pulse { animation: btnPulse 2.4s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 14px 28px -12px var(--cta-shadow); }
  50% { box-shadow: 0 14px 34px -8px var(--cta-shadow-strong); }
}

/* ---------- Hero ---------- */
.hero {
  padding: 34px 0 48px;
}
.hero__grid {
  display: grid;
  gap: 34px;
}
@media (min-width: 940px) {
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: flex-start;
    gap: 56px;
  }
}

/* Gallery */
.gallery__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 1;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .25s ease;
}
.gallery__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(214, 126, 0, .6);
  z-index: 2;
}
.gallery__badge--discount {
  left: auto;
  right: 16px;
  background: var(--danger);
  box-shadow: 0 6px 14px -6px var(--cta-shadow);
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.gallery__thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--surface);
  padding: 0;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--accent); }

/* Buy box */
.buybox__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--price-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.buybox__eyebrow svg { width: 15px; height: 15px; }

.buybox h1 {
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.22;
  margin: 0 0 12px;
  font-weight: 700;
}

.buybox__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.buybox__stars { display: inline-flex; align-items: center; gap: 5px; color: #f4a52a; text-decoration: none; }
.buybox__stars svg { width: 16px; height: 16px; }
.buybox__stars strong { color: var(--text); font-weight: 700; }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.price-compare {
  color: var(--price-compare);
  text-decoration: line-through;
  font-size: 16px;
}
.price-main {
  font-size: clamp(30px, 4.4vw, 40px);
  font-weight: 700;
  color: var(--price-dark);
}
.price-discount {
  background: var(--danger);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-installments { margin: 6px 0 0; font-size: 14.5px; color: var(--text-muted); }
.price-installments b { color: var(--text); }
.price-pix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--price-dark);
}
.price-pix svg { width: 15px; height: 15px; }

.buybox__highlights {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.buybox__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.buybox__highlights svg {
  width: 19px; height: 19px; flex: none; margin-top: 1px;
  color: var(--price);
}

.buybox__cta-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 10px 0 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.trust-row__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-row__item svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

.payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.payment-icons img { height: 22px; width: auto; }

/* ---------- Section shells ---------- */
.section { padding: 56px 0; }
.section--alt { background: var(--surface-alt); }
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 38px;
}
.section__eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  margin: 0 0 10px;
}
.section__subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

/* Benefits */
.benefits {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .benefits { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.benefit-card__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card__icon svg { width: 26px; height: 26px; }
.benefit-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 700;
}
.benefit-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* Showcase (image + text split) */
.showcase {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 860px) {
  .showcase { grid-template-columns: 1fr 1fr; gap: 56px; }
  .showcase--reverse .showcase__media { order: 2; }
}
.showcase__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}
.showcase__kicker {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin: 0 0 10px;
}
.showcase h2 {
  font-size: clamp(22px, 3.2vw, 28px);
  margin: 0 0 14px;
  font-weight: 700;
}
.showcase p {
  color: var(--text-muted);
  font-size: 15.5px;
  margin: 0 0 20px;
}

/* Specs */
.specs-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.specs-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.specs-list li span:first-child { color: var(--text-muted); }
.specs-list li span:last-child { font-weight: 600; text-align: right; }

/* Guarantee */
.guarantee {
  background: linear-gradient(135deg, #1f2041, #2c2d5c);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.guarantee__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: rgba(252, 156, 20, .18);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.guarantee__icon svg { width: 34px; height: 34px; }
.guarantee h2 {
  font-size: clamp(22px, 3.2vw, 28px);
  margin: 0 0 12px;
}
.guarantee p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255,255,255,.82);
  font-size: 15.5px;
}

/* Icon strip */
.icon-strip {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 700px) { .icon-strip { grid-template-columns: repeat(4, 1fr); } }
.icon-strip__item { padding: 8px; }
.icon-strip__item svg {
  width: 34px; height: 34px;
  color: var(--accent-dark);
  margin: 0 auto 12px;
}
.icon-strip__item h4 { margin: 0 0 6px; font-size: 15px; }
.icon-strip__item p { margin: 0; color: var(--text-muted); font-size: 13.5px; }

/* Reviews */
.reviews-score { color: #f4a52a; font-weight: 700; letter-spacing: 1px; }
.reviews-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex: none;
  font-size: 15px;
}
.review-card__head strong { display: block; font-size: 14.5px; }
.review-card__stars { color: #f4a52a; font-size: 12.5px; letter-spacing: 1px; }
.review-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}
.review-card__verified {
  font-size: 12px;
  font-weight: 600;
  color: var(--price-dark);
}

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.faq-item__q svg {
  width: 18px; height: 18px; flex: none;
  transition: transform .2s ease;
  color: var(--accent-dark);
}
.faq-item.is-open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item__a p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* Final CTA */
.final-cta {
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.final-cta h2 {
  font-size: clamp(22px, 3.4vw, 30px);
  margin: 0 0 12px;
}
.final-cta p { color: var(--text-muted); margin: 0 0 26px; font-size: 15.5px; }

/* Seals */
.seals {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.seals img { height: 32px; width: auto; opacity: .9; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1f2041;
  color: rgba(255,255,255,.8);
  padding: 48px 0 110px;
  font-size: 14px;
}
@media (min-width: 640px) { .site-footer { padding-bottom: 48px; } }
.site-footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.site-footer__logo svg { width: 24px; height: 24px; color: var(--accent); flex: none; }
.site-footer h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { text-decoration: none; color: rgba(255,255,255,.75); }
.site-footer a:hover { color: #fff; }
.site-footer p { margin: 0 0 8px; color: rgba(255,255,255,.75); }
.site-footer__bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* ---------- Sticky mobile bar ---------- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -12px 24px -18px rgba(0,0,0,.3);
  transform: translateY(110%);
  transition: transform .25s ease;
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar__price { line-height: 1.2; }
.sticky-bar__price small { display: block; color: var(--price-compare); text-decoration: line-through; font-size: 12px; }
.sticky-bar__price strong { font-size: 19px; color: var(--price-dark); }
@media (min-width: 720px) { .sticky-bar { display: none; } }

/* Fade-in helper */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
