/* ================================================
   BRASAPOA — Premium Design System v2
   Editorial gastronomy aesthetic
   Amber #F0A500 · Black #000 · White #FFF
   ================================================ */

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --amber:      #F0A500;
  --amber-dim:  #C98A00;
  --amber-glow: rgba(240,165,0,.12);
  --red:        #CC3300;
  --black:      #000000;
  --ink:        #0D0D0D;
  --charcoal:   #161616;
  --stone:      #242424;
  --muted:      #3A3A3A;
  --ash:        #888888;
  --silk:       #D4D4D4;
  --white:      #FFFFFF;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-back:  cubic-bezier(.34,1.56,.64,1);
  --t:          .28s;
  --radius:     6px;
  --radius-lg:  12px;
  --hh:         72px;
  --max:        1320px;
}

/* ─── BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--amber); color: var(--black); }

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  letter-spacing: .04em;
  line-height: 1.0;
  font-weight: 400;
}
h1 { font-size: clamp(3.5rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: 1.1rem; letter-spacing: .12em; }

/* ─── LAYOUT ─────────────────────────────────── */
.bp-container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .bp-container { padding: 0 20px; } }

.bp-section { padding: 100px 0; }

.bp-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.bp-section__header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.bp-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}
.bp-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
}

.bp-section__title { color: var(--white); }
.bp-section__link {
  color: var(--amber);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: opacity var(--t);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--amber);
}
.bp-section__link:hover { opacity: .6; }

/* ─── GRID ─────────────────────────────────────── */
.bp-grid { display: grid; gap: 20px; }
.bp-grid--3 { grid-template-columns: repeat(3,1fr); }
.bp-grid--4 { grid-template-columns: repeat(4,1fr); }
.bp-grid--2 { grid-template-columns: repeat(2,1fr); }
@media (max-width: 1024px) { .bp-grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 800px)  { .bp-grid--3,.bp-grid--2 { grid-template-columns: 1fr; } }
@media (max-width: 640px)  { .bp-grid--4 { grid-template-columns: 1fr; } }

/* ─── BUTTONS ─────────────────────────────────── */
.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  border-radius: 2px;
}
.bp-btn--primary {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}
.bp-btn--primary:hover {
  background: var(--black);
  color: var(--amber);
  transform: translateY(-1px);
}
.bp-btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: var(--white);
}
.bp-btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.bp-btn--outline-amber {
  border-color: var(--amber);
  color: var(--amber);
  background: transparent;
}
.bp-btn--outline-amber:hover {
  background: var(--amber);
  color: var(--black);
}
.bp-btn--sm { padding: 9px 22px; font-size: .72rem; }
.bp-btn--lg { padding: 17px 44px; font-size: .85rem; }

/* ─── TAGS / PILLS ────────────────────────────── */
.bp-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: .75rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.bp-tag:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: var(--amber-glow);
}

/* ─── HEADER ─────────────────────────────────── */
.bp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--hh);
  transition: background var(--t), box-shadow var(--t);
}
.bp-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.9) 0%, rgba(0,0,0,0) 100%);
  transition: opacity var(--t);
}
.bp-header.scrolled::before {
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.bp-header.scrolled { box-shadow: 0 1px 0 rgba(255,255,255,.06); }

.bp-header__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 768px) { .bp-header__inner { padding: 0 20px; } }

/* Logo */
.bp-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0;
  flex-shrink: 0;
}
.bp-logo__script {
  font-family: var(--font-script);
  font-size: .9rem;
  color: var(--amber);
  line-height: 1.2;
}
.bp-logo__main {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: .1em;
  line-height: .9;
}
.bp-logo__sub {
  font-size: .45rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav */
.bp-nav { flex: 1; display: flex; justify-content: center; }
.bp-nav__list { display: flex; gap: 0; align-items: center; }
.bp-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color var(--t);
  position: relative;
}
.bp-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.bp-nav__link:hover,
.bp-nav__item.current-menu-item .bp-nav__link { color: var(--white); }
.bp-nav__link:hover::after { transform: scaleX(1); }
.bp-nav__arrow { width: 12px; height: 12px; transition: transform var(--t); }
.bp-nav__item:hover .bp-nav__arrow { transform: rotate(180deg); }

/* Mega menu */
.bp-mega {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 2px solid var(--amber);
  padding: 32px;
  min-width: 580px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t) var(--ease);
  pointer-events: none;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}
.bp-nav__item--mega { position: relative; }
.bp-nav__item--mega:hover .bp-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.bp-mega__inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.bp-mega__title {
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--amber);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bp-mega__link {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  letter-spacing: .04em;
  transition: color var(--t);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.bp-mega__link:last-of-type { border-bottom: none; }
.bp-mega__link:hover { color: var(--amber); }
.bp-mega__link--gold { color: var(--amber); font-weight: 600; }
.bp-mega__cta {
  display: inline-block;
  margin-top: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
  transition: opacity var(--t);
}
.bp-mega__cta:hover { opacity: .6; }

/* Header actions */
.bp-header__actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.bp-header__search-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
}
.bp-header__search-btn svg { width: 18px; height: 18px; }
.bp-header__search-btn:hover { color: var(--amber); }

/* Hamburger */
.bp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.bp-hamburger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: all var(--t) var(--ease);
}
.bp-hamburger span:nth-child(1) { width: 100%; }
.bp-hamburger span:nth-child(2) { width: 70%; }
.bp-hamburger span:nth-child(3) { width: 85%; }
.bp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.bp-hamburger.open span:nth-child(2) { opacity: 0; }
.bp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* Mobile nav */
.bp-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid rgba(240,165,0,.2);
  padding: 20px 20px 32px;
}
.bp-mobile-nav a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--t);
}
.bp-mobile-nav a:hover { color: var(--amber); }
.bp-mobile-nav__cta {
  margin-top: 16px;
  background: var(--amber) !important;
  color: var(--black) !important;
  text-align: center;
  border-radius: 2px;
  border-bottom: none !important;
}
@media (max-width: 1024px) {
  .bp-nav { display: none; }
  .bp-hamburger { display: flex; }
  .bp-header__actions .bp-btn { display: none; }
  .bp-mobile-nav.open { display: flex; }
}

/* ─── HERO ──────────────────────────────────── */
.bp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--hh); /* safe zone: never go behind fixed header */
  overflow: hidden;
}

.bp-hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544025162-d76694265947?w=1600&q=90') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.bp-hero.loaded .bp-hero__bg { transform: scale(1); }

.bp-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.92) 35%, rgba(0,0,0,.4) 70%, rgba(0,0,0,.1) 100%),
    linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 50%);
}

