/* =========================================================
   Nossos Parceiros — Colégio Adventista de Sinop
   ========================================================= */
:root {
    --navy-900: #061a3a;
    --navy-800: #0b2a5b;
    --navy-700: #123d7a;
    --blue-600: #1e5fbf;
    --blue-500: #2f7ae5;
    --blue-50: #eef4ff;
    --gold-500: #f5b72a;
    --gold-400: #ffc94a;
    --gold-100: #fff4d6;
    --ink: #0f1b2d;
    --text: #334155;
    --muted: #64748b;
    --line: #e3e8f0;
    --bg: #f6f8fc;
    --card: #ffffff;
    --wa: #1fa855;
    --wa-dark: #178a45;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-sm: 0 1px 2px rgba(15, 27, 45, .06), 0 2px 8px rgba(15, 27, 45, .05);
    --shadow: 0 10px 30px -12px rgba(11, 42, 91, .25), 0 4px 10px -4px rgba(11, 42, 91, .08);
    --shadow-lg: 0 30px 60px -20px rgba(11, 42, 91, .35);
    --ease: cubic-bezier(.2, .8, .2, 1);
    --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
h1, h2, h3 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 6px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.skip-link { position: absolute; left: -999px; top: 8px; background: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 8px; }
.icon { flex-shrink: 0; }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; border-radius: 999px; border: 1.5px solid transparent;
    font-weight: 700; font-size: 15px; line-height: 1; white-space: nowrap;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 9px 14px; font-size: 14px; }
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--icon { padding: 9px; width: 38px; height: 38px; }
.btn--primary { background: var(--navy-800); color: #fff; box-shadow: 0 8px 18px -8px rgba(11, 42, 91, .6); }
.btn--primary:hover { background: var(--navy-700); }
.btn--gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-900); box-shadow: 0 8px 20px -8px rgba(245, 183, 42, .8); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 8px 18px -8px rgba(31, 168, 85, .7); }
.btn--wa:hover { background: var(--wa-dark); }
.btn--ghost { background: #fff; color: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy-800); }
.btn--light { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--light:hover { background: rgba(255, 255, 255, .24); }
.link-btn { background: none; border: 0; color: var(--blue-600); font-weight: 700; padding: 4px 0; }
.link-btn:hover { text-decoration: underline; }

/* ---------- Topo ---------- */
.topbar {
    position: fixed; inset: 0 0 auto 0; z-index: 50;
    padding: 14px 0; transition: background .3s, box-shadow .3s, padding .3s;
}
.topbar.is-solid { background: rgba(255, 255, 255, .92); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 1px 0 var(--line); padding: 10px 0; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; min-width: 0; }
.brand img { border-radius: 12px; background: #fff; padding: 4px; box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand__text strong { font-size: 17px; font-weight: 800; }
.brand__text small { font-size: 12px; opacity: .8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar.is-solid .brand, .topbar--dark .brand { color: var(--ink); }
.topnav { display: flex; align-items: center; gap: 26px; }
.topnav a:not(.btn) { color: rgba(255, 255, 255, .88); font-weight: 600; font-size: 15px; }
.topnav a:not(.btn):hover { color: #fff; }
.topbar.is-solid .topnav a:not(.btn) { color: var(--text); }
.topbar.is-solid .topnav a:not(.btn):hover { color: var(--navy-800); }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden; color: #fff;
    padding: 150px 0 120px;
    background: radial-gradient(1200px 600px at 80% -10%, #2c6fd6 0%, transparent 60%),
                linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
    position: absolute; inset: 0; opacity: .12;
    background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; animation: float 14s ease-in-out infinite; }
.blob--1 { width: 420px; height: 420px; background: var(--gold-500); top: -120px; right: -80px; opacity: .35; }
.blob--2 { width: 360px; height: 360px; background: var(--blue-500); bottom: -140px; left: -100px; animation-delay: -5s; }
.blob--3 { width: 220px; height: 220px; background: #7cc4ff; top: 40%; left: 55%; opacity: .25; animation-delay: -9s; }
@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -25px) scale(1.08); } }
.hero__inner { position: relative; text-align: center; max-width: 880px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22); color: var(--gold-400);
    margin-bottom: 20px;
}
.eyebrow--dark { background: var(--gold-100); border-color: transparent; color: #9a6a00; }
.hero h1 { color: #fff; font-size: clamp(34px, 6vw, 62px); font-weight: 800; margin-bottom: 18px; }
.hl {
    background: linear-gradient(90deg, var(--gold-400), #ffe29a);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { font-size: clamp(16px, 2.2vw, 19px); color: rgba(255, 255, 255, .82); max-width: 640px; margin: 0 auto 34px; }
.search {
    position: relative; display: flex; align-items: center; gap: 8px;
    max-width: 620px; margin: 0 auto; padding: 8px 8px 8px 54px;
    background: #fff; border-radius: 999px; box-shadow: var(--shadow-lg);
}
.search__icon { position: absolute; left: 20px; color: var(--muted); }
.search input { flex: 1; min-width: 0; border: 0; outline: 0; font: inherit; font-size: 16px; color: var(--ink); background: transparent; padding: 10px 0; }
.search input::placeholder { color: #94a3b8; }
.search input::-webkit-search-cancel-button { cursor: pointer; }
.stats { display: flex; justify-content: center; gap: 14px; margin: 44px 0 0; flex-wrap: wrap; }
.stat {
    min-width: 150px; padding: 16px 22px; border-radius: 18px;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.stat dt { font-size: 13px; color: rgba(255, 255, 255, .7); font-weight: 600; }
.stat dd { margin: 2px 0 0; font-size: 32px; font-weight: 800; color: #fff; line-height: 1.1; }
.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 70px; fill: var(--bg); }

/* ---------- Seções ---------- */
.section { padding: 72px 0; }
.section--tight { padding: 40px 0 72px; }
.section--soft { background: linear-gradient(180deg, #eef3fb, var(--bg)); }
.section__head { text-align: center; margin-bottom: 40px; }
.section__head h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; }
.section__head--row { display: flex; align-items: center; justify-content: space-between; text-align: left; gap: 16px; margin-bottom: 26px; }
.section__head--row h2 { font-size: clamp(22px, 3vw, 28px); margin: 0; }
#parceiros { padding-top: 24px; scroll-margin-top: 70px; }

/* ---------- Filtros ---------- */
.filters {
    position: sticky; top: 64px; z-index: 20;
    display: flex; flex-direction: column; gap: 14px;
    padding: 14px; margin: 0 -14px 10px;
    background: rgba(246, 248, 252, .9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
}
.segmented { display: inline-flex; align-self: center; padding: 5px; gap: 4px; background: #fff; border-radius: 999px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.segmented::-webkit-scrollbar { display: none; }
.segmented__btn { border: 0; background: transparent; padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; color: var(--muted); white-space: nowrap; transition: all .2s var(--ease); }
.segmented__btn:hover { color: var(--navy-800); }
.segmented__btn.is-active { background: var(--navy-800); color: #fff; box-shadow: 0 6px 14px -6px rgba(11, 42, 91, .7); }
.chips { display: flex; gap: 8px; overflow-x: auto; padding: 2px 2px 6px; scrollbar-width: thin; justify-content: flex-start; }
@media (min-width: 1000px) { .chips { flex-wrap: wrap; justify-content: center; overflow: visible; } }
.fchip { flex-shrink: 0; border: 1.5px solid var(--line); background: #fff; color: var(--text); padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: all .2s var(--ease); }
.fchip:hover { border-color: var(--blue-500); color: var(--navy-800); }
.fchip.is-active { background: var(--gold-100); border-color: var(--gold-500); color: #7a5300; }
.results-bar { display: flex; align-items: center; justify-content: space-between; margin: 8px 0 20px; color: var(--muted); }
.results-bar p { margin: 0; }
.results-bar strong { color: var(--ink); }

/* ---------- Grid & cards ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.pcard {
    position: relative; display: flex; flex-direction: column;
    background: var(--card); border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(15, 27, 45, .06); box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--blue-50); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6, 26, 58, .35)); }
.pcard__placeholder { width: 100%; height: 100%; display: grid; place-items: center; position: relative; color: #fff; overflow: hidden; }
.pcard__placeholder::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), transparent 40%), radial-gradient(circle at 80% 90%, rgba(255,255,255,.18), transparent 45%); }
.pcard__emoji { position: absolute; font-size: 90px; opacity: .22; right: -6px; bottom: -14px; transform: rotate(-12deg); }
.pcard__initials { position: relative; font-size: 46px; font-weight: 800; letter-spacing: -.03em; text-shadow: 0 4px 20px rgba(0, 0, 0, .2); }
.cat-alimentacao { background: linear-gradient(135deg, #ff8a3d, #e5484d); }
.cat-saude { background: linear-gradient(135deg, #14b8a6, #0e7490); }
.cat-farmacia { background: linear-gradient(135deg, #22c55e, #15803d); }
.cat-educacao { background: linear-gradient(135deg, #3b82f6, #1e3a8a); }
.cat-papelaria { background: linear-gradient(135deg, #f59e0b, #b45309); }
.cat-beleza { background: linear-gradient(135deg, #ec4899, #9d174d); }
.cat-esportes { background: linear-gradient(135deg, #84cc16, #3f6212); }
.cat-vestuario { background: linear-gradient(135deg, #8b5cf6, #5b21b6); }
.cat-otica { background: linear-gradient(135deg, #06b6d4, #1d4ed8); }
.cat-automotivo { background: linear-gradient(135deg, #64748b, #1e293b); }
.cat-tecnologia { background: linear-gradient(135deg, #6366f1, #312e81); }
.cat-lazer { background: linear-gradient(135deg, #f43f5e, #f59e0b); }
.cat-casa { background: linear-gradient(135deg, #a16207, #57534e); }
.cat-servicos { background: linear-gradient(135deg, #0ea5e9, #0f766e); }
.cat-outros { background: linear-gradient(135deg, var(--blue-600), var(--navy-800)); }

.ribbon {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 11px; border-radius: 999px; font-size: 12px; font-weight: 800;
    background: rgba(255, 255, 255, .95); color: #9a6a00; box-shadow: var(--shadow-sm);
}
.ribbon .icon { fill: var(--gold-500); stroke: var(--gold-500); }
/* Selo de desconto: fica "pendurado" entre a imagem e o texto do card */
.discount {
    position: relative; z-index: 3; align-self: flex-end; margin: -44px 16px 0 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 76px; height: 76px; border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-400), var(--gold-500)); color: var(--navy-900);
    border: 4px solid #fff; box-shadow: 0 10px 22px -8px rgba(245, 150, 20, .75);
    line-height: 1; text-align: center;
    transform: rotate(-8deg); transition: transform .35s var(--ease);
}
.pcard:hover .discount { transform: rotate(0) scale(1.06); }
.discount strong { font-size: 27px; font-weight: 800; letter-spacing: -.04em; }
.discount strong small { font-size: 15px; }
.discount span { font-size: 11px; font-weight: 800; letter-spacing: .08em; margin-top: 2px; }
.pcard__body { display: flex; flex-direction: column; flex: 1; padding: 0 20px 20px; margin-top: -28px; }
.pcard__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; padding-right: 70px; }
.detail-hero .pcard__meta { padding-right: 0; }
.chip { display: inline-flex; align-items: center; gap: 4px; padding: 5px 10px; border-radius: 999px; background: var(--blue-50); color: var(--navy-700); font-size: 12.5px; font-weight: 700; }
.chip--glass { background: rgba(255, 255, 255, .16); color: #fff; border: 1px solid rgba(255, 255, 255, .28); backdrop-filter: blur(6px); }
.aud { display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.aud--todos { background: #e7f8ee; color: #137a3e; }
.aud--pais { background: #fff1e6; color: #b4530b; }
.aud--funcionarios { background: #f1ebff; color: #6d28d9; }
.pcard__title { font-size: 19px; font-weight: 800; margin: 2px 0 6px; }
.pcard__title a { color: var(--ink); }
.pcard__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.pcard__offer { font-size: 14.5px; color: var(--text); margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard__addr { display: flex; gap: 6px; align-items: flex-start; font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.pcard__addr .icon { margin-top: 2px; color: var(--blue-600); }
.pcard__actions { display: flex; gap: 8px; margin-top: auto; position: relative; z-index: 2; }
.pcard__more { margin-left: auto; }

/* ---------- Estados vazios ---------- */
.empty { text-align: center; padding: 60px 20px; background: #fff; border-radius: var(--radius); border: 2px dashed var(--line); }
.empty__icon { font-size: 52px; margin-bottom: 8px; }
.empty p { color: var(--muted); margin: 0; }

/* ---------- Passos ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; counter-reset: s; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); border: 1px solid rgba(15, 27, 45, .06); overflow: hidden; }
.step__num { position: absolute; right: 18px; top: 6px; font-size: 80px; font-weight: 800; color: var(--blue-50); line-height: 1; }
.step__icon { position: relative; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, var(--navy-800), var(--blue-600)); color: var(--gold-400); margin-bottom: 18px; box-shadow: 0 10px 20px -10px rgba(11, 42, 91, .8); }
.step h3 { position: relative; font-size: 19px; }
.step p { position: relative; margin: 0; color: var(--muted); }

/* ---------- CTA ---------- */
.cta {
    position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
    padding: 48px; border-radius: 28px; color: #fff;
    background: radial-gradient(600px 300px at 90% 10%, rgba(245, 183, 42, .35), transparent 60%), linear-gradient(135deg, var(--navy-800), var(--navy-700));
    box-shadow: var(--shadow-lg);
}
.cta__text { max-width: 620px; }
.cta h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; }
.cta p { color: rgba(255, 255, 255, .8); margin: 0; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta__note { color: rgba(255, 255, 255, .85) !important; }

/* ---------- Detalhe ---------- */
.detail-hero { position: relative; min-height: 440px; display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--navy-900); }
.detail-hero__media { position: absolute; inset: 0; }
.detail-hero__media img, .detail-hero__media .pcard__placeholder { width: 100%; height: 100%; object-fit: cover; }
.detail-hero__media .pcard__emoji { font-size: 260px; }
.detail-hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 26, 58, .55) 0%, rgba(6, 26, 58, .25) 35%, rgba(6, 26, 58, .92) 100%); }
.detail-hero__content { position: relative; padding-top: 120px; padding-bottom: 44px; }
.detail-hero h1 { color: #fff; font-size: clamp(32px, 5.5vw, 54px); font-weight: 800; margin: 12px 0 8px; }
.detail-hero__lead { font-size: 18px; color: rgba(255, 255, 255, .85); max-width: 720px; margin: 0; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; opacity: .9; margin-bottom: 18px; }
.back-link:hover { opacity: 1; }
.detail { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
.detail__main { display: flex; flex-direction: column; gap: 22px; }
.detail__side { position: sticky; top: 90px; }
.offer-card {
    display: flex; align-items: center; gap: 24px; padding: 26px; margin-top: -80px; position: relative; z-index: 2;
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
    border: 1px solid rgba(15, 27, 45, .06);
}
.offer-card__badge {
    flex-shrink: 0; width: 120px; height: 120px; border-radius: 28px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
    background: linear-gradient(145deg, var(--gold-400), var(--gold-500)); color: var(--navy-900);
    box-shadow: 0 14px 28px -12px rgba(245, 150, 20, .8);
}
.offer-card__badge strong { font-size: 46px; font-weight: 800; letter-spacing: -.04em; }
.offer-card__badge strong small { font-size: 22px; }
.offer-card__badge span { font-size: 13px; font-weight: 800; margin-top: 6px; }
.offer-card h2 { font-size: 22px; margin-bottom: 6px; }
.offer-card p { margin: 0 0 4px; }
.offer-card .muted { display: flex; align-items: center; gap: 6px; font-size: 14px; }
.panel { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid rgba(15, 27, 45, .06); }
.panel h3 { display: flex; align-items: center; gap: 8px; font-size: 18px; margin-bottom: 12px; }
.panel p { margin: 0; }
.panel--warn { background: linear-gradient(180deg, #fffaf0, #fff); border-color: #fde8b6; }
.panel--warn h3 { color: #8a5a00; }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); aspect-ratio: 16 / 8; background: var(--blue-50); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact h3 { margin-bottom: 18px; }
.contact__list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.contact__list li { display: flex; gap: 12px; align-items: flex-start; }
.contact__list li > span:last-child { display: flex; flex-direction: column; font-size: 15px; min-width: 0; word-break: break-word; }
.contact__list strong { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.contact__ic { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: var(--blue-50); color: var(--blue-600); }
.contact__ic--wa { background: #e7f8ee; color: var(--wa); }
.contact__ic--ig { background: #fdeef6; color: #c13584; }
.contact__actions { display: flex; flex-direction: column; gap: 10px; }

/* ---------- Rodapé ---------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .75); padding: 50px 0 24px; margin-top: 20px; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer__brand { display: flex; gap: 14px; align-items: center; }
.footer__brand img { background: #fff; border-radius: 12px; padding: 4px; }
.footer__brand strong { color: #fff; font-size: 17px; }
.footer__brand p { margin: 2px 0 0; font-size: 14px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer__links a { color: rgba(255, 255, 255, .8); font-weight: 600; }
.footer__links a:hover { color: var(--gold-400); }
.footer__bottom { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; padding-top: 20px; font-size: 13px; color: rgba(255, 255, 255, .5); }

.footer__credit { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 4px 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 13px; color: rgba(255, 255, 255, .55); text-align: center; }
.footer__credit strong { color: rgba(255, 255, 255, .85); font-weight: 700; }
.footer__credit a { color: var(--gold-400); font-weight: 600; }
.footer__credit a:hover { text-decoration: underline; }
.footer__sep { opacity: .5; }

/* ---------- Página do QR Code (promoção) ---------- */
.promo {
    position: relative; overflow: hidden; min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center; padding: 110px 0 60px;
    background: radial-gradient(900px 500px at 50% 0%, rgba(245, 183, 42, .35), transparent 60%),
                linear-gradient(160deg, var(--navy-900), var(--navy-800) 50%, var(--navy-700));
}
.promo--ended { background: linear-gradient(160deg, #1e293b, var(--navy-800)); }
.promo__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.promo-card {
    width: 100%; max-width: 460px; text-align: center; padding: 34px 28px 28px;
    background: #fff; border-radius: 28px; box-shadow: 0 40px 80px -24px rgba(0, 0, 0, .55);
    animation: pop .7s var(--ease) both;
}
@keyframes pop { from { opacity: 0; transform: translateY(30px) scale(.94); } to { opacity: 1; transform: none; } }
.promo-card__gift {
    width: 84px; height: 84px; margin: -76px auto 14px; border-radius: 26px;
    display: grid; place-items: center; font-size: 40px;
    background: linear-gradient(145deg, var(--gold-400), var(--gold-500)); color: var(--navy-900);
    box-shadow: 0 16px 30px -10px rgba(245, 150, 20, .8); border: 5px solid #fff;
    animation: wiggle 2.4s ease-in-out 1s infinite;
}
.promo-card__gift--muted { background: #e2e8f0; box-shadow: none; animation: none; }
@keyframes wiggle { 0%, 100% { transform: rotate(0); } 10% { transform: rotate(-10deg); } 20% { transform: rotate(10deg); } 30% { transform: rotate(-6deg); } 40% { transform: rotate(0); } }
.promo-card__eyebrow { font-size: 22px; font-weight: 800; color: #b07800; margin: 0; }
.promo-card__title { font-size: clamp(26px, 6vw, 32px); font-weight: 800; margin: 2px 0 14px; }
.promo-badge {
    display: inline-flex; flex-direction: column; align-items: center; line-height: 1;
    padding: 18px 34px 16px; border-radius: 24px; margin-bottom: 14px;
    background: linear-gradient(145deg, var(--navy-800), var(--blue-600)); color: #fff;
    box-shadow: 0 18px 36px -14px rgba(11, 42, 91, .8);
}
.promo-badge strong { font-size: 84px; font-weight: 800; letter-spacing: -.05em; color: var(--gold-400); }
.promo-badge strong small { font-size: 40px; }
.promo-badge span { font-size: 16px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.promo-card__offer { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.promo-card__text { color: var(--muted); margin: 0 0 20px; }
.promo-card__cta { font-size: 17px; padding: 18px 20px; white-space: normal; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(31, 168, 85, .55); } 50% { box-shadow: 0 0 0 14px rgba(31, 168, 85, 0); } }
.promo-card__small { font-size: 13.5px; color: var(--muted); margin: 16px 0 0; }
.promo__more { color: rgba(255, 255, 255, .85); font-weight: 700; }
.promo__more:hover { color: var(--gold-400); }
.confetti { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.confetti span { position: absolute; top: -20px; border-radius: 2px; opacity: .9; animation: fall linear infinite; }
@keyframes fall {
    0% { transform: translateY(-20px) rotate(0); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(105vh) rotate(720deg); opacity: .2; }
}
@media (max-width: 720px) {
    .promo { padding: 100px 0 40px; }
    .promo-card { padding: 30px 20px 24px; border-radius: 24px; }
    .promo-badge strong { font-size: 72px; }
}

/* ---------- Animação de entrada ---------- */
.will-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.will-reveal.is-visible { opacity: 1; transform: none; }
.pcard.is-hiding { display: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
    .detail { grid-template-columns: 1fr; }
    .detail__side { position: static; }
}
@media (max-width: 720px) {
    .topnav a:not(.btn) { display: none; }
    .brand__text small { max-width: 170px; }
    .hero { padding: 120px 0 96px; }
    .stats { gap: 10px; }
    .stat { min-width: 0; flex: 1 1 30%; padding: 12px 10px; }
    .stat dd { font-size: 24px; }
    .stat dt { font-size: 11.5px; }
    .search { padding-left: 46px; }
    .search__icon { left: 16px; }
    .search .btn { padding: 12px 16px; }
    .section { padding: 56px 0; }
    .filters { position: static; margin: 0 -20px 6px; border-radius: 0; padding: 8px 20px; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
    .chips { margin: 0 -20px; padding: 2px 20px 6px; scrollbar-width: none; }
    .chips::-webkit-scrollbar { display: none; }
    .segmented { align-self: stretch; }
    .segmented__btn { flex: 1; padding: 10px 12px; font-size: 13px; }
    .grid { grid-template-columns: 1fr; gap: 18px; }
    .cta { padding: 32px 24px; }
    .cta__actions, .cta__actions .btn { width: 100%; }
    .offer-card { flex-direction: column; text-align: center; margin-top: -60px; padding: 22px; }
    .offer-card .muted { justify-content: center; }
    .detail-hero { min-height: 380px; }
    .map { aspect-ratio: 4 / 3; }
    .section__head--row { flex-direction: column; align-items: flex-start; }
}
@media (min-width: 560px) and (max-width: 720px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) {
    .brand__text small { display: none; }
    .topnav .btn { padding: 8px 12px; font-size: 13px; }
    .pcard__actions .btn--wa { font-size: 0; gap: 0; width: 38px; height: 38px; padding: 9px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .will-reveal { opacity: 1; transform: none; }
}
