/* ============================================================
   ZEST LIMONCELLO — Shared Stylesheet
   ============================================================ */

/* ─── FONTS ─────────────────────────────────────────────── */
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-Thin.ttf') format('truetype'); font-weight: 100; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-ExtraLight.ttf') format('truetype'); font-weight: 200; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-BoldItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-ExtraBold.ttf') format('truetype'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-BlackItalic.ttf') format('truetype'); font-weight: 900; font-style: italic; font-display: swap; }
@font-face { font-family: 'PoiretOne'; src: url('fonts/PoiretOne-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --blue:        #00509D;
  --blue-dark:   #003A75;
  --charcoal:    #404040;
  --amber:       #FFC30C;
  --yellow:      #FFD60A;
  --offwhite:    #F7F0F0;
  --white:       #FFFFFF;
  --ink:         #1e1e1e;
  --muted:       rgba(64,64,64,0.55);

  --font-display: 'PoiretOne', 'Montserrat', sans-serif;
  --font-sans:    'Montserrat', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 9999px;

  --shadow-md:  0 2px 8px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg:  0 4px 24px rgba(0,0,0,0.13), 0 2px 6px rgba(0,0,0,0.07);
  --shadow-xl:  0 8px 40px rgba(0,0,0,0.16), 0 4px 10px rgba(0,0,0,0.08);

  --transition: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--offwhite);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: var(--radius-pill); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }
.section-pad { padding: 80px 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.label-caps {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.heading-xl {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.025em; line-height: 1.05;
}
.heading-lg {
  font-weight: 900; font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em; line-height: 1.1;
}
.body-lg { font-size: 18px; font-weight: 400; line-height: 1.75; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius-pill); border: none;
  transition: all var(--transition); white-space: nowrap;
  padding: 14px 34px;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.btn-amber {
  background: var(--amber); color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(255,195,12,0.35);
}
.btn-amber:hover { background: var(--yellow); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,195,12,0.45); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.55); padding: 12px 32px;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--sm { padding: 10px 22px; font-size: 11px; }

/* ─── AGE GATE (BEM Unified) ─────────────────────────────── */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  transition: opacity 0.5s ease;
}
.age-gate--exiting { opacity: 0; pointer-events: none; }

.age-gate__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

.age-gate__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.age-gate__bg-img {
  position: absolute; right: -80px; bottom: -80px;
  width: 480px; opacity: 0.07; filter: invert(1) brightness(2);
}