.bp-hero__content {
  position: relative;
  z-index: 2;
  padding: 40px 40px 80px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.bp-hero__kicker {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
  opacity: .9;
}

.bp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: .92;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 20px;
  max-width: 700px;
}
.bp-hero__title em {
  font-style: normal;
  color: var(--amber);
  -webkit-text-stroke: 0;
}

.bp-hero__sub {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.bp-hero__search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  max-width: 580px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color var(--t);
}
.bp-hero__search:focus-within { border-color: var(--amber); }
.bp-hero__search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 16px 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
}
.bp-hero__search input::placeholder { color: rgba(255,255,255,.35); }
.bp-hero__search select {
  background: rgba(255,255,255,.06);
  border: none;
  border-left: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.1);
  outline: none;
  padding: 16px 14px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
  font-size: .82rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  min-width: 130px;
}
.bp-hero__search select option { background: var(--charcoal); color: var(--white); }
.bp-hero__search button {
  background: var(--amber);
  border: none;
  padding: 16px 28px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  transition: background var(--t);
}
.bp-hero__search button:hover { background: var(--amber-dim); }

.bp-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.bp-hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.bp-hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── TICKER / MARQUEE ─────────────────────────── */
.bp-ticker {
  background: var(--amber);
  color: var(--black);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.bp-ticker__inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.bp-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-right: 60px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .1em;
}
.bp-ticker__item::before {
  content: '🔥';
  font-size: .9rem;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ─── STATS ──────────────────────────────────── */
.bp-stats-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 640px) { .bp-stats { grid-template-columns: repeat(2,1fr); } }
.bp-stat {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.bp-stat:last-child { border-right: none; }
.bp-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--amber);
  line-height: 1;
  display: block;
}
.bp-stat__label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 6px;
  display: block;
}

/* ─── FLAME DIVIDER ─────────────────────────── */
.bp-flame-divider { display: block; line-height: 0; overflow: hidden; }
.bp-flame-divider svg { width: 100%; height: 60px; }

/* ─── CARDS — base ──────────────────────────── */
.bp-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
  display: flex;
  flex-direction: column;
}
.bp-card:hover {
  border-color: rgba(240,165,0,.3);
  transform: translateY(-3px);
}

.bp-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  display: block;
}
.bp-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.bp-card:hover .bp-card__img { transform: scale(1.06); }

.bp-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
}
.bp-card__badge--amber { background: var(--amber); color: var(--black); }
.bp-card__badge--gold  {
  background: linear-gradient(90deg, #C8960C, #F5C840);
  color: var(--black);
}

.bp-card__premium {
  position: absolute;
  top: 14px; right: 14px;
  width: 28px; height: 28px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
}

.bp-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bp-card__meta-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
}
.bp-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: .03em;
  color: var(--white);
}
.bp-card__title a { transition: color var(--t); }
.bp-card__title a:hover { color: var(--amber); }
.bp-card__excerpt {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  flex: 1;
}
.bp-card__date { font-size: .72rem; color: var(--amber); letter-spacing: .06em; }
.bp-card__price { font-size: .85rem; color: rgba(255,255,255,.4); margin-top: auto; }
.bp-card__readmore {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: auto;
  transition: opacity var(--t);
}
.bp-card__readmore:hover { opacity: .6; }

/* Skeleton */
.bp-card--skeleton {
  min-height: 320px;
  background: linear-gradient(90deg, var(--charcoal) 25%, var(--stone) 50%, var(--charcoal) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border: none;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ─── DESTAQUES grid ────────────────────────── */
.bp-destaques-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bp-destaques-grid .bp-card:first-child {
  grid-row: span 2;
  grid-column: 1;
}
.bp-destaques-grid .bp-card:first-child .bp-card__img-wrap { aspect-ratio: auto; flex: 1; min-height: 240px; }
@media (max-width: 900px) {
  .bp-destaques-grid { grid-template-columns: 1fr; }
  .bp-destaques-grid .bp-card:first-child { grid-row: span 1; }
}

/* ─── CATEGORY GRID ─────────────────────────── */
.bp-cat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
@media (max-width: 800px) { .bp-cat-grid { grid-template-columns: repeat(2,1fr); } }

.bp-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px 20px;
  background: var(--stone);
  border: 1px solid rgba(255,255,255,.05);
  min-height: 140px;
  overflow: hidden;
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.bp-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--amber-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.bp-cat-card:hover { border-color: rgba(240,165,0,.3); transform: translateY(-2px); }
.bp-cat-card:hover::before { opacity: 1; }
.bp-cat-card__icon {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  color: var(--amber);
  opacity: .2;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.bp-cat-card__icon svg {
  width: 100%; height: 100%;
}
.bp-cat-card:hover .bp-cat-card__icon {
  opacity: .85;
  transform: scale(1.1) rotate(-4deg);
}
.bp-cat-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .06em;
  color: var(--white);
  transition: color var(--t);
  position: relative;
  z-index: 1;
}
.bp-cat-card:hover .bp-cat-card__name { color: var(--amber); }
.bp-cat-card__count {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

/* ─── EDITORIAL SECTION (experiências) ─────── */
.bp-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 900px) { .bp-editorial { grid-template-columns: 1fr; } }
.bp-editorial__text {
  background: var(--charcoal);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) { .bp-editorial__text { padding: 40px 24px; } }
.bp-editorial__img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.bp-editorial__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.bp-editorial:hover .bp-editorial__img img { transform: scale(1.04); }
.bp-editorial__excerpt { color: rgba(255,255,255,.55); line-height: 1.8; }

/* ─── CTA SECTION ────────────────────────────── */
.bp-cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.bp-cta-section__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1400') center/cover;
}
.bp-cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
}
.bp-cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
}
.bp-cta-section__content h2 { color: var(--amber); margin-bottom: 16px; }
.bp-cta-section__content p { color: rgba(255,255,255,.65); margin-bottom: 36px; font-size: 1.05rem; }

/* ─── PLANS ─────────────────────────────────── */
.bp-plans-section { background: var(--charcoal); }
.bp-plans-section h2 { color: var(--white); }
.bp-listing-cta { text-align: center; }
.bp-listing-cta__inner { max-width: 900px; margin: 0 auto; }
.bp-listing-cta p { color: rgba(255,255,255,.55); margin: 12px 0 52px; font-size: 1rem; }
.bp-listing-cta__plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 640px) { .bp-listing-cta__plans { grid-template-columns: 1fr; } }

