/* =========================================================================
   HEBROM SALGADOS — Design System
   Autor: Reconstrução premium (institucional + landing /atacado)
   Identidade real Hebrom: coral #EF4135 + navy | Barlow Semi Condensed + Barlow
   ========================================================================= */

/* ----------------------------- TOKENS ----------------------------------- */
:root {
  /* Cores base — identidade real Hebrom (coral + navy) */
  --espresso: #12294A;      /* navy escuro (fundo escuro) */
  --espresso-2: #1B3D6D;    /* navy secundário */
  --cream: #FBFBFD;         /* fundo claro (quase branco) */
  --cream-2: #F3F2F7;       /* lilás-cinza claro (seções alternadas) */
  --ink: #1B2A3F;           /* texto principal (navy-tinted) */
  --muted: #5A6577;         /* texto secundário */
  --line: #E6E7EE;          /* bordas suaves */

  /* Marca — coral principal + navy */
  --gold: #EF4135;          /* CORAL — cor primária da marca */
  --gold-2: #F4594B;        /* coral claro */
  --gold-deep: #D12E1F;     /* coral escuro (hover/detalhes) */
  --navy: #1B3D6D;          /* azul-marinho da logo */
  --navy-2: #215A9E;        /* azul secundário */
  --paprika: #1B3D6D;       /* navy (botão de contraste sobre coral) */
  --paprika-2: #12294A;
  --leaf: #5FB130;          /* verde da marca (checks/frescor) */

  /* Gradientes */
  --grad-gold: linear-gradient(135deg, #F4594B 0%, #EF4135 55%, #D12E1F 100%);
  --grad-dark: linear-gradient(160deg, #1B3D6D 0%, #10233F 100%);
  --grad-cta:  linear-gradient(135deg, #23508C 0%, #1B3D6D 100%);

  /* Tipografia — grotesca condensada (estilo DIN) + script */
  --font-display: "Barlow Semi Condensed", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --font-script: "Kaushan Script", cursive;

  /* Espaçamento / raio / sombra */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 18px rgba(23,19,15,.08);
  --shadow-md: 0 18px 48px rgba(23,19,15,.14);
  --shadow-gold: 0 14px 34px rgba(239,65,53,.32);
  --shadow-cta: 0 14px 34px rgba(27,61,109,.32);

  --maxw: 1180px;
  --section-y: clamp(64px, 9vw, 128px);
}

/* ----------------------------- RESET ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
/* Trava anti-estouro horizontal no mobile: nenhum item de grid/flex pode
   empurrar a página além da largura da tela. */
*, *::before, *::after { min-width: 0; }
img, svg, video { max-width: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; color: var(--espresso); letter-spacing: -.02em; }

/* ----------------------------- LAYOUT ----------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: var(--section-y); }
.section--dark { background: var(--grad-dark); color: #EFE6D6; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--cream2 { background: var(--cream-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.section--dark .eyebrow { color: var(--gold-2); }

.h-xl { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
.h-lg { font-size: clamp(2rem, 4vw, 3rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 62ch; }
.section--dark .lead { color: #D9CDBB; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.center .eyebrow { justify-content: center; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; }

/* ----------------------------- BOTÕES ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 16px 30px; border-radius: 100px; cursor: pointer; border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--grad-gold); color: #fff; box-shadow: var(--shadow-gold); }
.btn--cta  { background: var(--grad-cta); color: #fff; box-shadow: var(--shadow-cta); }
.btn--wa   { background: #25D366; color: #06331b; box-shadow: 0 14px 34px rgba(37,211,102,.35); }
.btn--wa:hover { background: #1FBE5B; }
.btn--ghost { background: transparent; color: var(--espresso); border: 1.5px solid var(--line); }
.section--dark .btn--ghost, .hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero .btn--ghost:hover { color: var(--gold-2); border-color: var(--gold-2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.section--dark .btn--ghost:hover { color: var(--gold-2); }
.btn--lg { padding: 19px 38px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ----------------------------- HEADER ----------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(251,246,236,.82);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--espresso); letter-spacing: -.02em; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; background: var(--grad-gold);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.15rem;
  box-shadow: var(--shadow-gold);
}
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .22em; color: var(--muted); text-transform: uppercase; margin-top: 2px; }
.brand__logo { height: 46px; width: auto; display: block; }
.footer .brand__logo { height: 44px; filter: brightness(0) invert(1); opacity: .95; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); transition: color .15s; }
.nav__links a:hover { color: var(--gold); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--espresso); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ----------------------------- HERO ------------------------------------- */
.hero { position: relative; background: var(--grad-dark); color: #F3EADB; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(227,155,43,.20), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(192,68,46,.14), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-block: clamp(60px, 9vw, 120px); }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
.hero h1 .accent { color: var(--gold-2); }
.hero .lead { color: #D9CDBB; margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px 34px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__badge { display: flex; align-items: center; gap: 12px; }
.hero__badge b { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-2); display: block; line-height: 1; }
.hero__badge span { font-size: .86rem; color: #C9BCA9; }

/* Media / imagem placeholder elegante */
.media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    linear-gradient(160deg, rgba(227,155,43,.16), rgba(192,68,46,.10)),
    var(--espresso-2);
  border: 1px solid rgba(255,255,255,.10);
  min-height: 320px; display: grid; place-items: center; text-align: center;
  aspect-ratio: 4/5;
}
.media--wide { aspect-ratio: 16/10; }
.media--tall { aspect-ratio: 3/4; }
.media__ph { color: rgba(255,255,255,.6); padding: 24px; }
.media__ph svg { width: 46px; height: 46px; margin: 0 auto 14px; opacity: .7; }
.media__ph small { display: block; font-size: .78rem; letter-spacing: .04em; margin-top: 6px; color: rgba(255,255,255,.45); }
.media.on-cream { background: linear-gradient(160deg, var(--cream-2), #EADFCB); border-color: var(--line); }
.media.on-cream .media__ph { color: var(--gold-deep); }
.media.on-cream .media__ph small { color: var(--muted); }
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Selo flutuante sobre imagem */
.media__seal {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  background: rgba(23,19,15,.78); backdrop-filter: blur(6px);
  color: #fff; padding: 12px 16px; border-radius: 14px; display: flex; gap: 10px; align-items: center;
  box-shadow: var(--shadow-md);
}
.media__seal svg { width: 26px; height: 26px; color: var(--gold-2); flex: none; }
.media__seal b { font-family: var(--font-display); font-size: .95rem; display: block; }
.media__seal span { font-size: .74rem; color: #C9BCA9; }

/* ----------------------------- MARQUEE (logos/clientes) ----------------- */
.strip { background: var(--espresso); color: #C9BCA9; padding-block: 22px; overflow: hidden; }
.strip__label { text-align: center; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: #8B7E6C; margin-bottom: 14px; }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; align-items: center; }
.strip__row span { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: #E7D9C2; opacity: .85; }

/* ----------------------------- GRID CARDS ------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #E7CFA0; }
.section--dark .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.10); color: #E7D9C2; }
.section--dark .card h3 { color: #fff; }
.card__ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-gold); color: #fff; margin-bottom: 20px; box-shadow: var(--shadow-gold);
}
.card__ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.section--dark .card p { color: #C9BCA9; }

/* Numbered process */
.step { position: relative; padding-left: 4px; }
.step__num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .97rem; }
.section--dark .step p { color: #C9BCA9; }

/* ----------------------------- SPLIT ------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--rev .split__media { order: 2; }
.checklist { margin-top: 26px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; }
.checklist li svg { width: 22px; height: 22px; flex: none; color: var(--leaf); margin-top: 2px; }
.section--dark .checklist li svg { color: var(--gold-2); }

/* ----------------------------- PRODUTOS --------------------------------- */
.prod {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod__img { aspect-ratio: 4/3; background: linear-gradient(160deg, var(--cream-2), #E9DCC5); display: grid; place-items: center; color: var(--gold-deep); position: relative; }
.prod__img svg { width: 44px; height: 44px; opacity: .8; }
.prod__img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.prod__tag { position: absolute; top: 14px; left: 14px; background: var(--espresso); color: var(--gold-2); font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .06em; padding: 6px 12px; border-radius: 100px; text-transform: uppercase; }
.prod__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.prod__body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.prod__body p { color: var(--muted); font-size: .95rem; flex: 1; }
.prod__list { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.prod__list span { font-size: .82rem; background: var(--cream-2); color: var(--ink); padding: 5px 11px; border-radius: 100px; }

/* ----------------------------- STATS ------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 16px; border-radius: var(--radius); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); }
.stat b { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-2); display: block; line-height: 1; }
.stat span { font-size: .9rem; color: #C9BCA9; margin-top: 8px; display: block; }

/* ----------------------------- DEPOIMENTOS ------------------------------ */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.quote__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.quote p { font-size: 1.05rem; color: var(--ink); font-style: italic; }
.quote__who { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.quote__av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; }
.quote__who b { font-family: var(--font-display); font-size: .98rem; display: block; }
.quote__who span { font-size: .84rem; color: var(--muted); }

/* Google reviews */
.grev { display: flex; flex-direction: column; }
.grev__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.grev__head b { font-family: var(--font-display); font-size: 1rem; display: block; line-height: 1.2; color: var(--espresso); }
.grev__head span { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.grev__g { width: 15px; height: 15px; flex: none; }
.grev__stars { color: #FBBC04; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.grev p { font-style: normal; font-size: 1rem; color: var(--ink); }
.g-rating { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 12px 22px; box-shadow: var(--shadow-sm); margin-top: 24px; }
.g-rating .num { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--espresso); }
.g-rating .stars { color: #FBBC04; letter-spacing: 2px; }
.g-rating .lbl { font-size: .88rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }

/* ----------------------------- FAQ -------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--espresso); }
.section--dark .faq__q { color: #fff; }
.faq__q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: .25s; }
.section--dark .faq__q .ic { border-color: rgba(255,255,255,.25); }
.faq__q .ic::before { content: "+"; font-size: 1.3rem; color: var(--gold-deep); line-height: 1; }
.section--dark .faq__q .ic::before { color: var(--gold-2); }
.faq__item.open .ic { background: var(--grad-gold); border-color: transparent; transform: rotate(45deg); }
.faq__item.open .ic::before { color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding-bottom: 24px; color: var(--muted); }
.section--dark .faq__a p { color: #C9BCA9; }

/* ----------------------------- CONTATO / FORM --------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-list { display: grid; gap: 22px; margin-top: 30px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: var(--gold-2); flex: none; }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item b { font-family: var(--font-display); display: block; color: #fff; font-size: 1rem; }
.info-item span { color: #C9BCA9; font-size: .95rem; }

.form { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form > p { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .88rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--cream); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(227,155,43,.18); background:#fff; }
.field textarea { min-height: 110px; resize: vertical; }
.form small { display: block; margin-top: 12px; color: var(--muted); font-size: .82rem; text-align: center; }

/* ----------------------------- FOOTER ----------------------------------- */
.footer { background: var(--espresso); color: #C9BCA9; padding-top: 72px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-display); }
.footer a { display: block; color: #C9BCA9; padding: 5px 0; font-size: .95rem; transition: color .15s; }
.footer a:hover { color: var(--gold-2); }
.footer__brand p { font-size: .95rem; margin-top: 16px; max-width: 34ch; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.10); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #8B7E6C; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #E7D9C2; padding: 0; }
.footer__social a:hover { background: var(--grad-gold); color: #fff; }
.footer__social svg { width: 20px; height: 20px; }

/* ----------------------------- CTA BANNER ------------------------------- */
.cta-band { position: relative; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); background: var(--grad-gold); color: #fff; overflow: hidden; text-align: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 100% 0%, rgba(255,255,255,.35), transparent 60%); pointer-events: none; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { position: relative; max-width: 60ch; margin: 16px auto 30px; color: rgba(255,255,255,.92); font-size: 1.1rem; }
.cta-band .btn--cta, .cta-band .btn--wa { position: relative; }

/* ----------------------------- FLOAT WHATSAPP --------------------------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 62px; height: 62px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .2s; animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 34px; height: 34px; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 12px 30px rgba(37,211,102,.45); } 50% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,.10); } }

/* ----------------------------- LANDING BITS ----------------------------- */
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 26px; }
.trust-row li { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: #D9CDBB; }
.trust-row li svg { width: 20px; height: 20px; color: var(--gold-2); flex: none; }

.pain-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px; display:flex; gap:16px; align-items:flex-start; }
.pain-card .x { width: 40px; height: 40px; border-radius: 10px; background: rgba(192,68,46,.10); color: var(--paprika); display:grid; place-items:center; flex:none; }
.pain-card .x svg { width: 22px; height: 22px; }
.pain-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.pain-card p { color: var(--muted); font-size: .95rem; }

.value-list { display:grid; gap: 18px; }
.value-list li { display:flex; gap:14px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.value-list li .ok { width:34px; height:34px; border-radius:50%; background: var(--grad-gold); color:#2A1B05; display:grid; place-items:center; flex:none; }
.value-list li .ok svg { width:18px; height:18px; }
.value-list li b { font-family: var(--font-display); }

.guarantee { display:flex; gap: 22px; align-items:center; background:#fff; border:1px dashed var(--gold); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.guarantee .badge { width: 74px; height:74px; border-radius:50%; background: var(--grad-gold); color:#2A1B05; display:grid; place-items:center; flex:none; box-shadow: var(--shadow-gold); }
.guarantee .badge svg { width: 38px; height:38px; }

/* ----------------------------- REVEAL ANIM ------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .wa-float { animation: none; } html { scroll-behavior: auto; } }

/* ----------------------------- TRANSIÇÕES MODERNAS ---------------------- */
/* Entrada em cascata (stagger) dos filhos de grids/stats ao aparecer */
.grid.reveal, .stats.reveal { opacity: 1; transform: none; }
.grid.reveal > *, .stats.reveal > * { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); }
.grid.reveal.in > *, .stats.reveal.in > * { opacity: 1; transform: none; }
.grid.reveal.in > *:nth-child(2), .stats.reveal.in > *:nth-child(2) { transition-delay: .07s; }
.grid.reveal.in > *:nth-child(3), .stats.reveal.in > *:nth-child(3) { transition-delay: .14s; }
.grid.reveal.in > *:nth-child(4), .stats.reveal.in > *:nth-child(4) { transition-delay: .21s; }
.grid.reveal.in > *:nth-child(5) { transition-delay: .28s; }
.grid.reveal.in > *:nth-child(6) { transition-delay: .35s; }
.grid.reveal.in > *:nth-child(7) { transition-delay: .42s; }
.grid.reveal.in > *:nth-child(8) { transition-delay: .49s; }

/* Sublinhado animado no menu */
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--gold); border-radius: 2px; transition: right .28s ease; }
.nav__links a:hover::after { right: 0; }

/* Cabeçalho encolhe suavemente ao rolar */
.nav { transition: height .3s ease; }
.site-header.scrolled .nav { height: 64px; }

/* Marquee infinito (faixa de clientes) */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__seg { display: flex; align-items: center; gap: 44px; padding-left: 44px; }
.marquee__seg span { display: inline-flex; align-items: center; gap: 44px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: #E7D9C2; opacity: .9; white-space: nowrap; }
.marquee__seg span::before { content: "•"; color: var(--gold); font-size: 1.1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Divisor diagonal entre seções (eco da faixa vermelha da marca) */
.section--dark { position: relative; }
.diag-top { position: absolute; left: 0; top: 0; width: 100%; height: clamp(34px, 4.5vw, 62px); transform: translateY(-99%); line-height: 0; pointer-events: none; z-index: 1; }
.diag-top svg { width: 100%; height: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  .grid.reveal > *, .stats.reveal > * { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .nav { transition: none; }
  /* blur pesa muito em GPU fraca — remove quando o usuário pede menos movimento */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
  .media__seal { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(23,19,15,.9); }
}

/* ============ MODO KIOSK (PC antigo) — abra a página com ?kiosk=1 ============
   Desliga tudo que consome CPU/GPU continuamente: vidro fosco, letreiro
   infinito, parallax e animações de entrada. Site normal não é afetado. */
html.kiosk .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
html.kiosk .media__seal { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(23,19,15,.9); }
html.kiosk .marquee__track { animation: none !important; }
html.kiosk .reveal, html.kiosk .stagger, html.kiosk .grid.reveal > *, html.kiosk .stats.reveal > * {
  opacity: 1 !important; transform: none !important; transition: none !important;
}
html.kiosk .wa-float { animation: none !important; }
html.kiosk * { transition: none !important; }
html.kiosk { scroll-behavior: auto; }

/* ----------------------------- RESPONSIVO ------------------------------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; max-width: 460px; }
  .split, .contact { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__media { order: 0; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  :root { --section-y: clamp(48px, 8vw, 76px); }
  .nav { height: 64px; }
  .brand__logo { height: 40px; }
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  /* WhatsApp do topo vira ícone compacto (evita estouro do cabeçalho) */
  .nav__cta { margin-left: auto; margin-right: 6px; }
  .nav__cta .btn--wa { font-size: 0; gap: 0; padding: 0; width: 46px; height: 46px; border-radius: 50%; }
  .nav__cta .btn--wa svg { width: 24px; height: 24px; }
  .site-header.menu-open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: var(--cream); padding: 16px 24px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .site-header.menu-open .nav__links a { padding: 13px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { padding-block: 40px 8px; }
  .hero__media { max-width: 340px; margin-inline: auto; }
  .hero .media--tall { aspect-ratio: 4/5; }
  .hero__badges { gap: 16px 22px; padding-top: 24px; }
  .guarantee { flex-direction: column; text-align: center; }
  .form { padding: 24px; }
  .contact { gap: 32px; }
  body { font-size: 16px; }
}
@media (max-width: 480px) {
  .wrap { padding-inline: 18px; }
  /* Evita que botões com texto longo estourem a largura da tela */
  .btn { white-space: normal; text-align: center; padding-inline: 22px; }
  .marquee__seg { gap: 30px; padding-left: 30px; }
  .marquee__seg span { gap: 30px; font-size: .95rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .cta-band { padding: 32px 20px; }
  .hero h1 { font-size: 2.15rem; }
  .h-xl { font-size: 1.95rem; }
  .h-lg { font-size: 1.65rem; }
  .h-md { font-size: 1.35rem; }
  .section-head { margin-bottom: 36px; }
  .card, .prod__body, .quote, .pain-card, .grev { padding: 22px; }
  .stat b { font-size: 2rem; }
  .stat { padding: 20px 10px; }
  .step__num { font-size: 2rem !important; }
  .cta-band p, .lead { font-size: 1rem; }
}
