/* ============================================================
   Páginas internas — Produtos & Sobre
   ============================================================ */

/* ---------- Page hero (shared) ---------- */
.nav a.active, .drawer-nav a.active { color: var(--red); }
.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; padding: 54px 0 58px; }
.page-hero::before { content: ""; position: absolute; top: -100px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(225,18,28,.32), transparent 70%); }
.page-hero::after { content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--red) 0 50%, var(--yellow) 50% 100%); }
.page-hero .wrap { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-family: var(--f-head); font-weight: 600; font-size: 14px; color: #AEB6C4; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; margin-top: 16px; letter-spacing: -.02em; }
.page-hero p { color: #C7CDD9; font-size: 19px; margin-top: 16px; max-width: 640px; }
.page-hero-mascots { position: absolute; right: 24px; bottom: -10px; display: flex; align-items: flex-end; z-index: 1; opacity: .96; }
.page-hero-mascots img { width: 150px; height: 150px; object-fit: contain; filter: drop-shadow(0 10px 16px rgba(0,0,0,.35)); }
.page-hero-mascots img:nth-child(1) { transform: rotate(-6deg); margin-right: -34px; z-index: 1; }
.page-hero-mascots img:nth-child(2) { width: 178px; height: 178px; z-index: 3; }
.page-hero-mascots img:nth-child(3) { transform: rotate(6deg); margin-left: -34px; z-index: 2; }

/* ---------- Filter bar (sticky) ---------- */
.filterbar { position: sticky; top: 76px; z-index: 40; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.filterbar .wrap { display: flex; align-items: center; gap: 16px; padding-top: 14px; padding-bottom: 14px; flex-wrap: wrap; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; min-width: 0; }
.chip { font-family: var(--f-head); font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; cursor: pointer; color: var(--navy-2); transition: all .15s ease; white-space: nowrap; }
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; }
.search { position: relative; flex: none; }
.search input { padding: 11px 16px 11px 42px; border: 1.5px solid var(--line); border-radius: 999px; font-size: 15px; width: 250px; background: var(--paper-2); font-family: var(--f-body); color: var(--navy); }
.search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--slate-2); }
.search input:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(225,18,28,.12); }

/* ---------- Category sections ---------- */
.catsec { padding: 56px 0; border-bottom: 1px solid var(--line-2); scroll-margin-top: 150px; }
.catsec:last-of-type { border-bottom: none; }
.catsec-head { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; flex-wrap: wrap; }
.catsec-medal { width: 92px; height: 92px; flex: none; }
.catsec-medal img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 6px 10px rgba(20,24,31,.14)); }
.catsec-titles { flex: 1; min-width: 220px; }
.catsec-titles h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; }
.catsec-titles p { color: var(--slate); font-size: 16px; margin-top: 4px; }
.catsec-count { font-family: var(--f-head); font-weight: 700; font-size: 13px; color: var(--red); background: rgba(225,18,28,.08); padding: 6px 14px; border-radius: 999px; }