.bp-plan {
  background: var(--stone);
  border: 1px solid rgba(255,255,255,.07);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  text-align: left;
  transition: border-color var(--t);
}
.bp-plan:hover { border-color: rgba(255,255,255,.15); }
.bp-plan--featured { border-color: var(--amber); }
.bp-plan--featured:hover { border-color: var(--amber); }
.bp-plan__badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--amber);
  color: var(--black);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.bp-plan h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: .08em;
}
.bp-plan__price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--amber);
  line-height: 1;
  letter-spacing: .02em;
}
.bp-plan__price span { font-family: var(--font-body); font-size: .9rem; color: rgba(255,255,255,.35); }
.bp-plan ul { display: flex; flex-direction: column; gap: 8px; }
.bp-plan ul li {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  padding-left: 16px;
  position: relative;
}
.bp-plan ul li::before { content: '—'; position: absolute; left: 0; color: var(--amber); }
.bp-plan .bp-btn { margin-top: 8px; width: 100%; }

/* ─── BLOG / SINGLE ─────────────────────────── */
.bp-blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
@media (max-width: 900px) { .bp-blog-layout { grid-template-columns: 1fr; } }

.bp-post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  margin-bottom: 16px;
  transition: border-color var(--t), transform var(--t);
}
.bp-post-card:hover { border-color: rgba(240,165,0,.25); transform: translateX(4px); }
.bp-post-card__img { overflow: hidden; }
.bp-post-card__img img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; transition: transform .5s; }
.bp-post-card:hover .bp-post-card__img img { transform: scale(1.05); }
.bp-post-card__body { padding: 28px; display: flex; flex-direction: column; gap: 8px; }
.bp-post-card__cat { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.bp-post-card__title { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); }
.bp-post-card__title a:hover { color: var(--amber); }
.bp-post-card__excerpt { color: rgba(255,255,255,.4); font-size: .88rem; flex: 1; }
.bp-post-card__meta { font-size: .72rem; color: rgba(255,255,255,.25); }
@media (max-width: 640px) { .bp-post-card { grid-template-columns: 1fr; } }

/* Sidebar */
.bp-sidebar__widget {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.05);
  padding: 28px;
  margin-bottom: 16px;
}
.bp-sidebar__title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .12em;
  color: var(--amber);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ─── PAGE HERO (hero genérico de páginas internas) ────── */
.bp-page-hero,
.bp-exp-hero,
.bp-buscar-hero,
.bp-academia-hero,
.bp-eventos-hero,
.bp-loja-hero,
.bp-contato-hero,
.bp-cadastro-hero {
  padding: calc(var(--hh) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
}

/* Overlay escuro sobre imagem de fundo */
.bp-exp-hero::before,
.bp-academia-hero::before,
.bp-buscar-hero::before,
.bp-eventos-hero::before,
.bp-loja-hero::before,
.bp-contato-hero::before,
.bp-cadastro-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.78) 0%, rgba(0,0,0,.58) 100%);
  z-index: 0;
}

/* Conteúdo acima do overlay */
.bp-exp-hero .bp-container,
.bp-academia-hero .bp-container,
.bp-buscar-hero .bp-container,
.bp-eventos-hero .bp-container,
.bp-loja-hero .bp-container,
.bp-contato-hero .bp-container,
.bp-cadastro-hero .bp-container { position: relative; z-index: 1; }

/* ── Experiências: restaurante elegante, jantar intimista */
.bp-exp-hero {
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=85') center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bp-exp-hero h1 { color: var(--white); }
.bp-exp-hero p   { color: rgba(255,255,255,.65); max-width: 540px; margin-top: 12px; }

/* ── Eventos: festival gastronômico, feira */
.bp-eventos-hero {
  background: url('https://images.unsplash.com/photo-1533777324565-a040eb52facd?w=1600&q=85') center/cover no-repeat;
  border-bottom: 1px solid rgba(240,165,0,.15);
}

/* ── Loja: produtos artesanais, gastronomia */
.bp-loja-hero {
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=85') center/cover no-repeat;
}

/* ── Contato: ambiente acolhedor */
.bp-contato-hero {
  background: url('https://images.unsplash.com/photo-1445116572660-236099ec97a0?w=1600&q=85') center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ── Cadastro: restaurante premium, negócios */
.bp-cadastro-hero {
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=85') center 30%/cover no-repeat;
  border-bottom: 1px solid rgba(240,165,0,.15);
}

/* ─── BUSCAR PAGE ────────────────────────────── */
.bp-buscar-hero {
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=85') center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bp-buscar-hero h1 { margin-bottom: 8px; }
.bp-buscar-hero p { color: rgba(255,255,255,.45); margin-bottom: 28px; font-size: .95rem; }

.bp-buscar-form {
  display: flex;
  max-width: 640px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  overflow: hidden;
}
.bp-buscar-form:focus-within { border-color: var(--amber); }
.bp-buscar-form input[type="text"] {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 14px 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
}
.bp-buscar-form input::placeholder { color: rgba(255,255,255,.3); }
.bp-buscar-form select {
  background: rgba(255,255,255,.04);
  border: none;
  border-left: 1px solid rgba(255,255,255,.08);
  outline: none;
  padding: 14px 14px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
  font-size: .82rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-width: 120px;
}
.bp-buscar-form select option { background: var(--charcoal); }
.bp-buscar-form button, .bp-buscar-form .bp-btn {
  background: var(--amber);
  border: none;
  padding: 14px 28px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t);
}
.bp-buscar-form button:hover, .bp-buscar-form .bp-btn:hover { background: var(--amber-dim); }

.bp-buscar-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 48px 0;
  align-items: start;
}
@media (max-width: 900px) { .bp-buscar-layout { grid-template-columns: 1fr; } }

/* Filters */
.bp-filters { position: sticky; top: calc(var(--hh) + 20px); }
.bp-filters__card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.05);
  padding: 24px;
}
.bp-filters__title {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bp-filter-group { margin-bottom: 20px; }
.bp-filter-group label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 8px;
}
.bp-filter-group select, .bp-filter-group input {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  background: var(--stone);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .82rem;
  transition: border-color var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.bp-filter-group select:focus, .bp-filter-group input:focus {
  outline: none;
  border-color: var(--amber);
}
.bp-filter-group select option { background: var(--charcoal); }

/* Results */
.bp-results__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.bp-results__count { font-size: .82rem; color: rgba(255,255,255,.4); }
.bp-results__count strong { color: var(--amber); }
.bp-results__sort select {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.07);
  padding: 6px 12px;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  font-family: var(--font-body);
}

#bp-results-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (max-width: 1024px) { #bp-results-grid { grid-template-columns: 1fr; } }

#bp-load-more {
  display: block;
  margin: 40px auto 0;
  min-width: 200px;
}
#bp-load-more.hidden { display: none; }
.bp-no-results { color: rgba(255,255,255,.35); text-align: center; padding: 60px 20px; grid-column: 1/-1; }

