/* =========================================================
   PEDE PRAÇAÍ — estilos
   Paleta extraída da embalagem: roxo açaí, creme, verde,
   amarelo e laranja/vermelho.
========================================================= */

:root {
  --roxo:        #4B2A75;
  --roxo-claro:  #6B3FA0;
  --roxo-escuro: #2E1A47;
  --creme:       #F3E7CD;
  --creme-claro: #FBF5E8;
  --verde:       #62C06E;
  --amarelo:     #FFC629;
  --laranja:     #EE4B2B;

  --texto:       #2E1A47;
  --texto-claro: #ffffff;

  --radius:      22px;
  --radius-sm:   14px;
  --shadow:      0 14px 40px rgba(46, 26, 71, .18);
  --shadow-sm:   0 6px 20px rgba(46, 26, 71, .12);
  --max:         1160px;
  --font-title:  'Fredoka', system-ui, sans-serif;
  --font-body:   'Nunito', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--creme-claro);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-title); font-weight: 600; font-size: 1.05rem;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  border: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--amarelo); color: var(--roxo-escuro); box-shadow: 0 8px 22px rgba(255,198,41,.4); }
.btn--primary:hover { box-shadow: 0 12px 28px rgba(255,198,41,.55); }
.btn--ghost { background: transparent; color: var(--texto-claro); border: 2px solid rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--wpp { background: #25D366; color: #fff; font-size: 1.15rem; padding: 16px 34px; box-shadow: 0 10px 26px rgba(37,211,102,.45); }

/* ---------- Skip link (acessibilidade) ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--amarelo); color: var(--roxo-escuro);
  font-family: var(--font-title); font-weight: 600;
  padding: 10px 18px; border-radius: 0 0 12px 12px; transition: top .2s ease;
}
.skip-link:focus { top: 0; outline: 3px solid var(--roxo); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(75, 42, 117, .0);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 14px 0;
}
.header.is-scrolled { background: var(--roxo); box-shadow: 0 4px 20px rgba(0,0,0,.15); padding: 8px 0; }
.header__inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; }
.logo__img { height: 52px; width: auto; }
.header.is-scrolled .logo__img { height: 44px; }
.logo__img--footer { height: 48px; margin-bottom: 4px; }

.nav { display: flex; align-items: center; gap: 20px; }
.nav__link {
  font-family: var(--font-title); font-weight: 500; color: #fff;
  font-size: 1rem; position: relative; transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 3px; width: 0;
  background: var(--amarelo); border-radius: 3px; transition: width .25s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
  background: var(--amarelo); color: var(--roxo-escuro);
  padding: 9px 20px; border-radius: 999px;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { transform: translateY(-2px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.nav__toggle span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: .3s; }

/* ---------- Padrão de fundo (folhas/bolinhas) ---------- */
.hero__pattern {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, var(--amarelo) 0 6px, transparent 7px),
    radial-gradient(circle at 22% 70%, var(--verde) 0 7px, transparent 8px),
    radial-gradient(circle at 82% 30%, var(--laranja) 0 6px, transparent 7px),
    radial-gradient(circle at 90% 78%, var(--amarelo) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 12%, var(--verde) 0 5px, transparent 6px);
  background-repeat: no-repeat;
}
.hero__pattern--soft { opacity: .25; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--roxo);
  padding: 130px 0 90px; overflow: hidden;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(107,63,160,.6), transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(46,26,71,.5), transparent 45%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
.hero__content { color: #fff; }
.badge-inline {
  display: inline-block; background: rgba(255,255,255,.15); color: #fff;
  padding: 7px 16px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  margin-bottom: 18px; backdrop-filter: blur(4px);
}
.hero__title {
  font-family: var(--font-title); font-weight: 700; line-height: 1.05;
  font-size: clamp(2.3rem, 5.5vw, 4rem); margin-bottom: 18px;
}
.hero__title span { color: var(--amarelo); }
.hero__text { font-size: 1.15rem; max-width: 480px; margin-bottom: 28px; color: rgba(255,255,255,.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__seals { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 700; font-size: .95rem; }
.hero__seals li { background: rgba(255,255,255,.1); padding: 8px 14px; border-radius: 12px; }

.hero__media { display: flex; justify-content: center; }
.hero__product {
  position: relative; width: min(380px, 80%); aspect-ratio: 1;
  display: grid; place-items: center;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.35));
  animation: float 5s ease-in-out infinite;
}
.hero__product img { width: 100%; height: 100%; object-fit: contain; }
.hero__product-fallback {
  display: none; font-family: var(--font-title); font-weight: 700;
  font-size: 3rem; text-align: center; color: #fff; line-height: 1.1;
  background: linear-gradient(180deg, var(--creme), var(--roxo-claro));
  width: 100%; aspect-ratio: 1; border-radius: 30px; place-items: center;
}
.hero__product.is-placeholder .hero__product-fallback { display: grid; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

.hero__wave {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 70px; z-index: 2;
  background: var(--creme-claro);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 70' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C300,90 600,-10 900,30 C1050,50 1150,45 1200,35 L1200,70 L0,70 Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 70' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C300,90 600,-10 900,30 C1050,50 1150,45 1200,35 L1200,70 L0,70 Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
}

/* ---------- Seções genéricas ---------- */
.section { padding: 80px 0; position: relative; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section__title {
  font-family: var(--font-title); font-weight: 700; color: var(--roxo);
  font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.1;
}
.section__title span { color: var(--laranja); }
.section__title--light { color: #fff; }
.section__title--light span { color: var(--amarelo); }
.section__sub { color: var(--roxo-claro); font-size: 1.1rem; margin-top: 8px; font-weight: 600; }

/* ---------- Sobre ---------- */
.sobre { background: var(--creme-claro); }
.sobre__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.sobre__content .section__title { text-align: left; margin-bottom: 18px; }
.sobre__content p { margin-bottom: 16px; font-size: 1.08rem; }
.sobre__content .btn { margin-top: 10px; }
.prova { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.prova__item { background: linear-gradient(160deg, var(--roxo-claro), var(--roxo)); color: #fff; border-radius: var(--radius-sm); padding: 20px; }
.prova__item strong { display: block; font-family: var(--font-title); color: var(--amarelo); font-size: 1.05rem; margin-bottom: 6px; }
.prova__item span { font-size: .92rem; color: rgba(255,255,255,.9); line-height: 1.4; }

/* ---------- Produtos ---------- */
.produtos { background: var(--creme); }

/* ---- Linhas de produto (Premium / Zero) ---- */
.linha-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.linha {
  position: relative; border-radius: var(--radius); padding: 34px 30px 30px;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden; display: flex; flex-direction: column;
}
.linha:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.linha__badge {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-title); font-weight: 600; font-size: .85rem;
  padding: 6px 16px; border-radius: 999px;
}
.linha__media { aspect-ratio: 4 / 3; display: grid; place-items: center; margin-bottom: 18px; border-radius: 16px; overflow: hidden; background: rgba(0,0,0,.06); }
.linha__media img { width: 100%; height: 100%; object-fit: cover; }
.linha__emoji { font-size: 5rem; }
.linha__title { font-family: var(--font-title); font-weight: 700; font-size: 1.9rem; margin-bottom: 12px; line-height: 1.05; }
.linha__text { margin-bottom: 20px; font-size: 1.05rem; }
.linha__sizes { margin-top: auto; }
.linha__sizes-label { display: block; font-family: var(--font-title); font-weight: 600; font-size: .85rem; opacity: .7; margin-bottom: 8px; }
.linha__specs { display: flex; flex-wrap: wrap; gap: 10px; }
.linha__specs span { font-family: var(--font-title); font-weight: 600; font-size: .95rem; padding: 8px 16px; border-radius: 999px; }

/* Premium = roxo */
.linha--premium { background: linear-gradient(160deg, var(--roxo-claro), var(--roxo)); color: #fff; }
.linha--premium .linha__title { color: #fff; }
.linha--premium .linha__title span { color: var(--amarelo); }
.linha--premium .linha__text { color: rgba(255,255,255,.9); }
.linha--premium .linha__badge { background: var(--amarelo); color: var(--roxo-escuro); }
.linha--premium .linha__specs span { background: rgba(255,255,255,.15); color: #fff; }

/* Zero = claro/creme */
.linha--zero { background: var(--creme-claro); color: var(--texto); border: 2px solid #e6d7b8; }
.linha--zero .linha__title { color: var(--roxo); }
.linha--zero .linha__title span { color: var(--verde); }
.linha--zero .linha__text { color: #5a4a6b; }
.linha--zero .linha__badge { background: var(--verde); color: var(--roxo-escuro); }
.linha--zero .linha__specs span { background: #efe4c9; color: var(--roxo); }

/* ---------- Vitrine / PDV ---------- */
.vitrine { background: var(--creme-claro); }
.vitrine__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.vitrine__media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.vitrine__content .section__title { text-align: left; margin-bottom: 16px; }
.vitrine__content p { font-size: 1.08rem; margin-bottom: 18px; }
.vitrine__list { margin-bottom: 24px; }
.vitrine__list li { padding: 9px 0; font-size: 1.02rem; font-weight: 600; border-bottom: 1px dashed #d9c9a8; }

/* ---------- Diferenciais ---------- */
.diferenciais { background: var(--roxo); }
.diferenciais__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  background: rgba(255,255,255,.08); border-radius: var(--radius); padding: 30px 22px;
  text-align: center; color: #fff; transition: transform .25s, background .25s;
  border: 1px solid rgba(255,255,255,.1);
}
.feature:hover { transform: translateY(-6px); background: rgba(255,255,255,.14); }
.feature__icon { font-size: 2.6rem; margin-bottom: 14px; }
.feature h3 { font-family: var(--font-title); font-weight: 600; font-size: 1.25rem; margin-bottom: 8px; color: var(--amarelo); }
.feature p { color: rgba(255,255,255,.85); font-size: .98rem; }

/* ---------- Onde encontrar ---------- */
.onde { background: var(--creme-claro); }
.onde__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.onde__content .section__title { text-align: left; margin-bottom: 16px; }
.onde__content p { font-size: 1.08rem; margin-bottom: 20px; }
.onde__list { margin-bottom: 26px; }
.onde__list li { padding: 10px 0; border-bottom: 1px dashed #d9c9a8; font-size: 1.02rem; }

/* Painel de cobertura nacional */
.cobertura {
  background: linear-gradient(160deg, var(--roxo-claro), var(--roxo));
  color: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); text-align: center;
}
.cobertura__flag { display: inline-block; margin-bottom: 12px; box-shadow: 0 6px 16px rgba(0,0,0,.25); border-radius: 6px; }
.cobertura__title { font-family: var(--font-title); font-weight: 700; font-size: 1.6rem; margin-bottom: 22px; }
.cobertura__list { display: flex; flex-direction: column; gap: 16px; text-align: left; margin-bottom: 24px; }
.cobertura__list li { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 16px; }
.cobertura__list li strong { color: var(--amarelo); font-family: var(--font-title); font-weight: 600; }
.cobertura__list div { font-size: .98rem; color: rgba(255,255,255,.9); line-height: 1.45; }
.cobertura__pin { font-size: 1.5rem; line-height: 1.2; flex: 0 0 auto; }
.cobertura__badge {
  display: inline-block; background: var(--amarelo); color: var(--roxo-escuro);
  font-family: var(--font-title); font-weight: 600; font-size: 1rem;
  padding: 12px 22px; border-radius: 999px;
}

/* ---------- Contato ---------- */
.contato { background: var(--roxo-escuro); overflow: hidden; }
.contato__inner { position: relative; z-index: 2; text-align: center; }
.contato__title {
  font-family: var(--font-title); font-weight: 700; color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; margin-bottom: 14px;
}
.contato__title span { color: var(--amarelo); }
.contato__text { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 520px; margin: 0 auto 30px; }
/* ---- Montador de pedido ---- */
.order {
  max-width: 560px; margin: 34px auto 0; text-align: left;
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); color: var(--texto);
}
/* Dados do cliente */
.order__fields { display: grid; grid-template-columns: 1fr 120px; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field--city { grid-column: 1; }
.field--uf { grid-column: 2; }
.field__label { font-family: var(--font-title); font-weight: 500; font-size: .95rem; color: var(--roxo); }
.field__label small { font-weight: 400; opacity: .7; }
.req { color: var(--laranja); }
.field__input {
  font-family: var(--font-body); font-size: 1rem; padding: 12px 14px; width: 100%;
  border: 2px solid #e6d7b8; border-radius: 12px; background: var(--creme-claro);
  color: var(--texto); transition: border-color .18s ease, box-shadow .18s ease;
}
.field__input::placeholder { color: #8a7c62; }
.field__input:focus { outline: none; border-color: var(--roxo-claro); box-shadow: 0 0 0 3px rgba(107,63,160,.15); }
.field__input.is-invalid { border-color: var(--laranja); box-shadow: 0 0 0 3px rgba(238,75,43,.18); }
.field__select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234B2A75' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 14px;
}

.order__sep { border: none; border-top: 2px dashed #e6d7b8; margin: 22px 0; }

.order__row { margin-bottom: 22px; }
.order__label { display: block; font-family: var(--font-title); font-weight: 600; color: var(--roxo); margin-bottom: 10px; font-size: 1.05rem; }
.order__opts { display: flex; flex-wrap: wrap; gap: 10px; }
.opt {
  font-family: var(--font-title); font-weight: 500; font-size: 1rem;
  padding: 11px 20px; border-radius: 999px; cursor: pointer;
  background: var(--creme); color: var(--roxo); border: 2px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.opt:hover { border-color: var(--roxo-claro); }
.opt.is-active { background: var(--roxo); color: #fff; border-color: var(--roxo); }

.qty { display: inline-flex; align-items: center; gap: 4px; background: var(--creme); border-radius: 999px; padding: 4px; }
.qty__btn {
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  font-size: 1.4rem; font-weight: 700; background: #fff; color: var(--roxo);
  display: grid; place-items: center; transition: background .15s;
}
.qty__btn:hover { background: var(--amarelo); }
.qty__input {
  width: 72px; text-align: center; border: none; background: transparent;
  font-family: var(--font-title); font-weight: 600; font-size: 1.2rem; color: var(--texto);
  -moz-appearance: textfield; appearance: textfield;
}
.qty__input::-webkit-outer-spin-button, .qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty__input:focus { outline: none; }
.qty:focus-within { box-shadow: 0 0 0 3px rgba(107,63,160,.30); }

.btn--add { width: 100%; justify-content: center; background: var(--amarelo); color: var(--roxo-escuro); margin-bottom: 8px; }
.btn--add:hover { background: #ffd24d; }

.order__cart { margin: 18px 0; border-top: 2px dashed #e6d7b8; padding-top: 16px; }
.order__cart-title { font-family: var(--font-title); font-weight: 600; color: var(--roxo); margin-bottom: 10px; }
.order__list { display: flex; flex-direction: column; gap: 8px; }
.order__list li { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--creme-claro); padding: 10px 14px; border-radius: 12px; font-weight: 700; }
.order__empty { color: var(--roxo-claro); font-weight: 400 !important; font-style: italic; justify-content: center !important; }
.order__item-remove { background: none; border: none; color: #c0341c; cursor: pointer; font-size: 1.35rem; font-weight: 700; line-height: 1; min-width: 40px; min-height: 40px; display: grid; place-items: center; padding: 0; flex: 0 0 auto; border-radius: 8px; }
.order__item-remove:hover { color: #fff; background: #c0341c; }

.order__send { width: 100%; justify-content: center; }
.order__hint { margin-top: 12px; text-align: center; color: #c0341c; font-weight: 700; min-height: 1.1em; }

.contato__email { color: rgba(255,255,255,.85); margin-top: 22px; font-size: 1.02rem; }
.contato__email a { color: var(--amarelo); font-weight: 700; }
.contato__social { margin-top: 20px; display: flex; gap: 26px; justify-content: center; }
.contato__social a { color: #fff; font-weight: 700; font-family: var(--font-title); display: inline-flex; align-items: center; gap: 8px; padding: 8px 6px; }
.contato__social a:hover { color: var(--amarelo); }

/* ---------- Footer ---------- */
.footer { background: #1f1233; color: rgba(255,255,255,.75); padding: 40px 0; text-align: center; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer .logo__text { color: var(--amarelo); }
.footer a { color: var(--amarelo); }
.footer__note { font-size: .85rem; opacity: .7; line-height: 1.5; }
.footer__address { font-style: normal; }
.footer__address a { white-space: nowrap; }

/* ---------- WhatsApp flutuante ---------- */
.wpp-float {
  position: fixed; right: max(20px, env(safe-area-inset-right, 0px)); bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.5); transition: transform .2s;
  animation: pulse 2.5s infinite;
}
.wpp-float:hover { transform: scale(1.1); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

/* ---------- Animação de entrada ---------- */
/* Só esconde para animar quando há JS — sem JS, conteúdo aparece normalmente */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Como funciona ---------- */
.como { background: var(--creme-claro); }
.passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; counter-reset: passo; }
.passo { background: #fff; border-radius: var(--radius); padding: 34px 26px; box-shadow: var(--shadow-sm); }
.passo__num { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--amarelo); color: var(--roxo-escuro); font-family: var(--font-title); font-weight: 700; font-size: 1.4rem; margin-bottom: 16px; }
.passo h3 { font-family: var(--font-title); font-weight: 600; color: var(--roxo); font-size: 1.25rem; margin-bottom: 8px; }
.passo p { color: #5a4a6b; }
.como__cta { text-align: center; margin-top: 36px; }

/* ---------- FAQ ---------- */
.faq { background: var(--creme); }
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border-radius: var(--radius-sm); padding: 22px 26px; box-shadow: var(--shadow-sm); }
.faq__item h3 { font-family: var(--font-title); font-weight: 600; color: var(--roxo); font-size: 1.15rem; margin-bottom: 8px; }
.faq__item p { color: #5a4a6b; }

/* ---------- Reasseguramento do formulário ---------- */
.order__reassure { text-align: center; margin-top: 12px; color: var(--roxo-claro); font-size: .9rem; font-weight: 600; }

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 900px) {
  .hero__inner, .sobre__inner, .onde__inner, .vitrine__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__product { width: min(280px, 70%); }
  .produtos__grid { grid-template-columns: repeat(2, 1fr); }
  .linha-grid { grid-template-columns: 1fr; }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .passos { grid-template-columns: 1fr; }
  .sobre__media { max-width: 460px; margin: 0 auto; }

  .nav {
    position: fixed; top: 0; right: -100%; height: 100vh; height: 100dvh; width: 78%; max-width: 320px;
    background: var(--roxo); flex-direction: column; justify-content: center;
    gap: 14px; transition: right .35s ease, visibility .35s ease; box-shadow: -10px 0 30px rgba(0,0,0,.3);
    visibility: hidden;
  }
  .nav.is-open { right: 0; visibility: visible; }
  .nav__link { padding: 14px 24px; font-size: 1.15rem; width: 80%; text-align: center; border-radius: 999px; }
  .nav__link--cta { padding: 14px 28px; }
  .nav__toggle { display: flex; z-index: 101; }
  .nav.is-open ~ .nav__toggle span { background: #fff; }
}

@media (max-width: 540px) {
  .section { padding: 60px 0; }
  .produtos__grid, .diferenciais__grid { grid-template-columns: 1fr; }
  .order__fields { grid-template-columns: 1fr; }
  .order { padding: 22px; }
  .prova { grid-template-columns: 1fr; }
  .hero__seals { gap: 10px; }
  .hero__seals li { font-size: .85rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