.age-gate__inner { text-align: center; max-width: 440px; width: 100%; position: relative; z-index: 1; }
.age-gate__logo { margin: 0 auto 36px; width: 110px; }
.age-gate__eyebrow { color: var(--amber); margin-bottom: 14px; }
.age-gate__title {
  font-family: var(--font-display); font-size: clamp(38px, 6vw, 54px);
  text-transform: uppercase; color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.age-gate__disclaimer { color: rgba(255,255,255,0.65) !important; font-size: 14px; line-height: 1.6; margin-bottom: 36px; }
.age-gate__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.age-gate__btn {
  -webkit-appearance: none; appearance: none;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 1; min-width: 140px; padding: 14px 24px;
  border-radius: var(--radius-pill); font-family: var(--font-sans); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.age-gate__btn--yes { background: var(--amber); color: var(--charcoal); border: 2px solid var(--amber); }
.age-gate__btn--yes:hover { background: var(--yellow); border-color: var(--yellow); }
.age-gate__btn--no { background: transparent; border: 2px solid rgba(255,255,255,0.45); color: var(--white); }
.age-gate__btn--no:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.age-gate__legal { margin-top: 24px; font-size: 10px; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ─── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease;
}
#nav.scrolled {
  background: rgba(247,240,240,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(64,64,64,0.09);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo img { height: 60px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color var(--transition);
  position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--amber);
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

#nav.scrolled .nav__links a { color: rgba(64,64,64,0.7); }
#nav.scrolled .nav__links a:hover, #nav.scrolled .nav__links a.active { color: var(--charcoal); }

.nav__ig {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; background: var(--amber); color: var(--charcoal);
  border-radius: var(--radius-pill); padding: 9px 18px;
}
.nav__ig svg { width: 14px; height: 14px; }

.nav__hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 28px; height: 28px;
}
.nav__hamburger span { display: block; height: 2px; width: 100%; background: var(--white); border-radius: 2px; }
#nav.scrolled .nav__hamburger span { background: var(--charcoal); }

.nav__mobile-menu {
  position: fixed; inset: 0; z-index: 490; background: var(--blue);
  display: flex; flex-direction: column; padding: 104px 40px 48px;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav__mobile-menu.open { transform: translateX(0); }
.nav__mobile-menu a {
  font-family: var(--font-display); font-size: 32px; text-transform: uppercase;
  color: var(--white); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ─── PAGE HERO (verdade, brinde, onde-tem, concierge) ────── */
.page-hero {
  background: var(--blue); position: relative; overflow: hidden;
  padding: 160px 0 96px; min-height: 480px;
  display: flex; align-items: center;
}
.page-hero__eyebrow { color: var(--amber); margin-bottom: 16px; }
.page-hero__title { color: var(--white); margin-bottom: 20px; }
.page-hero__sub { color: rgba(247,240,240,0.75); max-width: 560px; }
.pattern-overlay { position: absolute; overflow: hidden; pointer-events: none; }
.pattern-overlay img { position: absolute; }
.amber-bar { height: 4px; background: var(--amber); }

/* ─── FOOTER ─────────────────────────────────────────────── */
#footer { background: var(--ink); padding: 80px 0 30px; color: var(--offwhite); }
.footer__inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 60px; }
.footer__brand img { height: 56px; margin-bottom: 16px; }
.footer__tagline { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; }
.footer__ig { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(247,240,240,0.5); }
.footer__ig:hover { color: var(--white); }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav-title { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.footer__nav a { font-size: 14px; color: rgba(247,240,240,0.5); }
.footer__nav a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 30px; display: flex; justify-content: space-between; font-size: 11px; color: rgba(247,240,240,0.3); }

/* ─── HERO INDEX ────────────────────────────────────────── */
.manifesto-hero {
  background: var(--blue); min-height: 100vh;
  display: flex; align-items: center; position: relative; overflow: hidden; padding: 130px 0 100px;
}
.manifesto-hero__flex { display: flex; align-items: center; gap: 60px; }
.manifesto-hero__packshot-wrap { flex-shrink: 0; display: flex; align-items: flex-end; align-self: stretch; pointer-events: none; }
.manifesto-hero__packshot { height: clamp(520px, 72vh, 820px); width: auto; object-fit: contain; filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.38)); display: block; }
.manifesto-hero__amber-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--amber); }
.manifesto-hero__content { position: relative; z-index: 1; max-width: 680px; }
.manifesto-hero__eyebrow { color: var(--amber); margin-bottom: 20px; }
.manifesto-hero__title {
  font-family: var(--font-display); font-size: clamp(54px, 7.5vw, 96px);
  text-transform: uppercase; color: var(--white); line-height: 0.98; margin-bottom: 28px;
}
.manifesto-hero__sub { font-size: 18px; color: rgba(247,240,240,0.75); line-height: 1.65; margin-bottom: 44px; max-width: 460px; }

/* ─── MANIFESTO SECTION ───────────────────────────────── */
.manifesto-section { background: var(--charcoal); position: relative; overflow: hidden; }
.manifesto-section__pattern { position: absolute; right: -80px; bottom: -80px; width: 480px; opacity: 0.06; filter: invert(1) brightness(2); pointer-events: none; }
.manifesto-section__inner { position: relative; z-index: 1; max-width: 720px; }
.manifesto-section__eyebrow { color: var(--amber); margin-bottom: 32px; }
.manifesto-line {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase; color: var(--white); line-height: 1.3;
  opacity: 0; transform: translateX(-20px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.manifesto-line--d0 { transition-delay: 0s; }
.manifesto-line--d1 { transition-delay: 0.1s; }
.manifesto-line--d2 { transition-delay: 0.2s; }
.manifesto-line--d3 { transition-delay: 0.3s; }
.manifesto-line--d4 { transition-delay: 0.4s; }
.manifesto-line--d5 { transition-delay: 0.5s; }
.manifesto-line--d6 { transition-delay: 0.6s; }
.manifesto-line--d7 { transition-delay: 0.7s; }
.manifesto-line.visible { opacity: 1; transform: none; }
.manifesto-line--accent { color: var(--amber); }
.manifesto-line--gap { margin-top: 20px; }

/* ─── PRODUTO ───────────────────────────────────────── */
.section--offwhite { background: var(--offwhite); }
.verdade-produto { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.verdade-produto__img-wrap { display: flex; align-items: center; justify-content: center; min-height: 460px; }
.verdade-produto__img { max-height: 420px; width: auto; object-fit: contain; filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.14)); display: block; }
.verdade-produto__eyebrow { color: var(--amber); margin-bottom: 14px; }
.verdade-produto__title { color: var(--blue); margin-bottom: 20px; }
.verdade-produto__desc { font-size: 18px; line-height: 1.7; color: var(--charcoal); margin-bottom: 32px; }
.verdade-specs-list { list-style: none; border-top: 1px solid rgba(64,64,64,0.1); }
.verdade-specs-list__item { display: flex; padding: 16px 0; border-bottom: 1px solid rgba(64,64,64,0.08); font-size: 14px; }
.verdade-specs-list__item--top { align-items: flex-start; }
.verdade-specs-list__label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--muted); min-width: 100px; }
.verdade-specs-list__label--adj { padding-top: 2px; }