/* ─── SINGLE RESTAURANTE ─────────────────────── */
.bp-single-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  background: var(--charcoal);
}
.bp-single-hero img { width: 100%; height: 100%; object-fit: cover; }
.bp-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.2) 60%);
}
.bp-single-hero__meta {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 40px;
  z-index: 2;
}
.bp-single-hero__meta h1 { color: var(--white); }
.bp-single-hero__tags { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }

.bp-single-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; padding: 48px 0 80px; align-items: start; }
@media (max-width: 900px) { .bp-single-layout { grid-template-columns: 1fr; } }

.bp-single-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.bp-single-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.bp-single-content p { color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 16px; }

/* Info card */
.bp-info-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.07);
  padding: 28px;
  position: sticky;
  top: calc(var(--hh) + 20px);
}
.bp-info-card__row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.bp-info-card__row:last-of-type { border-bottom: none; }
.bp-info-card__icon { font-size: 1rem; flex-shrink: 0; width: 20px; text-align: center; opacity: .7; }
.bp-info-card__label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); display: block; margin-bottom: 3px; }
.bp-info-card__val { font-size: .88rem; color: rgba(255,255,255,.75); }
.bp-info-card__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* ─── BREADCRUMB ─────────────────────────────── */
.bp-breadcrumb { padding: 14px 0; font-size: .75rem; color: rgba(255,255,255,.3); letter-spacing: .04em; }
.bp-breadcrumb a { color: var(--amber); }
.bp-breadcrumb a:hover { text-decoration: underline; }
.bp-breadcrumb span { margin: 0 8px; }

/* ─── PRECO ─────────────────────────────────── */
.bp-preco { display: inline-flex; gap: 2px; }
.bp-preco__icon { font-size: .8rem; color: rgba(255,255,255,.15); font-weight: 700; }
.bp-preco__icon.active { color: var(--amber); }

/* ─── GALLERY ────────────────────────────────── */
.bp-gallery { margin: 32px 0; }
.bp-gallery .splide__slide img { width: 100%; height: 360px; object-fit: cover; }

/* ─── MAP ───────────────────────────────────── */
#bp-map { height: 320px; overflow: hidden; margin: 32px 0; }

/* ─── ACADEMIA ───────────────────────────────── */
.bp-academia-hero {
  background: url('https://images.unsplash.com/photo-1466637574441-749b8f19452f?w=1600&q=85') center/cover no-repeat;
}
.bp-academia-hero h1 { color: var(--amber); }
.bp-academia-hero p { color: rgba(255,255,255,.6); max-width: 520px; margin-top: 12px; }

.bp-curso-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.bp-curso-card:hover { border-color: rgba(240,165,0,.25); transform: translateY(-3px); }
.bp-curso-card__img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.bp-curso-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bp-curso-card:hover .bp-curso-card__img img { transform: scale(1.05); }
.bp-curso-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.bp-curso-card__meta { display: flex; gap: 16px; font-size: .72rem; color: rgba(255,255,255,.35); letter-spacing: .06em; }
.bp-curso-card__price { font-family: var(--font-display); font-size: 1.8rem; color: var(--amber); margin-top: auto; letter-spacing: .04em; }
.bp-curso-card__price small { font-family: var(--font-body); font-size: .8rem; color: rgba(255,255,255,.3); }

/* ─── EVENTOS ────────────────────────────────── */
.bp-evento-card {
  display: flex;
  gap: 0;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  transition: border-color var(--t);
}
.bp-evento-card:hover { border-color: rgba(240,165,0,.25); }
.bp-evento-card__date {
  min-width: 80px;
  background: var(--amber);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  color: var(--black);
  flex-shrink: 0;
}
.bp-evento-card__day { font-family: var(--font-display); font-size: 2.8rem; line-height: 1; }
.bp-evento-card__month { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.bp-evento-card__body { padding: 24px; flex: 1; }
.bp-evento-card__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 6px; }
.bp-evento-card__meta { font-size: .78rem; color: rgba(255,255,255,.35); margin-bottom: 12px; letter-spacing: .04em; }

/* ─── LOJA ───────────────────────────────────── */
.bp-product-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.bp-product-card:hover { border-color: rgba(240,165,0,.25); transform: translateY(-3px); }
.bp-product-card__img { aspect-ratio: 1; overflow: hidden; position: relative; }
.bp-product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bp-product-card:hover .bp-product-card__img img { transform: scale(1.06); }
.bp-product-card__body { padding: 16px; }
.bp-product-card__name { font-weight: 600; font-size: .9rem; margin-bottom: 4px; color: rgba(255,255,255,.8); }
.bp-product-card__price { color: var(--amber); font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .04em; }
.bp-product-card__price del { font-family: var(--font-body); color: rgba(255,255,255,.25); font-size: .8rem; }

/* ─── 404 ─────────────────────────────────────── */
.bp-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.bp-404 h1 { font-size: 10rem; color: var(--amber); line-height: 1; opacity: .6; }
.bp-404 h2 { color: var(--white); margin: 8px 0 12px; }
.bp-404 p  { color: rgba(255,255,255,.4); margin-bottom: 32px; }

/* ─── PAGINATION ─────────────────────────────── */
.bp-pagination { display: flex; justify-content: center; gap: 6px; padding: 48px 0; }
.bp-pagination a, .bp-pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  font-weight: 600;
  transition: all var(--t);
}
.bp-pagination a:hover { border-color: var(--amber); color: var(--amber); }
.bp-pagination .current { background: var(--amber); color: var(--black); border-color: var(--amber); }

/* ─── FOOTER ─────────────────────────────────── */
.bp-footer {
  background: var(--black);
  color: var(--white);
  border-top: 0;
  position: relative;
}
.bp-footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--amber), var(--amber-dim), transparent);
}
.bp-footer__flames { display: none; } /* replaced by CSS gradient line */

.bp-footer__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding: 72px 40px 56px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 900px) { .bp-footer__inner { grid-template-columns: 1fr; gap: 48px; padding: 48px 20px 40px; } }

.bp-footer__tagline { color: rgba(255,255,255,.55); font-size: .82rem; margin-top: 14px; line-height: 1.6; }
.bp-footer__social { display: flex; gap: 10px; margin-top: 24px; }
.bp-footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
  transition: all var(--t);
}
.bp-footer__social-link svg { width: 16px; height: 16px; }
.bp-footer__social-link:hover { border-color: var(--amber); color: var(--amber); }