/* ---------- Product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prod { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px; display: flex; flex-direction: column; transition: box-shadow .2s ease, border-color .2s ease, transform .15s ease; }
.prod:hover { box-shadow: var(--shadow); border-color: rgba(225,18,28,.22); transform: translateY(-3px); }
.prod-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.prod .pname { font-family: var(--f-head); font-weight: 700; font-size: 16.5px; line-height: 1.25; }
.punit { font-size: 11.5px; font-weight: 700; font-family: var(--f-head); letter-spacing: .03em; color: var(--slate); background: var(--paper); border-radius: 6px; padding: 5px 8px; white-space: nowrap; flex: none; text-transform: uppercase; }
.prod .pprice { font-size: 13px; color: var(--slate-2); margin-top: 9px; font-weight: 600; }
.prod .pprice b { color: var(--navy); font-weight: 800; }
.prod .pfoot { margin-top: auto; padding-top: 14px; }
.padd { font-family: var(--f-head); font-weight: 700; font-size: 13.5px; color: var(--red); border: 1.5px solid var(--red); background: #fff; border-radius: 8px; padding: 9px 12px; cursor: pointer; display: inline-flex; gap: 6px; align-items: center; justify-content: center; width: 100%; transition: all .15s ease; }
.padd svg { width: 16px; height: 16px; }
.padd:hover { background: var(--red); color: #fff; }
.padd.added { background: #1FA855; border-color: #1FA855; color: #fff; }
.noresults { text-align: center; padding: 70px 0; color: var(--slate); display: none; }
.noresults.show { display: block; }
.noresults svg { width: 48px; height: 48px; color: var(--slate-2); opacity: .5; margin-bottom: 14px; }

/* ---------- Quote FAB + panel ---------- */
.quote-fab { position: fixed; left: 22px; bottom: 22px; z-index: 55; background: var(--navy); color: #fff; border: none; border-radius: 999px; padding: 14px 22px; font-family: var(--f-head); font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 11px; cursor: pointer; box-shadow: var(--shadow-lg); transform: translateY(120px); opacity: 0; transition: transform .3s cubic-bezier(.34,1.3,.64,1), opacity .3s; }
.quote-fab.show { transform: translateY(0); opacity: 1; }
.quote-fab svg { width: 20px; height: 20px; color: var(--yellow); }
.quote-fab .qn { background: var(--red); border-radius: 999px; min-width: 24px; height: 24px; display: grid; place-items: center; font-size: 13px; padding: 0 7px; }
.quote-panel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 73; width: min(430px, 92vw); background: #fff; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.quote-panel.open { transform: translateX(0); }
.qp-head { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.qp-head h3 { font-size: 20px; font-weight: 800; }
.qp-head p { font-size: 13px; color: var(--slate); margin-top: 2px; }
.qp-close { background: none; border: none; cursor: pointer; width: 40px; height: 40px; display: grid; place-items: center; }
.qp-close svg { width: 26px; height: 26px; color: var(--navy); }
.qp-list { flex: 1; overflow-y: auto; padding: 4px 24px; }
.qp-empty { text-align: center; color: var(--slate); padding: 60px 16px; }
.qp-empty svg { width: 56px; height: 56px; color: var(--line); margin-bottom: 16px; }
.qitem { display: flex; align-items: center; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line-2); }
.qi-main { flex: 1; min-width: 0; }
.qi-name { font-family: var(--f-head); font-weight: 600; font-size: 15px; }
.qi-unit { font-size: 12px; color: var(--slate); margin-top: 1px; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden; flex: none; }
.qty button { width: 30px; height: 32px; border: none; background: var(--paper); cursor: pointer; font-size: 17px; color: var(--navy); font-family: var(--f-head); display: grid; place-items: center; }
.qty button:hover { background: var(--line); }
.qty span { min-width: 32px; text-align: center; font-family: var(--f-head); font-weight: 700; font-size: 14px; }
.qi-remove { background: none; border: none; cursor: pointer; color: var(--slate-2); width: 28px; height: 28px; flex: none; display: grid; place-items: center; }
.qi-remove svg { width: 18px; height: 18px; }
.qi-remove:hover { color: var(--red); }
.qp-foot { padding: 18px 24px 22px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.qp-foot.hidden { display: none; }
.qp-note { font-size: 12.5px; color: var(--slate-2); text-align: center; }

/* ---------- About page ---------- */
.about-intro .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.about-intro img { border-radius: var(--r-xl); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.about-intro h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin-top: 14px; }
.about-intro p { color: var(--slate); font-size: 17px; margin-top: 16px; }
.about-stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.about-stat .n { font-family: var(--f-head); font-weight: 800; font-size: 36px; color: var(--red); line-height: 1; }
.about-stat .l { font-size: 14px; color: var(--slate); margin-top: 6px; }

.values { background: var(--paper); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: #fff; border-radius: var(--r-lg); padding: 36px 30px; text-align: center; box-shadow: var(--shadow-sm); }
.value-card .vmedal { width: 160px; height: 160px; margin: 0 auto 4px; display: grid; place-items: center; }
.value-card .vmedal img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 6px 10px rgba(20,24,31,.14)); }
.value-card h3 { font-size: 21px; font-weight: 800; margin-top: 10px; }
.value-card p { color: var(--slate); margin-top: 10px; font-size: 16px; }

/* ---------- Localização ---------- */
.loc .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: stretch; }
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.loc-card h3 { font-size: 24px; font-weight: 800; }
.loc-row { display: flex; gap: 14px; align-items: flex-start; margin-top: 24px; }
.loc-row .ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(225,18,28,.08); display: grid; place-items: center; flex: none; }
.loc-row .ico svg { width: 22px; height: 22px; color: var(--red); }
.loc-row h4 { font-family: var(--f-head); font-size: 16px; font-weight: 700; }
.loc-row p { color: var(--slate); font-size: 15.5px; margin-top: 3px; line-height: 1.5; }
.loc-row a:hover { color: var(--red); }
.loc-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); min-height: 420px; box-shadow: var(--shadow-sm); }
.loc-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- Page CTA band ---------- */
.pageband { background: var(--navy); color: #fff; text-align: center; }
.pageband h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }
.pageband p { color: #AEB6C4; font-size: 18px; margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
.pageband .btns { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .about-intro .wrap, .loc .wrap { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero-mascots { display: none; }
}
@media (max-width: 760px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .filterbar { top: 64px; }
  .search input { width: 100%; }
  .search { flex: 1; }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .loc-card { padding: 28px 24px; }
}