/* ─── DIFERENCIAIS ──────────────────────────────────── */
.verdade-dif { background: var(--white); }
.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #eee; }
.dif-item { padding: 60px 40px; border-right: 1px solid #eee; }
.dif-item:last-child { border-right: none; }
.dif-item__icon--bare { font-size: 40px; margin-bottom: 24px; }
.dif-item__title { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.dif-item__desc { font-size: 14px; color: #666; line-height: 1.6; }

/* ─── PROCESSO ──────────────────────────────────────── */
.verdade-processo { background: var(--charcoal); position: relative; overflow: hidden; }
.verdade-processo__bg { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 400px; opacity: 0.06; filter: invert(1) brightness(2); }
.verdade-processo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.verdade-processo__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.verdade-processo__img { width: 100%; height: 480px; object-fit: cover; object-position: center top; display: block; }
.verdade-processo__overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%); padding: 28px 24px 24px; }
.verdade-processo__label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); }
.verdade-processo__eyebrow { color: var(--amber); margin-bottom: 14px; }
.verdade-processo__title { color: var(--white); margin-bottom: 24px; }
.verdade-processo__body { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 20px; }

/* ─── LIFESTYLE ─────────────────────────────────────── */
.lifestyle-break { position: relative; height: 540px; overflow: hidden; }
.lifestyle-break__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.lifestyle-break__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 80, 157, 0.5) 0%, transparent 65%); }
.lifestyle-break__container { height: 100%; display: flex; align-items: flex-end; padding-bottom: 56px; }
.lifestyle-break__text { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); letter-spacing: 0.07em; text-transform: uppercase; color: var(--white); line-height: 1.2; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35); }
.lifestyle-break__accent { color: var(--amber); }