.bp-footer__nav { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
@media (max-width: 768px) { .bp-footer__nav { grid-template-columns: repeat(2,1fr); gap: 32px; } }
@media (max-width: 480px) { .bp-footer__nav { grid-template-columns: 1fr; } }

.bp-footer__col h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.bp-footer__col a {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  padding: 4px 0;
  transition: color var(--t);
  letter-spacing: .02em;
}
.bp-footer__col a:hover { color: var(--white); }

.bp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 20px 40px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) { .bp-footer__bottom { padding: 20px; } }
.bp-footer__credit { color: rgba(240,165,0,.6); font-style: italic; }
.bp-logo--light .bp-logo__main { color: var(--white); }

/* ─── FORMS ─────────────────────────────────── */
.bp-form { display: flex; flex-direction: column; gap: 20px; }

.bp-form__section {
  border: 1px solid rgba(255,255,255,.07);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bp-form__section legend {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 0 12px;
}

.bp-form__row { display: grid; gap: 16px; }
.bp-form__row--2 { grid-template-columns: 1fr 1fr; }
.bp-form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 640px) {
  .bp-form__row--2,
  .bp-form__row--3 { grid-template-columns: 1fr; }
}

.bp-form__field { display: flex; flex-direction: column; gap: 7px; }
.bp-form__field label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.bp-form__field label span { color: var(--amber); }

.bp-form__field input,
.bp-form__field select,
.bp-form__field textarea {
  background: var(--stone);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 12px 16px;
  transition: border-color var(--t);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.bp-form__field input::placeholder,
.bp-form__field textarea::placeholder { color: rgba(255,255,255,.2); }
.bp-form__field input:focus,
.bp-form__field select:focus,
.bp-form__field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.bp-form__field select { cursor: pointer; }
.bp-form__field select option { background: var(--charcoal); }
.bp-form__field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* Radio planos */
.bp-form__radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .bp-form__radio-group { grid-template-columns: 1fr; } }

.bp-radio { cursor: pointer; }
.bp-radio input { position: absolute; opacity: 0; pointer-events: none; }
.bp-radio__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.1);
  transition: all var(--t) var(--ease);
  gap: 12px;
}
.bp-radio:hover .bp-radio__box { border-color: rgba(240,165,0,.4); }
.bp-radio--selected .bp-radio__box {
  border-color: var(--amber);
  background: rgba(240,165,0,.06);
}
.bp-radio__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .06em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bp-radio__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--amber);
  letter-spacing: .04em;
}

/* Feedback */
.bp-form-success {
  background: rgba(240,165,0,.06);
  border: 1px solid rgba(240,165,0,.25);
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.bp-form-success svg { color: var(--amber); }
.bp-form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: .06em;
}
.bp-form-success p { color: rgba(255,255,255,.6); font-size: .95rem; }

.bp-form-error {
  background: rgba(204,51,0,.12);
  border: 1px solid rgba(204,51,0,.35);
  color: #FF9980;
  padding: 14px 20px;
  font-size: .88rem;
}

/* Contato layout */
.bp-contact-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .bp-contact-layout { grid-template-columns: 1fr; gap: 48px; } }

.bp-contact-info { display: flex; flex-direction: column; gap: 28px; }
.bp-contact-info__block h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.bp-contact-info__block a,
.bp-contact-info__block p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color var(--t);
}
.bp-contact-info__block a:hover { color: var(--amber); }

/* ─── LEGAL PAGES (termos / privacidade) ──── */
.bp-legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .bp-legal-layout { grid-template-columns: 1fr; } }

