/* ============================================================
   SUPER BARATÃO DISTRIBUIDORA — Sistema visual
   ============================================================ */
:root {
  /* Brand */
  --red:        #E1121C;
  --red-dark:   #B20D15;
  --red-ink:    #7E0A10;
  --yellow:     #FFD200;
  --yellow-dk:  #E8BE00;

  /* Neutrals — corporate base */
  --navy:       #14181F;
  --navy-2:     #1C2230;
  --navy-3:     #2A3242;
  --slate:      #5A6577;
  --slate-2:    #8A93A3;
  --line:       #E4E7ED;
  --line-2:     #EEF0F4;
  --paper:      #F6F7F9;
  --paper-2:    #FBFBFC;
  --white:      #FFFFFF;

  /* Type */
  --f-head: "Montserrat", system-ui, sans-serif;
  --f-body: "Source Sans 3", system-ui, sans-serif;

  /* Shape */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(20,24,31,.06), 0 1px 3px rgba(20,24,31,.08);
  --shadow:    0 6px 18px rgba(20,24,31,.08), 0 2px 6px rgba(20,24,31,.06);
  --shadow-lg: 0 24px 50px rgba(20,24,31,.14), 0 8px 18px rgba(20,24,31,.08);

  --maxw: 1200px;
  --gut: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--navy);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--f-head); margin: 0; line-height: 1.1; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.eyebrow {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.section { padding: 96px 0; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; margin: 16px 0 0; }
.section-head p { color: var(--slate); font-size: 19px; margin-top: 16px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 14px 24px;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 16px rgba(225,18,28,.28); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(225,18,28,.34); }
.btn-wa { background: #1FA855; color: #fff; box-shadow: 0 6px 16px rgba(31,168,85,.26); }
.btn-wa:hover { background: #18904a; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: 17px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Logo ---------- */
.logo img { height: 56px; width: auto; display: block; }
.drawer-top .logo img { height: 44px; }
.footer .logo img { height: 66px; }
.logo { display: inline-flex; align-items: center; gap: 0; line-height: 1; }
.logo-mark {
  font-family: var(--f-head);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.02em;
  display: flex;
  flex-direction: column;
}
.logo-mark .l1 {
  font-size: 23px;
  color: var(--red);
  text-shadow: 1px 1px 0 var(--yellow);
  line-height: .96;
}
.logo-mark .l2 {
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .34em;
  color: var(--navy);
  margin-top: 3px;
  padding-left: 2px;
}
.logo-badge {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--red);
  display: grid; place-items: center;
  margin-right: 11px;
  box-shadow: inset 0 0 0 3px var(--yellow);
  flex: none;
}
.logo-badge span {
  font-family: var(--f-head);
  font-weight: 900; font-style: italic;
  color: #fff; font-size: 20px; line-height: 1;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy);
  color: #C7CDD9;
  font-size: 14px;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.topbar-left { display: flex; align-items: center; gap: 26px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 15px; height: 15px; color: var(--yellow); }
.topbar a:hover { color: #fff; }
.topbar-right { display: inline-flex; align-items: center; gap: 16px; white-space: nowrap; }
.topbar-right .sep { width: 1px; height: 16px; background: rgba(255,255,255,.16); }
.topbar-soc { display: inline-flex; gap: 12px; }
.topbar-soc a svg { width: 16px; height: 16px; color: #C7CDD9; }
.topbar-soc a:hover svg { color: var(--yellow); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.scrolled { box-shadow: var(--shadow); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-2);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  position: relative;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--red); background: var(--paper); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.hamburger svg { width: 24px; height: 24px; color: var(--navy); }

/* Mobile drawer */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(20,24,31,.5);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 71;
  width: min(340px, 84vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--gut); border-bottom: 1px solid var(--line); }
.drawer-close { background: none; border: none; cursor: pointer; width: 40px; height: 40px; display: grid; place-items: center; }
.drawer-close svg { width: 26px; height: 26px; color: var(--navy); }
.drawer-nav { padding: 10px var(--gut); flex: 1; overflow-y: auto; }
.drawer-nav a {
  display: block; font-family: var(--f-head); font-weight: 600; font-size: 18px;
  color: var(--navy); padding: 15px 6px; border-bottom: 1px solid var(--line-2);
}
.drawer-nav a:hover { color: var(--red); }
.drawer-foot { padding: 20px var(--gut); border-top: 1px solid var(--line); display: grid; gap: 12px; }

/* ---------- Hero ---------- */
.hero { background: var(--paper); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,0,.16), transparent 70%);
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 76px; padding-bottom: 76px; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  padding: 7px 14px 7px 8px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--navy-2);
  box-shadow: var(--shadow-sm);
}
.hero-badge b { background: var(--red); color: #fff; font-family: var(--f-head); font-size: 12px; padding: 3px 9px; border-radius: 999px; letter-spacing: .04em; }
.hero h1 { font-size: clamp(38px, 5.2vw, 62px); font-weight: 800; margin: 22px 0 0; letter-spacing: -.02em; }
.hero h1 .hl { color: var(--red); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px; background: var(--yellow); z-index: -1; opacity: .9; }
.hero-sub { font-size: 20px; color: var(--slate); margin-top: 22px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; color: var(--slate); font-size: 15px; }
.hero-trust .stars { color: var(--yellow-dk); letter-spacing: 2px; font-size: 17px; }
.hero-trust b { color: var(--navy); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img {
  border-radius: var(--r-xl);
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-lg);
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
  object-position: 42% 50%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.hero-float {
  position: absolute; left: -28px; bottom: 42px;
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.hero-float .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(31,168,85,.12); display: grid; place-items: center; flex: none; }
.hero-float .ico svg { width: 24px; height: 24px; color: #1FA855; }
.hero-float .t { font-family: var(--f-head); font-weight: 800; font-size: 16px; }
.hero-float .s { font-size: 13px; color: var(--slate); }
.hero-tag {
  position: absolute; top: 26px; right: -18px;
  background: var(--yellow); color: var(--navy);
  font-family: var(--f-head); font-weight: 900; font-style: italic;
  padding: 12px 18px; border-radius: 14px;
  box-shadow: var(--shadow-lg); transform: rotate(6deg);
  line-height: 1; text-align: center;
}
.hero-tag span { display: block; font-size: 11px; font-weight: 800; letter-spacing: .1em; font-style: normal; }
.hero-tag b { font-size: 22px; }

/* Image placeholder */
.ph {
  background:
    linear-gradient(135deg, rgba(20,24,31,.04), rgba(20,24,31,.02)),
    repeating-linear-gradient(45deg, var(--line-2) 0 1px, transparent 1px 16px),
    var(--paper);
  display: grid; place-items: center;
  color: var(--slate-2);
  position: relative;
}
.ph-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 24px; }
.ph-inner svg { width: 40px; height: 40px; opacity: .6; }
.ph-inner span { font-family: var(--f-head); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Stats strip ---------- */
.stats { background: var(--navy); color: #fff; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stat:last-child { border-right: none; }
.stat .n { font-family: var(--f-head); font-weight: 800; font-size: 44px; color: var(--yellow); line-height: 1; letter-spacing: -.02em; }
.stat .l { color: #AEB6C4; font-size: 15px; margin-top: 8px; }

/* ---------- Categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px 28px 30px;
  text-align: center;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer; position: relative;
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(225,18,28,.25); }
.cat-medal { width: 172px; height: 172px; margin: 0 auto; display: grid; place-items: center; }
.cat-medal img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(20,24,31,.14)); transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.cat:hover .cat-medal img { transform: scale(1.07) rotate(-2deg); }
.cat-ring {
  width: 128px; height: 128px; border-radius: 50%; background: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px var(--yellow), 0 0 0 13px var(--red), 0 8px 18px rgba(20,24,31,.14);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cat:hover .cat-ring { transform: scale(1.05); }
.cat-ring svg { width: 56px; height: 56px; color: var(--red); }
.cat h3 { font-size: 21px; font-weight: 800; margin-top: 16px; }
.cat p { font-size: 15px; color: var(--slate); margin-top: 8px; max-width: 260px; margin-left: auto; margin-right: auto; }
.cat .more { font-family: var(--f-head); font-weight: 700; font-size: 13px; color: var(--red); margin-top: 16px; display: inline-flex; align-items: center; gap: 5px; opacity: .55; transform: translateY(2px); transition: opacity .2s, transform .2s; }
.cat:hover .more { opacity: 1; transform: translateY(0); gap: 8px; }

/* ---------- Diferenciais ---------- */
.why { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { background: #fff; border-radius: var(--r-lg); padding: 32px 26px; box-shadow: var(--shadow-sm); }
.why-ico { width: 56px; height: 56px; border-radius: 15px; background: var(--navy); display: grid; place-items: center; }
.why-ico svg { width: 28px; height: 28px; color: var(--yellow); }
.why-card h3 { font-size: 20px; font-weight: 700; margin-top: 20px; }
.why-card p { color: var(--slate); margin-top: 10px; font-size: 16px; }

/* ---------- Logística / Frota ---------- */
.logi .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.logi-img { border-radius: var(--r-xl); aspect-ratio: 16/12; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.logi-list { margin-top: 28px; display: grid; gap: 18px; }
.logi-item { display: flex; gap: 16px; align-items: flex-start; }
.logi-item .ck { width: 30px; height: 30px; border-radius: 8px; background: rgba(225,18,28,.1); display: grid; place-items: center; flex: none; margin-top: 2px; }
.logi-item .ck svg { width: 18px; height: 18px; color: var(--red); }
.logi-item h4 { font-family: var(--f-head); font-size: 18px; font-weight: 700; }
.logi-item p { color: var(--slate); font-size: 16px; margin-top: 3px; }

/* ---------- Como funciona ---------- */
.steps { background: var(--navy); color: #fff; position: relative; }
.steps .section-head h2 { color: #fff; }
.steps .section-head p { color: #AEB6C4; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { background: var(--navy-2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-lg); padding: 34px 30px; position: relative; }
.step-n { font-family: var(--f-head); font-weight: 900; font-size: 52px; color: rgba(255,210,0,.22); line-height: 1; }
.step h3 { font-size: 21px; font-weight: 700; margin-top: 8px; }
.step p { color: #AEB6C4; margin-top: 12px; font-size: 16px; }

/* ---------- Depoimentos ---------- */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.test { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; }
.test .stars { color: var(--yellow-dk); letter-spacing: 3px; font-size: 18px; }
.test p { font-size: 17px; color: var(--navy-2); margin-top: 16px; line-height: 1.55; }
.test-by { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.test-av { width: 46px; height: 46px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; color: var(--red); flex: none; }
.test-by .nm { font-family: var(--f-head); font-weight: 700; font-size: 16px; }
.test-by .rl { font-size: 14px; color: var(--slate); }

/* ---------- CTA / Form ---------- */
.cta { background: var(--paper); }
.cta-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
}
.cta-left { padding: 56px 52px; color: #fff; position: relative; }
.cta-left::before { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(225,18,28,.4), transparent 70%); }
.cta-left .eyebrow { color: var(--yellow); }
.cta-left .eyebrow::before { background: var(--yellow); }
.cta-left h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin: 16px 0 0; position: relative; }
.cta-left p { color: #AEB6C4; margin-top: 16px; font-size: 18px; position: relative; }
.cta-bullets { margin-top: 28px; display: grid; gap: 14px; position: relative; }
.cta-bullets li { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.cta-bullets svg { width: 20px; height: 20px; color: var(--yellow); flex: none; }
.cta-phone { margin-top: 32px; position: relative; }
.cta-phone .lbl { font-size: 14px; color: #AEB6C4; }
.cta-phone .num { font-family: var(--f-head); font-weight: 800; font-size: 27px; color: #fff; display: inline-flex; align-items: center; gap: 10px; }
.cta-phone .num svg { width: 24px; height: 24px; color: var(--yellow); }

.cta-form { background: #fff; padding: 44px 44px; }
.cta-form h3 { font-size: 24px; font-weight: 800; }
.cta-form > p { color: var(--slate); margin-top: 6px; font-size: 16px; }
.field { margin-top: 18px; }
.field label { display: block; font-family: var(--f-head); font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--f-body); font-size: 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--paper-2);
  color: var(--navy); transition: border-color .15s ease, box-shadow .15s ease, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(225,18,28,.12);
}
.field textarea { resize: vertical; min-height: 84px; }
.field.invalid input, .field.invalid select { border-color: var(--red); }
.field .err { color: var(--red); font-size: 13px; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 13px; color: var(--slate-2); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .ck { width: 64px; height: 64px; border-radius: 50%; background: rgba(31,168,85,.12); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ck svg { width: 34px; height: 34px; color: #1FA855; }
.form-success h3 { font-size: 23px; }
.form-success p { color: var(--slate); margin-top: 8px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #AEB6C4; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1.1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer .logo-mark .l2 { color: #fff; }
.footer-about { margin-top: 20px; font-size: 15px; line-height: 1.6; max-width: 320px; }
.footer h4 { font-family: var(--f-head); color: #fff; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { font-size: 15px; transition: color .15s; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { display: grid; gap: 14px; }
.footer-contact .ci { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.footer-contact .ci svg { width: 18px; height: 18px; color: var(--yellow); flex: none; margin-top: 3px; }
.footer-soc { display: flex; gap: 12px; margin-top: 22px; }
.footer-soc a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .2s; }
.footer-soc a svg { width: 19px; height: 19px; color: #fff; }
.footer-soc a:hover { background: var(--red); }

/* Payment methods */
.pay-box { background: #fff; border-radius: var(--r); padding: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.pay-chip {
  font-family: var(--f-head); font-weight: 800; font-size: 11.5px;
  letter-spacing: .02em; color: var(--navy-2);
  border: 1px solid var(--line); border-radius: 6px;
  padding: 6px 9px; line-height: 1; display: inline-flex; align-items: center;
  background: #fff;
}
.pay-chip.brand-visa { color: #1A1F71; }
.pay-chip.brand-master { color: #C5302B; }
.pay-chip.brand-elo { color: #00A4E0; }
.pay-chip.brand-amex { color: #006FCF; }
.pay-chip.brand-hiper { color: #E5332A; }
.pay-chip.brand-pix { color: #1FA89B; }
.pay-note { font-size: 13px; margin-top: 12px; color: #AEB6C4; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
.footer-bottom a:hover { color: #fff; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1FA855; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(31,168,85,.4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .cat-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav, .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .logi .wrap, .cta-card { grid-template-columns: 1fr; }
  .cta-left { padding: 40px 32px; }
  .steps-grid, .test-grid { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  body { font-size: 16px; }
  .topbar-left .topbar-item:not(:first-child) { display: none; }
  .topbar-right .topbar-soc, .topbar-right .sep { display: none; }
  .cat-grid, .why-grid, .row2 { grid-template-columns: 1fr; }
  .hero-float { left: 0; }
  .cta-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ============================================================
   WARMTH & COLOR PASS — fills white space with subtle brand tints
   ============================================================ */
:root {
  --paper:   #F7F3ED;   /* warm light */
  --paper-2: #FCFAF6;
}

/* --- Boxes get gentle gradients (no more flat white) --- */
.cat {
  background: linear-gradient(168deg, #FFFFFF 0%, #FFF5EC 100%);
  border-color: #F1E6DC;
}
.cat:hover { border-color: rgba(225,18,28,.28); }

.why-card {
  background: linear-gradient(172deg, #FFFFFF 0%, #F2F6FC 100%);
  border: 1px solid #E9EEF6;
}
.value-card {
  background: linear-gradient(166deg, #FFFFFF 0%, #FFF5EB 100%);
  border: 1px solid #F1E6DB;
}
.prod {
  background: linear-gradient(180deg, #FFFFFF 0%, #FCF8F4 100%);
  border-color: #EFE8E1;
}
.test {
  background: linear-gradient(166deg, #FFFFFF 0%, #FFFBF0 100%);
  border-color: #F1E9D8;
}
.loc-card {
  background: linear-gradient(166deg, #FFFFFF 0%, #FFF6EE 100%);
  border-color: #F1E6DB;
}
.step {
  background: linear-gradient(165deg, #1F2634 0%, #262F43 100%);
}
.hero-badge { background: linear-gradient(180deg, #FFFFFF, #FFF8EF); }

/* --- White sections get warm tint + soft brand blooms --- */
#categorias {
  background:
    radial-gradient(36% 52% at 100% -5%, rgba(255,210,0,.13), transparent 70%),
    radial-gradient(32% 48% at -2% 105%, rgba(225,18,28,.06), transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #FBF6F0 100%);
}
#depoimentos {
  background:
    radial-gradient(34% 50% at 0% -5%, rgba(255,210,0,.12), transparent 70%),
    radial-gradient(30% 46% at 102% 105%, rgba(225,18,28,.06), transparent 70%),
    linear-gradient(180deg, #FBF6F0 0%, #FFFFFF 100%);
}
.why {
  background:
    radial-gradient(38% 55% at 100% 0%, rgba(225,18,28,.05), transparent 70%),
    radial-gradient(34% 50% at 0% 100%, rgba(255,210,0,.10), transparent 70%),
    linear-gradient(180deg, #F6F8FC 0%, #F2F5FA 100%);
}
.cta {
  background:
    radial-gradient(40% 60% at 0% 0%, rgba(255,210,0,.10), transparent 70%),
    linear-gradient(180deg, #FBF6F0 0%, #F7F1E9 100%);
}

/* Hero: add a second warm bloom (bottom-left) */
.hero::after {
  content: ""; position: absolute; left: -120px; bottom: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,18,28,.09), transparent 70%);
  z-index: 0;
}
.hero .wrap { z-index: 1; }

/* --- Subpages --- */
#catalog {
  background:
    radial-gradient(26% 30% at 100% 0%, rgba(255,210,0,.11), transparent 70%),
    radial-gradient(24% 26% at 0% 12%, rgba(225,18,28,.05), transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #FBF7F2 100%);
}
.about-intro {
  background:
    radial-gradient(34% 52% at 0% -5%, rgba(255,210,0,.11), transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #FBF6F0 100%);
}
.values {
  background:
    radial-gradient(32% 44% at 0% 0%, rgba(255,210,0,.13), transparent 70%),
    radial-gradient(30% 42% at 100% 100%, rgba(225,18,28,.05), transparent 70%),
    linear-gradient(180deg, #F8F3EC 0%, #F4EFE7 100%) !important;
}
.loc {
  background:
    radial-gradient(30% 44% at 100% 0%, rgba(255,210,0,.10), transparent 70%),
    linear-gradient(180deg, #FBF6F0 0%, #F7F1E9 100%) !important;
}

/* Navy bands gain a touch of depth */
.stats { background: linear-gradient(165deg, #161B26 0%, #1B2230 100%); }
.pageband { background: radial-gradient(50% 120% at 50% 0%, #1E2738 0%, #14181F 70%); }