/* ─── SPRITZ ────────────────────────────────────────── */
.spritz-section { background: var(--offwhite); position: relative; overflow: hidden; padding: 100px 0; }
.spritz-section__bg { position: absolute; left: -60px; bottom: -60px; width: 400px; opacity: 0.05; }
.spritz-section__inner { position: relative; z-index: 1; }
.spritz-section__header { margin-bottom: 52px; }
.spritz-section__visual { margin-bottom: 48px; }
.spritz-section__img-container { background: rgba(255, 255, 255, 0.97); border-radius: var(--radius-lg); padding: 32px 36px; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18); }
.spritz-section__img { width: 100%; height: auto; display: block; }
.spritz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.spritz-card__label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--amber); letter-spacing: 0.15em; }
.spritz-card__label--mb { margin-bottom: 20px; }
.spritz-card__ingredientes { margin-bottom: 24px; }
.spritz-card__steps { display: flex; flex-direction: column; gap: 0; }
.spritz-ingr { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 15px; }
.spritz-ingr__qty { font-weight: 700; color: var(--blue); }
.spritz-step { display: flex; gap: 16px; margin-bottom: 20px; }
.spritz-step__num { width: 28px; height: 28px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.spritz-step__text { font-size: 15px; line-height: 1.6; }

/* ─── RECIPES ───────────────────────────────────────── */
.outras-receitas { background: var(--white); }
.outras-receitas__header { margin-bottom: 48px; }
.outras-receitas__eyebrow { color: var(--amber); margin-bottom: 12px; }
.outras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.receita-mini { display: flex; gap: 24px; padding: 30px; background: var(--offwhite); border-radius: var(--radius-lg); }
.receita-mini__icon { font-size: 32px; }
.receita-mini__tag { font-size: 9px; font-weight: 700; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.receita-mini__title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.receita-mini__ingr { font-size: 13px; color: #666; line-height: 1.5; }
.receita-mini__ingr--sub { margin-top: 6px; font-style: normal; color: #bbb; font-size: 11px; }

/* ─── OCASIÕES ──────────────────────────────────────── */
.ocasioes { background: var(--blue); }
.ocasioes__header { margin-bottom: 48px; }
.ocasioes__eyebrow { color: var(--amber); margin-bottom: 12px; }
.ocasioes__title { color: var(--white); }
.ocasioes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ocasiao { padding: 40px 30px; background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); }
.ocasiao__icon { font-size: 32px; margin-bottom: 20px; }
.ocasiao__title { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.ocasiao__desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ─── ON-TRADE ──────────────────────────────────────── */
.on-trade-section { background: var(--offwhite); }
.on-trade-header { margin-bottom: 48px; }
.on-trade-eyebrow { color: var(--amber); margin-bottom: 12px; }
.canais-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 60px; }
.canal { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.canal__icon { font-size: 32px; margin-bottom: 20px; }
.canal__tag { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.canal__title { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.canal__desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 24px; }
.on-trade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.on-trade-item { display: flex; align-items: center; gap: 14px; padding: 20px; background: var(--white); border-radius: var(--radius-md); border-left: 4px solid var(--amber); }
.on-trade-item__dot { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; }
.on-trade-item__name { font-size: 14px; font-weight: 700; }
.on-trade-item__type { font-size: 11px; color: var(--muted); }
.on-trade-note { margin-top: 32px; padding: 20px; background: rgba(0,80,157,0.05); border-radius: var(--radius-md); font-size: 13px; border-left: 4px solid var(--blue); }

/* ─── CITAÇÃO ÂNCORA ──────────────────────────────────── */
.citacao-ancora { background: var(--offwhite); padding: 100px 0; text-align: center; }
.citacao-ancora__text { font-family: var(--font-display); font-size: clamp(28px,4.5vw,56px); text-transform: uppercase; color: var(--blue); line-height: 1.2; }
.citacao-ancora__line { display: block; }

/* ─── INSTAGRAM BLOCK ─────────────────────────────────── */
.ig-block { background: var(--amber); padding: 100px 0; text-align: center; }
.ig-block__title { font-size: clamp(32px, 4vw, 48px); font-weight: 900; margin-bottom: 12px; }
.ig-block__sub { font-size: 16px; margin-bottom: 40px; opacity: 0.8; }
.ig-block__btn { display: inline-flex; align-items: center; gap: 12px; background: var(--charcoal); color: var(--white); padding: 16px 40px; border-radius: var(--radius-pill); font-weight: 700; text-transform: uppercase; font-size: 13px; }
.ig-block__btn svg { width: 20px; height: 20px; }

/* ─── CONCIERGE SPECIFIC ─────────────────────────────── */
.concierge-hero { background: var(--blue); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 130px 0 100px; }
.concierge-hero__pattern img { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 500px; opacity: 0.09; filter: invert(1) brightness(2); }
.concierge-hero__title { font-family: var(--font-display); font-size: clamp(48px, 6vw, 80px); text-transform: uppercase; color: var(--white); line-height: 1.0; margin-bottom: 24px; }
.concierge-hero__sub { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 16px; }
.usos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.uso-card { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.uso-card__icon { width: 52px; height: 52px; background: var(--amber); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
.uso-card__title { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.uso-card__desc { font-size: 14px; color: #666; line-height: 1.7; }
.wa-section { background: var(--charcoal); position: relative; overflow: hidden; }
.wa-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wa-title { color: var(--white); margin-bottom: 24px; }
.wa-body { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 40px; }
.wa-card { background: rgba(255,255,255,0.05); padding: 40px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); }
.wa-card__label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--amber); margin-bottom: 30px; letter-spacing: 0.15em; }
.wa-info-item { display: flex; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.wa-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.wa-info-item__title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.wa-info-item__desc { font-size: 12px; color: rgba(255,255,255,0.5); }
.concierge-quote { background: var(--blue); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.concierge-quote__text { font-family: var(--font-display); font-size: clamp(26px, 4vw, 44px); text-transform: uppercase; color: var(--white); line-height: 1.25; font-style: italic; }
.concierge-quote__text em { color: var(--amber); font-style: normal; display: block; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .verdade-produto, .verdade-processo__grid, .spritz-grid, .wa-inner { gap: 40px; }
}
@media (max-width: 960px) {
  .nav__links, .nav__ig { display: none; }
  .nav__hamburger { display: flex; }
  .dif-grid, .ocasioes__grid, .usos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .manifesto-hero__flex { flex-direction: column; text-align: center; }
  .hero-packshot-wrap { display: none; }
  .verdade-produto, .verdade-processo__grid, .spritz-grid, .wa-inner, .outras-grid, .canais-grid, .on-trade-grid { grid-template-columns: 1fr; }
  .dif-grid, .ocasioes__grid, .usos-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}