.bp-legal-toc {
  position: sticky;
  top: calc(var(--hh) + 24px);
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bp-legal-toc h4 {
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bp-legal-toc a {
  display: block;
  padding: 6px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  transition: color var(--t);
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.bp-legal-toc a:hover { color: var(--amber); }
@media (max-width: 900px) { .bp-legal-toc { position: static; } }

.bp-legal-content { max-width: 720px; }
.bp-legal-content section { margin-bottom: 48px; }
.bp-legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
  letter-spacing: .06em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bp-legal-content p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.85;
  margin-bottom: 12px;
}
.bp-legal-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.bp-legal-content ul li {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.bp-legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  opacity: .6;
}
.bp-legal-content a { color: var(--amber); transition: opacity var(--t); }
.bp-legal-content a:hover { opacity: .7; }
.bp-legal-content strong { color: rgba(255,255,255,.85); }
.bp-legal-content em { color: rgba(255,255,255,.5); font-style: normal; }

.bp-legal-highlight {
  background: rgba(240,165,0,.06);
  border-left: 3px solid var(--amber);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.bp-legal-highlight p { color: rgba(255,255,255,.7); margin: 0; }

.bp-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: .85rem;
}
.bp-legal-table th {
  background: var(--stone);
  color: var(--amber);
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bp-legal-table td {
  padding: 12px 16px;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: top;
}
.bp-legal-table td:first-child { color: rgba(255,255,255,.8); font-weight: 500; white-space: nowrap; }

/* ─── HERO: PATROCINIO & BRANDED ─────────────── */
.bp-patrocinio-hero {
  padding: calc(var(--hh) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=1600&q=85') center/cover no-repeat;
}
.bp-branded-hero {
  padding: calc(var(--hh) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=85') center 40%/cover no-repeat;
}
.bp-patrocinio-hero::before,
.bp-branded-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 100%);
  z-index: 0;
}
.bp-patrocinio-hero .bp-container,
.bp-branded-hero .bp-container { position: relative; z-index: 1; }

/* ─── COMPARE TABLE ──────────────────────────── */
.bp-compare-table-wrap { overflow-x: auto; }
.bp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.bp-compare-table th, .bp-compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.bp-compare-table th:first-child,
.bp-compare-table td:first-child { text-align: left; color: rgba(255,255,255,.65); }
.bp-compare-table thead th {
  font-family: var(--font-display);
  letter-spacing: .1em;
  font-size: .8rem;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  background: var(--stone);
}
.bp-compare-table thead th.highlight { color: var(--amber); background: rgba(240,165,0,.1); }
.bp-compare-table td.highlight { background: rgba(240,165,0,.04); }
.bp-compare-table td.check { color: var(--amber); font-size: 1rem; }
.bp-compare-table td.cross { color: rgba(255,255,255,.2); }
.bp-compare-table tfoot td {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--stone);
  border-top: 1px solid rgba(255,255,255,.1);
}
.bp-compare-table tfoot td.highlight { background: rgba(240,165,0,.1); color: var(--amber); }
.bp-compare-table tfoot td span { font-weight: 400; font-size: .75rem; color: rgba(255,255,255,.4); margin-left: 2px; }

/* ─── TESTIMONIALS ───────────────────────────── */
.bp-testimonial {
  background: var(--stone);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bp-testimonial__text {
  color: rgba(255,255,255,.65);
  font-style: italic;
  line-height: 1.7;
  font-size: .95rem;
  flex: 1;
}
.bp-testimonial__author { display: flex; flex-direction: column; gap: 2px; }
.bp-testimonial__name { font-weight: 600; color: var(--white); }
.bp-testimonial__role { font-size: .8rem; color: var(--amber); }

/* ─── FAQ ────────────────────────────────────── */
.bp-faq { display: flex; flex-direction: column; gap: 0; }
.bp-faq__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bp-faq__item h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.bp-faq__item p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.65; }

/* ─── SPONSOR PACKAGES ───────────────────────── */
.bp-sponsor-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.bp-sponsor-card {
  background: var(--stone);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bp-sponsor-card--featured {
  background: rgba(240,165,0,.06);
  border-color: rgba(240,165,0,.3);
}
.bp-sponsor-card--premium {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.15);
}
.bp-sponsor-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.bp-sponsor-card__tier {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: var(--amber);
}
.bp-sponsor-card__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.bp-sponsor-card__price span { font-size: .9rem; font-weight: 400; color: rgba(255,255,255,.4); }
.bp-sponsor-card__features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bp-sponsor-card__features li {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  padding-left: 20px;
  position: relative;
}
.bp-sponsor-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: .8rem;
}

/* ─── ICON CARDS ─────────────────────────────── */
.bp-icon-card {
  background: var(--stone);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.bp-icon-card__icon { margin-bottom: 18px; color: var(--amber); display: flex; }
.bp-icon-card__icon svg { width: 36px; height: 36px; }
.bp-icon-card h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.bp-icon-card p { color: rgba(255,255,255,.45); font-size: .88rem; line-height: 1.6; }

/* ─── FEATURE ROWS ───────────────────────────── */
.bp-feature-row {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--stone);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
}
.bp-feature-row__icon { flex-shrink: 0; color: var(--amber); display: flex; align-items: flex-start; padding-top: 2px; }
.bp-feature-row__icon svg { width: 28px; height: 28px; }
.bp-feature-row h4 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.bp-feature-row p { color: rgba(255,255,255,.45); font-size: .88rem; line-height: 1.55; }

/* ─── BRANDED FORMATS ────────────────────────── */
.bp-branded-formats { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,.06); border-radius: var(--radius-lg); overflow: hidden; }
.bp-branded-format {
  display: flex;
  gap: 32px;
  padding: 36px 40px;
  background: var(--ink);
  transition: background var(--t) var(--ease);
}
.bp-branded-format:hover { background: rgba(240,165,0,.04); }
.bp-branded-format__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(240,165,0,.2);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: right;
}
.bp-branded-format__content h3 { color: var(--white); margin-bottom: 10px; font-size: 1.15rem; }
.bp-branded-format__content p { color: rgba(255,255,255,.5); margin-bottom: 14px; line-height: 1.65; font-size: .9rem; }
.bp-branded-format__content ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.bp-branded-format__content li {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  padding-left: 16px;
  position: relative;
}
.bp-branded-format__content li::before { content: '→'; position: absolute; left: 0; color: var(--amber); }

/* ─── PROCESS STEPS ──────────────────────────── */
.bp-process { display: flex; flex-direction: column; gap: 0; }
.bp-process__step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: flex-start;
}
.bp-process__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(240,165,0,.1);
  border: 1px solid rgba(240,165,0,.3);
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bp-process__text h4 { color: var(--white); margin-bottom: 6px; }
.bp-process__text p { color: rgba(255,255,255,.45); font-size: .88rem; line-height: 1.65; }

/* ─── HERO: SOBRE ────────────────────────────── */
.bp-sobre-hero {
  padding: calc(var(--hh) + 100px) 0 100px;
  position: relative;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1558030006-450675393462?w=1600&q=85') center 30%/cover no-repeat;
}
.bp-sobre-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.6) 100%);
  z-index: 0;
}
.bp-sobre-hero .bp-container { position: relative; z-index: 1; }
.bp-sobre-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; }

/* ─── SOBRE: LAYOUT ──────────────────────────── */
.bp-sobre-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.bp-sobre-layout--reverse { grid-template-columns: 380px 1fr; }
.bp-sobre-layout--reverse .bp-sobre-text { order: 2; }
.bp-sobre-layout--reverse .bp-sobre-aside { order: 1; }
.bp-sobre-text p {
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: .95rem;
}
.bp-sobre-text p:last-of-type { margin-bottom: 0; }

/* ─── SOBRE: QUOTE ───────────────────────────── */
.bp-sobre-quote {
  background: rgba(240,165,0,.07);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 28px 28px 24px;
  margin-bottom: 20px;
}
.bp-sobre-quote blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 16px;
}
.bp-sobre-quote blockquote::before { content: '"'; color: var(--amber); font-size: 2rem; line-height: 0; vertical-align: -.3em; margin-right: 4px; }
.bp-sobre-quote cite { font-size: .82rem; color: var(--amber); font-style: normal; font-weight: 600; }
.bp-sobre-quote cite span { display: block; color: rgba(255,255,255,.35); font-weight: 400; margin-top: 2px; }

/* ─── SOBRE: FACT ────────────────────────────── */
.bp-sobre-fact {
  background: var(--stone);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.bp-sobre-fact__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
}
.bp-sobre-fact__text { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.5; }

/* ─── SOBRE: CAPITAL ─────────────────────────── */
.bp-capital-selos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.bp-capital-selo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,.08);
  border: 1px solid rgba(240,165,0,.2);
  border-radius: 30px;
  padding: 8px 18px;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
}
.bp-capital-selo svg { color: var(--amber); flex-shrink: 0; }

/* ─── SOBRE: VALORES ─────────────────────────── */
.bp-sobre-valores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.bp-sobre-valor {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,.06);
  border: 1px solid rgba(240,165,0,.15);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}

/* ─── SOBRE: TIMELINE ────────────────────────── */
.bp-sobre-timeline { display: flex; flex-direction: column; gap: 0; }
.bp-tl-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: flex-start;
}
.bp-tl-item__year {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
  width: 40px;
  padding-top: 2px;
}
.bp-tl-item--active .bp-tl-item__year { color: var(--amber); }
.bp-tl-item--active { background: rgba(240,165,0,.04); margin: 0 -12px; padding: 20px 12px; border-radius: var(--radius); }
.bp-tl-item__text { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.6; }
.bp-tl-item--active .bp-tl-item__text { color: rgba(255,255,255,.75); }

/* ─── EXPO SECTION ───────────────────────────── */
.bp-expo-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.bp-expo-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: sticky;
  top: calc(var(--hh) + 24px);
}
.bp-expo-badge {
  background: rgba(240,165,0,.12);
  border: 1px solid rgba(240,165,0,.3);
  color: var(--amber);
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.bp-expo-content h2 { margin: 8px 0 16px; }
.bp-expo-content p {
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: .95rem;
}
.bp-expo-content strong { color: var(--white); }
.bp-expo-nums {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.bp-expo-num {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bp-expo-num strong {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .05em;
  color: var(--amber);
}
.bp-expo-num span { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ─── SECRETARIAS ────────────────────────────── */
.bp-sec-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 72px;
  align-items: start;
}
.bp-sec-layout--reverse { grid-template-columns: 1fr 240px; }
.bp-sec-layout--reverse .bp-sec-identity { order: 2; }
.bp-sec-layout--reverse .bp-sec-content  { order: 1; }

.bp-sec-identity {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--hh) + 24px);
}

.bp-sec-sigla {
  font-family: var(--font-display);
  font-size: 3.2rem;
  letter-spacing: .1em;
  line-height: 1;
}
.bp-sec-sigla--turismo { color: var(--amber); }
.bp-sec-sigla--cultura { color: #8fb8e8; }

.bp-sec-meta__label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 3px;
}
.bp-sec-meta__name {
  font-weight: 600;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}

.bp-sec-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bp-sec-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: .78rem;
  line-height: 1.4;
}
.bp-sec-contact__item svg { color: rgba(255,255,255,.25); flex-shrink: 0; margin-top: 1px; }

.bp-sec-full-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}
.bp-sec-content p {
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  font-size: .93rem;
  margin-bottom: 14px;
}
.bp-sec-content p strong { color: var(--white); font-weight: 600; }

.bp-sec-programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 28px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
}
.bp-sec-program {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--charcoal);
  transition: background var(--t) var(--ease);
}
.bp-sec-layout--reverse .bp-sec-program { background: var(--muted); }
.bp-sec-layout--reverse .bp-sec-program:hover { background: rgba(143,184,232,.06); }
.bp-sec-program:hover { background: rgba(240,165,0,.05); }
.bp-sec-program__icon {
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 2px;
}
.bp-sec-program strong {
  display: block;
  font-size: .84rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2px;
}
.bp-sec-program span {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  line-height: 1.4;
}

/* ─── MVP GRID ───────────────────────────────── */
.bp-mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bp-mvp-card {
  background: var(--ink);
  padding: 40px 36px;
  transition: background var(--t) var(--ease);
}
.bp-mvp-card:hover { background: rgba(240,165,0,.04); }
.bp-mvp-card--featured { background: rgba(240,165,0,.06); }
.bp-mvp-card__icon {
  color: var(--amber);
  margin-bottom: 20px;
}
.bp-mvp-card h3 {
  font-family: var(--font-display);
  letter-spacing: .08em;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}
.bp-mvp-card p { color: rgba(255,255,255,.45); font-size: .88rem; line-height: 1.7; }

/* ─── LISTING PREMIUM: EXTRA COMPONENTS ─────── */
.bp-listing-hero {
  padding: calc(var(--hh) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=85') center/cover no-repeat;
}
.bp-listing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 100%);
  z-index: 0;
}
.bp-listing-hero .bp-container { position: relative; z-index: 1; }

/* ─── UTILS ─────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-amber { color: var(--amber) !important; }
.text-center { text-align: center; }

/* ─── BAIRROS ────────────────────────────────── */
.bp-bairros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.04);
}
.bp-bairro-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.bp-bairro-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease);
}
.bp-bairro-card:hover .bp-bairro-card__img { transform: scale(1.06); }
.bp-bairro-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.18) 55%, transparent 100%);
  transition: opacity var(--t);
}
.bp-bairro-card:hover .bp-bairro-card__overlay { opacity: .9; }
.bp-bairro-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  z-index: 1;
}
.bp-bairro-card__count {
  display: block;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.bp-bairro-card__nome {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}
.bp-bairro-card__desc {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  line-height: 1.4;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t) var(--ease), opacity var(--t);
  opacity: 0;
}
.bp-bairro-card:hover .bp-bairro-card__desc { max-height: 60px; opacity: 1; }

/* ─── CORTE EM DESTAQUE ──────────────────────── */
.bp-corte-section { padding: 80px 0; }
.bp-corte-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.bp-corte-img-wrap {
  position: relative;
}
.bp-corte-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.bp-corte-week-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.bp-corte-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1;
  margin: 8px 0 20px;
}
.bp-corte-desc {
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  font-size: .93rem;
  max-width: 480px;
}
.bp-corte-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding: 24px;
  background: var(--charcoal);
  border-left: 3px solid var(--amber);
}
.bp-corte-meta__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--amber);
}
.bp-corte-meta__item > div { display: flex; flex-direction: column; gap: 2px; }
.bp-corte-meta__label {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.bp-corte-meta__val {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}
.bp-corte-locais {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.bp-corte-locais__label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 6px;
}
.bp-corte-locais__nomes {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
}

/* ─── ROTEIRO DA SEMANA ──────────────────────── */
.bp-roteiro-mood {
  font-size: .78rem;
  color: var(--amber);
  letter-spacing: .08em;
  background: rgba(240,165,0,.08);
  padding: 6px 14px;
  border: 1px solid rgba(240,165,0,.2);
  align-self: flex-start;
  white-space: nowrap;
}
.bp-roteiro__tema {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bp-roteiro__tema svg { color: var(--amber); flex-shrink: 0; }
.bp-roteiro__paradas {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bp-roteiro__parada {
  display: flex;
  gap: 24px;
}
.bp-roteiro__hora {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  flex-shrink: 0;
}
.bp-roteiro__time {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--amber);
  background: rgba(240,165,0,.08);
  border: 1px solid rgba(240,165,0,.2);
  padding: 6px 8px;
  text-align: center;
  width: 52px;
}
.bp-roteiro__line {
  width: 1px;
  background: rgba(255,255,255,.08);
  flex: 1;
  margin: 6px 0;
  min-height: 32px;
}
.bp-roteiro__info {
  padding: 0 0 36px;
}
.bp-roteiro__tipo {
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  display: block;
  margin-bottom: 6px;
}
.bp-roteiro__nome {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.bp-roteiro__desc {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}

/* ─── EVENTOS (home list) ────────────────────── */
.bp-eventos-lista {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bp-evento-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  transition: border-color var(--t);
}
.bp-evento-card:hover { border-color: rgba(240,165,0,.25); }
.bp-evento-card__date {
  min-width: 80px;
  background: var(--amber);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  color: var(--black);
  flex-shrink: 0;
  align-self: stretch;
}
.bp-evento-card__day { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.bp-evento-card__mon { font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.bp-evento-card__info { padding: 20px 24px; flex: 1; }
.bp-evento-card__title { font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.bp-evento-card__local { font-size: .78rem; color: rgba(255,255,255,.35); }
.bp-evento-card__price {
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── ASSADOR EM DESTAQUE ────────────────────── */
.bp-assador-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}
.bp-assador-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: .06em;
  color: var(--white);
  margin: 8px 0 24px;
}
.bp-assador-frase {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--amber);
  line-height: 1.5;
  margin-bottom: 28px;
}
.bp-assador-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bp-assador-meta__item { display: flex; flex-direction: column; gap: 2px; }
.bp-assador-meta__label {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.bp-assador-meta__val { font-size: .9rem; color: rgba(255,255,255,.65); }
.bp-assador-profile { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.bp-assador-img-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
}
.bp-assador-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.bp-assador-fire-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bp-assador-nameplate {
  text-align: center;
}
.bp-assador-nameplate strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.bp-assador-nameplate span {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
}

/* ─── NEWSLETTER ─────────────────────────────── */
.bp-newsletter-section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}
.bp-newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}
.bp-newsletter-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
}
.bp-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.bp-newsletter-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.15;
  margin: 8px 0 16px;
}
.bp-newsletter-text h2 em {
  font-style: normal;
  color: var(--amber);
}
.bp-newsletter-text p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  line-height: 1.7;
}
.bp-newsletter-form__inner {
  display: flex;
  gap: 0;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.1);
}
.bp-newsletter-form__inner input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  padding: 16px 20px;
  font-size: .9rem;
  font-family: var(--font-body);
  min-width: 0;
}
.bp-newsletter-form__inner input::placeholder { color: rgba(255,255,255,.25); }
.bp-newsletter-form__inner button {
  background: var(--amber);
  color: var(--black);
  border: none;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.bp-newsletter-form__inner button:hover { background: #d49200; }
.bp-newsletter-legal {
  font-size: .72rem;
  color: rgba(255,255,255,.2);
  margin-top: 12px;
  letter-spacing: .02em;
}
.bp-newsletter-legal a { color: rgba(255,255,255,.3); text-decoration: underline; }
.bp-newsletter-success {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(39,174,96,.08);
  border: 1px solid rgba(39,174,96,.25);
  padding: 24px;
  color: rgba(255,255,255,.7);
}
.bp-newsletter-success svg { color: #27ae60; flex-shrink: 0; margin-top: 2px; }
.bp-newsletter-success strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.bp-newsletter-success span { font-size: .85rem; }

/* ─── PARCEIROS ──────────────────────────────── */
.bp-parceiros-label {
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  text-align: center;
  margin-bottom: 32px;
}
.bp-parceiros-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.bp-parceiro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 36px;
  transition: opacity var(--t);
  opacity: .5;
}
.bp-parceiro:hover { opacity: 1; }
.bp-parceiro__name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--white);
}
.bp-parceiro__role {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.bp-parceiro-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.08);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .bp-section { padding: 60px 0; }
  .bp-hero__content { padding: 0 20px 60px; }
  .bp-hero__scroll { display: none; }
  .bp-cta-section { padding: 80px 0; }
  .bp-single-hero { height: 45vh; }
  .bp-footer__inner { gap: 40px; }
  .bp-sponsor-packages { grid-template-columns: 1fr; }
  .bp-branded-format { flex-direction: column; gap: 12px; padding: 24px 20px; }
  .bp-branded-format__num { width: auto; text-align: left; font-size: 2.5rem; }
  .bp-compare-table { font-size: .8rem; }
  .bp-compare-table th, .bp-compare-table td { padding: 10px 12px; }
  .bp-patrocinio-hero, .bp-branded-hero { padding: calc(var(--hh) + 50px) 0 50px; }
  .bp-sobre-layout, .bp-sobre-layout--reverse { grid-template-columns: 1fr; gap: 40px; }
  .bp-sobre-layout--reverse .bp-sobre-text { order: 1; }
  .bp-sobre-layout--reverse .bp-sobre-aside { order: 2; }
  .bp-expo-section { grid-template-columns: 1fr; gap: 40px; }
  .bp-expo-logo-block { position: static; }
  .bp-mvp-grid { grid-template-columns: 1fr; }
  .bp-capital-selos { flex-direction: column; align-items: center; }
  .bp-sec-layout, .bp-sec-layout--reverse { grid-template-columns: 1fr; gap: 36px; }
  .bp-sec-layout--reverse .bp-sec-identity { order: 1; }
  .bp-sec-layout--reverse .bp-sec-content  { order: 2; }
  .bp-sec-identity { position: static; }
  .bp-sec-programs { grid-template-columns: 1fr; }
  .bp-sec-sigla { font-size: 2.2rem; }
  /* Bairros */
  .bp-bairros-grid { grid-template-columns: repeat(2,1fr); }
  .bp-bairro-card { aspect-ratio: 4/3; }
  .bp-bairro-card__desc { max-height: 60px; opacity: 1; }
  /* Corte */
  .bp-corte-layout { grid-template-columns: 1fr; gap: 40px; }
  .bp-corte-img { aspect-ratio: 16/9; }
  /* Assador */
  .bp-assador-layout { grid-template-columns: 1fr; gap: 48px; }
  .bp-assador-profile { flex-direction: row; align-items: flex-start; }
  .bp-assador-img-wrap { max-width: 200px; }
  /* Newsletter */
  .bp-newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .bp-newsletter-form__inner { flex-direction: column; }
  .bp-newsletter-form__inner button { text-align: center; }
  /* Parceiros */
  .bp-parceiro-divider { display: none; }
  .bp-parceiros-strip { gap: 4px; }
  .bp-parceiro { padding: 12px 20px; }
  /* Roteiro */
  .bp-roteiro__tema { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .bp-hero__title { font-size: 3.8rem; }
  .bp-hero__search { flex-direction: column; }
  .bp-hero__search select { border-left: none; border-top: 1px solid rgba(255,255,255,.08); min-width: auto; }
  .bp-stats { grid-template-columns: repeat(2,1fr); }
  .bp-cat-grid { grid-template-columns: repeat(2,1fr); }
  .bp-bairros-grid { grid-template-columns: repeat(2,1fr); }
  .bp-evento-card__price { display: none; }
  .bp-assador-profile { flex-direction: column; align-items: center; }
  .bp-assador-img-wrap { max-width: 280px; }
}
