/* ═══════════════════════════════════════════════════
   MAXYMUS EXPAND — SISTEMA DE DESIGN COMPARTILHADO
   Base visual extraída da LP original (investir.html)
   ═══════════════════════════════════════════════════ */

:root {
  --crimson:  #a3075f;
  --pink:     #d70a84;
  --green:    #22c55e;
  --bg:       #06041a;
  --bg-2:     #130c3d;
  --bg-3:     #1c0f3e;
  --white:    #ffffff;
  --w85:      rgba(255,255,255,0.85);
  --w75:      rgba(255,255,255,0.75);
  --w50:      rgba(255,255,255,0.50);
  --w25:      rgba(255,255,255,0.25);
  --w15:      rgba(255,255,255,0.15);
  --w08:      rgba(255,255,255,0.08);
  --w04:      rgba(255,255,255,0.04);
  --glow:     0 0 70px rgba(215,10,132,0.45);
  --glow-sm:  0 0 32px rgba(215,10,132,0.32);
  --max-w:    1160px;
  --stripe: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 18px,
    rgba(0,0,0,0.13) 18px,
    rgba(0,0,0,0.13) 19px
  );
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.br-mobile { display: none; }
.br-desktop { display: block; }
html { font-size: 15px; overflow-x: hidden; width: 100%; }
body { font-family: 'Oswald', sans-serif; font-size: 18px; background: var(--bg); color: var(--white); overflow-x: hidden; width: 100%; position: relative; }
*, *:focus { outline: none; }

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ── LIQUID GLASS BASE ── */
.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 8px 32px rgba(0,0,0,0.28);
}

/* ── PILL ── */
.pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--w85);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 4px 16px rgba(0,0,0,0.2);
}
.pill svg { flex-shrink: 0; opacity: 0.7; }
.pill-accent {
  border-color: rgba(215,10,132,0.4); color: var(--pink);
  background: rgba(215,10,132,0.08);
  box-shadow: inset 0 1px 0 rgba(215,10,132,0.15), 0 4px 16px rgba(215,10,132,0.15);
  animation: pulse-pill 2.8s ease-in-out infinite;
}
@keyframes pulse-pill {
  0%,100% { box-shadow: inset 0 1px 0 rgba(215,10,132,0.15), 0 0 12px rgba(215,10,132,0.15); }
  50%      { box-shadow: inset 0 1px 0 rgba(215,10,132,0.25), 0 0 28px rgba(215,10,132,0.35); }
}

/* ── S-TAG ── */
.s-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 1rem;
}
.s-tag::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--pink); }
/* nome da modalidade do ecossistema (Grow, Brand, Scale, Full Growth) — tamanho de H1, peso light */
.pkg-name-tag {
  display: block; font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 300;
  letter-spacing: -0.01em; text-transform: uppercase; color: var(--pink);
  margin-bottom: 1rem;
}

/* ── BTN ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid rgba(215,10,132,0.55); border-radius: 100px;
  padding: 0.95rem 2rem;
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none; cursor: pointer;
  background: rgba(215,10,132,0.08);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 20px rgba(0,0,0,0.2);
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s, border-color 0.22s;
}
.btn:hover { background: rgba(215,10,132,0.22); box-shadow: var(--glow-sm); transform: translateY(-1px); border-color: var(--pink); }
.btn-fill { background: var(--crimson); border-color: var(--crimson); }
.btn-fill:hover { background: var(--pink); border-color: var(--pink); box-shadow: var(--glow); transform: translateY(-1px); }
.btn-lg { padding: 1.15rem 2.6rem; font-size: 0.95rem; }
.btn-sq { border-radius: 4px; }
.btn-outline { background: transparent; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.1rem 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(6,4,26,0.65);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { text-decoration: none; display: flex; align-items: center; }
.logo img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--w75); text-decoration: none;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--pink); }

/* hamburger */
.nav-hamburger {
  display: none;
  align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  cursor: pointer; background: transparent; border: none;
  padding: 0; color: #ffffff;
}
.nav-hamburger svg { width: 22px; height: 22px; display: block; }
.nav-hamburger .icon-close { display: none; }
.nav-hamburger.open .icon-menu { display: none; }
.nav-hamburger.open .icon-close { display: block; }
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none !important; }
}
@media (min-width: 901px) {
  .nav-drawer { display: none !important; }
}

/* mobile drawer */
.nav-drawer {
  display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,4,26,0.97); backdrop-filter: blur(20px);
  z-index: 998; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  overflow-y: auto; padding: 2rem 0;
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-size: 1.25rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--w75); text-decoration: none;
  transition: color 0.2s;
}
.nav-drawer a:hover, .nav-drawer a:active, .nav-drawer a.active { color: var(--pink); }
.nav-drawer .btn { font-size: 0.9rem; padding: 0.9rem 2rem; }

/* acordeão do drawer mobile (submenu de "Quero Investir em Franquias" em investir.html) */
.drawer-accordion { display: flex; flex-direction: column; align-items: center; }
.drawer-accordion-row { display: flex; align-items: center; gap: 0.6rem; }
.drawer-accordion-label {
  margin: 0 !important; /* já herda o estilo de .nav-drawer-link */
}
.drawer-accordion-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  cursor: pointer; color: var(--w75);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.drawer-accordion-toggle:hover, .drawer-accordion-toggle.open { color: var(--pink); border-color: var(--pink); background: rgba(215,10,132,0.1); }
.drawer-accordion-chevron { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.25s ease; }
.drawer-accordion-toggle.open .drawer-accordion-chevron { transform: rotate(180deg); }
.drawer-accordion-body {
  max-height: 0; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  transition: max-height 0.3s ease;
}
.drawer-accordion-body.open { max-height: 320px; }
.nav-drawer-link-sub {
  font-size: 0.95rem !important; opacity: 0.7;
  padding: 0.7rem 0;
}

/* ── NAV DROPDOWN (menu interno de página em cascata, ex: investir.html) ── */
.nav-dropdown { position: relative; display: flex; align-items: center; height: 100%; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--w75); text-decoration: none;
  transition: color 0.2s; white-space: nowrap;
}
.nav-dropdown-trigger:hover, .nav-dropdown-trigger.active { color: var(--white); }
.nav-dropdown-trigger.active { color: var(--pink); }
.nav-dropdown-trigger::after {
  content: ''; width: 6px; height: 6px; margin-top: -3px;
  border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.6; transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger::after { transform: rotate(225deg) translateY(2px); }
/* wrapper invisível: começa colado no trigger (sem gap morto) e só o card interno tem visual */
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 0.9rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s;
  z-index: 210;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-dropdown-card {
  min-width: 210px;
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.6rem;
  border-radius: 14px;
  background: rgba(6,4,26,0.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 16px 40px rgba(0,0,0,0.35);
  position: relative;
}
.nav-dropdown-card::before {
  content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(6,4,26,0.92);
  border-left: 1px solid rgba(255,255,255,0.12); border-top: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px 0 0 0;
  margin-bottom: -5px;
}
.nav-dropdown-card a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--w75); text-decoration: none;
  padding: 0.65rem 0.9rem; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dropdown-card a:hover { color: var(--white); background: rgba(215,10,132,0.12); }
body.nav-on-light .nav-dropdown-card { background: rgba(255,255,255,0.97); border-color: rgba(14,12,36,0.1); }
body.nav-on-light .nav-dropdown-card::before { background: rgba(255,255,255,0.97); border-color: rgba(14,12,36,0.1); }
body.nav-on-light .nav-dropdown-card a { color: rgba(14,12,36,0.7); }
body.nav-on-light .nav-dropdown-card a:hover { color: #0e0c24; background: rgba(215,10,132,0.08); }
body.nav-on-light nav:not(.scrolled) .nav-dropdown-trigger { color: rgba(14,12,36,0.75); }
body.nav-on-light nav:not(.scrolled) .nav-dropdown-trigger:hover,
body.nav-on-light nav:not(.scrolled) .nav-dropdown-trigger.active { color: #0e0c24; }
@media (max-width: 900px) { .nav-dropdown-menu { display: none; } }

/* ── HERO (home / investir — com imagem de fundo) ── */
#hero {
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 7rem 0 4.875rem;
}
#hero::after {
  content: ''; position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0.85;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../BG%20TELA%2001.png') center -80px / cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,4,26,0.92) 38%, rgba(6,4,26,0.55) 68%, rgba(6,4,26,0.15) 100%);
}
.hero-glow {
  position: absolute; z-index: 1;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 70% at 100% 40%, rgba(0,210,200,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 35% 65% at 100% 80%, rgba(100,0,210,0.20) 0%, transparent 52%),
    radial-gradient(ellipse 35% 60% at 0% 30%, rgba(215,10,132,0.16) 0%, transparent 52%),
    radial-gradient(ellipse 30% 50% at 0% 80%, rgba(100,0,210,0.12) 0%, transparent 50%);
  pointer-events: none;
  filter: blur(55px);
}
.hero-deco {
  position: absolute; z-index: 1;
  font-size: clamp(7rem, 16vw, 16rem);
  font-weight: 700; letter-spacing: -0.05em; text-transform: uppercase;
  line-height: 1; pointer-events: none; user-select: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.045);
}
.hero-deco-top { top: -1rem; left: -0.5rem; }
.hero-deco-bot { bottom: -2.5rem; right: -0.5rem; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 60px 2rem 0; width: 100%;
}
#hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.84rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
#hero h1 .h1-light { font-weight: 200; display: block; }
#hero h1 em { font-style: normal; color: var(--pink); }
.hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.65;
  color: var(--w75); max-width: 560px; margin-bottom: 1.8rem;
}
.hero-info-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.4rem; }
.hero-cta-strip { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }

/* ── HERO LIGHT (variante clara — fundo BG-BCO2.png) ── */
#hero.hero-light .hero-bg { background-image: url('../BG-BCO2.png'); background-position: 78% 42%; }
#hero.hero-light .hero-bg::after {
  background: linear-gradient(100deg, rgba(255,255,255,0.55) 30%, rgba(255,255,255,0.15) 55%, rgba(255,255,255,0) 75%);
}
#hero.hero-light .hero-glow {
  background:
    radial-gradient(ellipse 40% 70% at 100% 40%, rgba(0,190,180,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 35% 65% at 100% 80%, rgba(163,7,95,0.12) 0%, transparent 52%),
    radial-gradient(ellipse 35% 60% at 0% 20%, rgba(215,10,132,0.08) 0%, transparent 55%);
}
#hero.hero-light h1, #hero.hero-light h1 .h1-light { color: #0e0c24; }
#hero.hero-light h1 em { color: var(--pink); }
#hero.hero-light .hero-sub { color: rgba(14,12,36,0.62); }
#hero.hero-light .pill { color: rgba(14,12,36,0.75); border-color: rgba(14,12,36,0.14); background: rgba(255,255,255,0.55); box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 4px 16px rgba(14,12,36,0.06); }
#hero.hero-light .pill-accent { color: var(--crimson); border-color: rgba(215,10,132,0.35); background: rgba(215,10,132,0.06); }
#hero.hero-light .hero-deco { -webkit-text-stroke: 1px rgba(14,12,36,0.06); }

/* ── HERO HOME (sem submenu acima, precisa de mais respiro no topo pro nav fixo) ── */
#hero.hero-home { padding-top: 9.5rem; }
.hero-inner-flush { padding-top: 0; }
@media (max-width: 900px) { #hero.hero-home { padding-top: 6.5rem; } }
@media (max-width: 640px) { #hero.hero-home { padding-top: 5.5rem; padding-bottom: 2rem; } }
@media (max-width: 640px) {
  /* mobile: texto centralizado precisa de mais cobertura do overlay pra não cair em cima do cristal */
  #hero.hero-light .hero-bg { background-position: calc(60% - 70px) 78%; }
  #hero.hero-light .hero-bg::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.35) 100%);
  }
}

/* nav sobre a hero clara — texto escuro até rolar a página */
body.nav-on-light nav:not(.scrolled) .nav-links a { color: rgba(14,12,36,0.75); }
body.nav-on-light nav:not(.scrolled) .nav-links a:hover,
body.nav-on-light nav:not(.scrolled) .nav-links a.active { color: #0e0c24; }
body.nav-on-light nav:not(.scrolled) .nav-hamburger { color: #0e0c24; }
body.nav-on-light nav:not(.scrolled) .logo img { filter: brightness(0); opacity: 0.88; }

/* ── PAGE HERO (páginas internas — sem imagem de fundo) ── */
.page-hero {
  position: relative; overflow: hidden;
  background-color: var(--bg-2);
  background-image: var(--stripe);
  padding: 9.5rem 0 4.5rem;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 450px;
  background: radial-gradient(ellipse, rgba(215,10,132,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.04em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.page-hero h1 em { font-style: normal; color: var(--pink); }
.page-hero p { font-size: 18px; font-weight: 300; line-height: 1.7; color: var(--w75); }
.page-hero .s-tag { justify-content: center; }
/* variante alinhada à esquerda */
.page-hero.page-hero-left { text-align: left; }
.page-hero-left .page-hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.page-hero-left .page-hero-inner h1, .page-hero-left .page-hero-inner p { max-width: 760px; }
.page-hero-left .s-tag { justify-content: flex-start; }
@media (max-width: 640px) { .page-hero-left .page-hero-inner { padding: 0 1.2rem; } }

/* ── TICKER ── */
.ticker-wrap { background: var(--crimson); padding: 0.85rem 0; overflow: hidden; display: flex; align-items: center; }
.ticker-track { display: flex; animation: ticker 25s linear infinite; }
.ticker-inner { display: flex; align-items: center; gap: 3.5rem; flex-shrink: 0; white-space: nowrap; padding-right: 3.5rem; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.ticker-sep { color: rgba(255,255,255,0.45); }

/* ── SECTION HEAD ── */
.section-head { text-align: center; margin-bottom: 4.5rem; }
.section-head h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.04em; text-transform: uppercase; }
.section-head h2 em { font-style: normal; color: var(--pink); }
.section-head p { font-size: 18px; font-weight: 300; color: var(--w75); margin-top: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* section utility backgrounds */
.sec-light { background: linear-gradient(160deg, #f4f2ff 0%, #ede9ff 100%); padding: 7rem 0; position: relative; overflow: hidden; }
.sec-light .section-head h2 { color: #0e0c24; }
.sec-light .section-head h2 em { color: var(--pink); }
.sec-light .section-head p { color: rgba(14,12,36,0.55); }
.sec-dark { background-color: var(--bg); padding: 7rem 0; position: relative; }
.sec-dark-2 { background-color: var(--bg-2); background-image: var(--stripe); padding: 7rem 0; position: relative; }
.sec-dark-3 { background-color: var(--bg-3); background-image: var(--stripe); padding: 7rem 0; position: relative; }
.sec-stripe { background-image: var(--stripe); }
.sec-topline::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  opacity: 0.5;
}
/* glow decorativo reutilizável — dá contraste de cor sem sair do tema escuro */
.sec-glow { position: relative; overflow: hidden; }
.sec-glow::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px; max-width: 140%;
  background:
    radial-gradient(ellipse 50% 60% at 30% 20%, rgba(215,10,132,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 75% 60%, rgba(100,0,210,0.14) 0%, transparent 60%);
}
.sec-glow > .container, .sec-glow > .page-hero-inner { position: relative; z-index: 1; }

/* texto claro reaproveitado em fundos .sec-light (text-block, contact-info) */
.sec-light .text-block h2 { color: #0e0c24; }
.sec-light .text-block p { color: rgba(14,12,36,0.6); }
.sec-light .contact-info-card { border-color: rgba(163,7,95,0.15); background: rgba(255,255,255,0.55); color: #0e0c24; }
.sec-light .contact-info-card span { color: rgba(14,12,36,0.75); }
.sec-light .contact-info-card:hover { border-color: rgba(215,10,132,0.4); background: rgba(215,10,132,0.08); }

/* ── MERCADO layout (usado em investir.html) ── */
#mercado { background: linear-gradient(160deg, #f4f2ff 0%, #ede9ff 100%); padding: 7rem 0; position: relative; overflow: hidden; }
#mercado::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(163,7,95,0.06) 0%, transparent 70%); pointer-events: none; }
.mercado-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.mercado-left h2 { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.04em; text-transform: uppercase; margin-bottom: 1.4rem; }
.mercado-left h2 em { font-style: normal; color: var(--pink); }
.mercado-left h2 { color: #0e0c24; }
.mercado-left p { font-size: 18px; font-weight: 300; line-height: 1.8; color: rgba(14,12,36,0.65); margin-bottom: 1.2rem; }
.mercado-left p strong { color: #0e0c24; font-weight: 600; }
.mercado-source { font-size: 0.68rem; font-weight: 400; color: rgba(14,12,36,0.35); letter-spacing: 0.08em; margin-top: 2rem; }
.mercado-right { display: flex; flex-direction: column; gap: 0; border-left: 1px solid rgba(215,10,132,0.25); padding-left: 2.5rem; }
.mercado-stat { background: transparent; padding: 1.6rem 0; display: flex; align-items: center; gap: 1.6rem; border-bottom: 1px solid rgba(163,7,95,0.12); }
.mercado-stat:last-child { border-bottom: none; }
.mercado-stat-num { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; letter-spacing: -0.05em; line-height: 1; flex-shrink: 0; color: var(--pink); width: 8.5rem; }
.mercado-stat-text { display: flex; flex-direction: column; gap: 0.25rem; }
.mercado-stat-label { font-size: 18px; font-weight: 500; color: #0e0c24; letter-spacing: -0.01em; }
.mercado-stat-desc { font-size: 18px; font-weight: 300; color: rgba(14,12,36,0.55); line-height: 1.45; }

/* ── CARD GRID (genérico: problema, check-list, ecossistema resumo, projetos) ── */
.cards-grid { display: grid; gap: 1.2rem; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.check-item {
  display: flex; flex-direction: column; gap: 0;
  padding: 2.2rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  text-decoration: none;
}
.check-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(215,10,132,0.15) 0%, rgba(100,0,210,0.12) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: inherit;
}
.check-item:hover {
  transform: translateY(-4px);
  border-color: rgba(215,10,132,0.4);
  background: rgba(215,10,132,0.06);
  box-shadow: 0 12px 40px rgba(215,10,132,0.15), 0 2px 8px rgba(0,0,0,0.3);
}
.check-item:hover::before { opacity: 1; }
.check-item:hover .check-icon-wrap { background: rgba(215,10,132,0.2); border-color: rgba(215,10,132,0.5); }
.check-item:hover .check-icon-wrap svg, .check-item:hover .check-icon-wrap span { color: var(--pink); }
.check-item:hover .check-text h4 { color: var(--white); }
.check-item:hover .check-text p { color: var(--w85); }
.check-item:hover .check-link { color: var(--pink); }
.check-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  transition: background 0.35s, border-color 0.35s;
  flex-shrink: 0;
}
.check-icon-wrap svg { width: 20px; height: 20px; color: rgba(255,255,255,0.45); transition: color 0.35s; }
.check-icon-wrap span { font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,0.45); transition: color 0.35s; }
.check-text { position: relative; z-index: 1; }
.check-text h4 { font-size: 18px; font-weight: 600; margin-bottom: 0.6rem; letter-spacing: -0.02em; color: var(--w85); transition: color 0.35s; }
.check-text p { font-size: 18px; font-weight: 300; line-height: 1.7; color: var(--w50); transition: color 0.35s; }
.check-link { display: inline-block; margin-top: 1rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--w50); transition: color 0.35s; position: relative; z-index: 1; }

/* light variant (sobre fundo claro) */
.sec-light .check-item { background: rgba(255,255,255,0.6); border-color: rgba(163,7,95,0.12); }
.sec-light .check-item:hover { background: rgba(215,10,132,0.07); border-color: rgba(215,10,132,0.4); box-shadow: 0 12px 40px rgba(215,10,132,0.12), 0 2px 8px rgba(0,0,0,0.06); }
.sec-light .check-icon-wrap { background: rgba(163,7,95,0.07); border-color: rgba(163,7,95,0.15); }
.sec-light .check-icon-wrap svg, .sec-light .check-icon-wrap span { color: rgba(163,7,95,0.5); }
.sec-light .check-item:hover .check-icon-wrap { background: rgba(215,10,132,0.15); border-color: rgba(215,10,132,0.4); }
.sec-light .check-item:hover .check-icon-wrap svg, .sec-light .check-item:hover .check-icon-wrap span { color: var(--pink); }
.sec-light .check-text h4 { color: #0e0c24; }
.sec-light .check-text p { color: rgba(14,12,36,0.55); }
.sec-light .check-item:hover .check-text h4 { color: #0e0c24; }
.sec-light .check-item:hover .check-text p { color: rgba(14,12,36,0.7); }

/* ── COMPARATIVO (Maxymus vs Modelo Tradicional / bad vs good) ── */
.comp-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 840px; margin: 0 auto; }
.comp-card { border-radius: 20px; padding: 3rem 2.6rem; position: relative; display: flex; flex-direction: column; }
.comp-card.bad { background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.2) 100%); border: 1px solid rgba(255,255,255,0.07); transform: scale(0.93); transform-origin: right center; opacity: 0.75; }
.comp-card.good { background: linear-gradient(160deg, rgba(215,10,132,0.1) 0%, rgba(163,7,95,0.04) 100%); border: 1px solid rgba(215,10,132,0.35); box-shadow: 0 0 60px rgba(215,10,132,0.12), inset 0 1px 0 rgba(215,10,132,0.2); }
.comp-card.good::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(215,10,132,0.9), transparent); }
@keyframes pink-pulse { 0%, 100% { box-shadow: 0 0 40px rgba(215,10,132,0.1), inset 0 1px 0 rgba(215,10,132,0.2); transform: translateY(0px); } 50% { box-shadow: 0 0 70px rgba(215,10,132,0.25), inset 0 1px 0 rgba(215,10,132,0.3); transform: translateY(-8px); } }
@keyframes pink-pulse-x { 0%, 100% { box-shadow: 0 0 40px rgba(215,10,132,0.1), inset 0 1px 0 rgba(215,10,132,0.2); transform: translateX(0px); } 50% { box-shadow: 0 0 70px rgba(215,10,132,0.25), inset 0 1px 0 rgba(215,10,132,0.3); transform: translateX(7px); } }
.comp-card.good.pulse { animation: pink-pulse 1.2s ease-in-out infinite; }
.comp-swipe-arrow { display: none; }
.comp-swipe-hint { display: none; }
.comp-head { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 2rem; padding: 0.35rem 0.9rem; border-radius: 99px; width: fit-content; }
.comp-card.bad .comp-head { color: var(--w50); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }
.comp-card.good .comp-head { color: var(--pink); border: 1px solid rgba(215,10,132,0.35); background: rgba(215,10,132,0.1); }
.comp-rows { display: flex; flex-direction: column; gap: 0; flex: 1; }
.comp-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.comp-row:last-child { border-bottom: none; }
.comp-icon { flex-shrink: 0; margin-top: 3px; }
.comp-row p { font-size: 18px; font-weight: 300; line-height: 1.5; color: var(--w75); }
.comp-row strong { font-weight: 600; color: var(--white); }
.comp-card.bad .comp-row p { color: var(--w50); }
.comp-cta { margin-top: 2rem; display: block; text-align: center; }

/* ── DIFF TABLE (Maxymus vs Modelo tradicional — tabela) ── */
.diff-table-wrap { max-width: 840px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.diff-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.03); }
.diff-table th, .diff-table td { padding: 1.1rem 1.6rem; text-align: left; font-size: 18px; font-weight: 300; border-bottom: 1px solid rgba(255,255,255,0.07); }
.diff-table th { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--w50); background: rgba(255,255,255,0.04); }
.diff-table th:first-child, .diff-table td:first-child { color: var(--w85); font-weight: 500; }
.diff-table th:not(:first-child), .diff-table td:not(:first-child) { text-align: center; }
.diff-table td:nth-child(2) { color: var(--pink); font-weight: 500; }
.diff-table td:nth-child(3) { color: var(--w50); }
.diff-table tr:last-child td { border-bottom: none; }
@media (max-width: 640px) {
  .diff-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .diff-table { min-width: 560px; }
  .diff-table th, .diff-table td { padding: 0.85rem 1rem; font-size: 15px; }
}

/* ── ECOSSISTEMA — cards resumo (Grow/Brand/Scale/Full Growth) ── */
.eco-card-kicker { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.6rem; display: block; }

/* ── PACOTE detalhado (página Ecossistema) ── */
.pkg-block { padding: 6rem 0; position: relative; }
.pkg-head { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
.pkg-head h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.04em; text-transform: uppercase; margin-bottom: 1rem; }
.pkg-head p { font-size: 18px; font-weight: 300; color: var(--w75); line-height: 1.7; }
.pkg-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.pkg-list-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--w50); margin-bottom: 1.2rem; }
.pkg-list { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; }
.pkg-list-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.03); }
.pkg-list-item:last-child { border-bottom: none; }
.pkg-list-item svg { flex-shrink: 0; margin-top: 3px; color: var(--pink); }
.pkg-list-item p { font-size: 18px; font-weight: 300; line-height: 1.55; color: var(--w75); }
.pkg-callout { background: linear-gradient(160deg, rgba(215,10,132,0.1) 0%, rgba(163,7,95,0.04) 100%); border: 1px solid rgba(215,10,132,0.3); border-radius: 14px; padding: 1.8rem 1.8rem; }
.pkg-callout-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.2rem; }
.pkg-callout p { font-size: 18px; font-weight: 300; line-height: 1.65; color: var(--w85); }
.pkg-cta-sec { margin-top: 1.6rem; font-size: 0.95rem; font-weight: 300; color: var(--w50); line-height: 1.6; }
.pkg-cta-sec a { color: var(--pink); text-decoration: none; border-bottom: 1px solid rgba(215,10,132,0.4); }
/* Ecossistema: pacote "Grow" em fundo claro pra contraste forte com o page-hero escuro */
.sec-light .pkg-head h2 { color: #0e0c24; }
.sec-light .pkg-head p { color: rgba(14,12,36,0.55); }
.sec-light .pkg-list-title { color: rgba(14,12,36,0.45); }
.sec-light .pkg-list { border-color: rgba(163,7,95,0.15); }
.sec-light .pkg-list-item { background: rgba(255,255,255,0.55); border-bottom-color: rgba(163,7,95,0.12); }
.sec-light .pkg-list-item p { color: rgba(14,12,36,0.68); }
.sec-light .pkg-callout { background: linear-gradient(160deg, rgba(215,10,132,0.08) 0%, rgba(163,7,95,0.03) 100%); border-color: rgba(163,7,95,0.25); }
.sec-light .pkg-callout p { color: rgba(14,12,36,0.72); }
.sec-light .pkg-cta-sec { color: rgba(14,12,36,0.55); }
.pkg-full { max-width: 760px; margin: 0 auto; text-align: center; padding: 3rem 2.4rem; border-radius: 20px; background: linear-gradient(160deg, rgba(215,10,132,0.14) 0%, rgba(100,0,210,0.06) 100%); border: 1px solid rgba(215,10,132,0.35); box-shadow: 0 0 60px rgba(215,10,132,0.12); }
.pkg-full-formula { display: flex; align-items: center; justify-content: center; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.4rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--w75); }
.pkg-full-formula span.plus { color: var(--pink); font-size: 1.1rem; }
.pkg-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); max-width: var(--max-w); margin: 0 auto; }

/* ── AUTORIDADE / origem layout (reaproveitado em Quem Somos) ── */
#autoridade, .aut-sec { background-color: var(--bg-2); background-image: var(--stripe); padding: 7rem 0; position: relative; }
/* Quem Somos: segunda dobra em fundo claro pra contraste forte com o page-hero escuro */
.aut-sec.sec-light { background-image: none; }
.sec-light .aut-text { background: #ffffff; border-color: rgba(163,7,95,0.15); }
.sec-light .aut-text h2 { color: #0e0c24; }
.sec-light .aut-text p { color: rgba(14,12,36,0.62); }
.sec-light .aut-text p strong { color: #0e0c24; }
.aut-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 3rem; align-items: stretch; }
.qual-img-card { border-radius: 4px; overflow: hidden; position: relative; border: 1px solid rgba(200,10,56,0.5); box-shadow: 0 0 40px rgba(200,10,56,0.3); }
.qual-img-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center -140px; display: block; }
.qual-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,0,5,0.9) 100%); }
.qual-img-card::before { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(110,5,160,0.08); mix-blend-mode: color; pointer-events: none; }
.qual-img-caption { position: absolute; bottom: 1.4rem; left: 1.4rem; right: 1.4rem; z-index: 2; }
.qual-img-name { font-size: 0.75rem; font-weight: 300; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.35rem; }
.qual-img-quote { font-size: 0.95rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.45; }
.aut-layout .qual-img-card { border-radius: 16px; border: 1px solid rgba(215,10,132,0.4); box-shadow: none; overflow: hidden; aspect-ratio: 4/5; }
.aut-layout .qual-img-card img { width: 100%; height: 100%; object-fit: cover; object-position: center -50px; }
.aut-text { display: flex; flex-direction: column; justify-content: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2.8rem 2.4rem; }
.aut-text h2 { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.04em; text-transform: uppercase; margin-bottom: 1.4rem; }
.aut-text h2 em { font-style: normal; color: var(--pink); }
.aut-text p { font-size: 18px; font-weight: 300; line-height: 1.75; color: var(--w75); margin-bottom: 1.2rem; }
.aut-text p:last-child { margin-bottom: 0; }
.aut-text p strong { color: var(--white); font-weight: 600; }
.aut-badges-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 3rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; }
.aut-badge { display: flex; flex-direction: column; padding: 2.2rem 2rem; background: rgba(255,255,255,0.03); border-right: 1px solid rgba(255,255,255,0.08); transition: background 0.3s; }
.aut-badge:last-child { border-right: none; }
.aut-badge:hover { background: rgba(215,10,132,0.06); }
.aut-badge-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--w75); margin-bottom: 1.4rem; flex-shrink: 0; transition: background 0.3s, border-color 0.3s, color 0.3s; }
.aut-badge:hover .aut-badge-icon { background: rgba(215,10,132,0.15); border-color: rgba(215,10,132,0.4); color: var(--pink); }
.aut-badge-text { font-size: 18px; font-weight: 300; line-height: 1.6; color: var(--w75); }
.aut-badge-text strong { font-weight: 600; color: var(--white); display: block; margin-bottom: 0.5rem; font-size: 18px; }

/* ── SIMPLE 2-BLOCK (missão/visão, texto centralizado max-width) ── */
.text-block { max-width: 780px; margin: 0 auto; text-align: center; }
.text-block + .text-block { margin-top: 3rem; }
.text-block h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; text-transform: uppercase; margin-bottom: 1rem; }
.text-block p { font-size: 18px; font-weight: 300; line-height: 1.75; color: var(--w75); }
.text-block .s-tag { justify-content: center; }

/* ── PORTFÓLIO — carrossel (usado em investir.html) ── */
.port-stage { position: relative; }
.port-carousel-wrap {
  position: relative; width: 100%; padding: 2rem 0 3rem;
  margin-top: -2rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.port-carousel {
  display: flex; align-items: center; justify-content: center;
  gap: 0; position: relative; min-height: 620px;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.port-slide {
  position: absolute;
  width: 420px;
  background: rgb(10,8,42);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1),
              opacity 0.55s cubic-bezier(.4,0,.2,1),
              box-shadow 0.55s cubic-bezier(.4,0,.2,1),
              z-index 0s 0s;
  user-select: none;
}
.port-slide.active { transform: translateX(0) scale(1); opacity: 1; z-index: 3; box-shadow: 0 0 60px rgba(215,10,132,0.25), 0 30px 60px rgba(0,0,0,0.5); border-color: rgba(215,10,132,0.3); cursor: default; }
.port-slide-inner { display: flex; flex-direction: column; }
.port-slide.prev  { transform: translateX(-290px) scale(0.75) rotateY(10deg); opacity: 0.55; z-index: 2; }
.port-slide.prev2 { transform: translateX(-510px) scale(0.56) rotateY(18deg); opacity: 0.35; z-index: 1; }
.port-slide.next  { transform: translateX(290px) scale(0.75) rotateY(-10deg); opacity: 0.55; z-index: 2; }
.port-slide.next2 { transform: translateX(510px) scale(0.56) rotateY(-18deg); opacity: 0.35; z-index: 1; }
.port-slide.hidden { opacity: 0; z-index: 0; pointer-events: none; transform: translateX(0) scale(0.5); }
.port-slide-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.port-slide-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s cubic-bezier(.4,0,.2,1); }
.port-slide.active .port-slide-img img { transform: scale(1.03); }
.port-slide-img::before { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(110, 5, 160, 0.10); mix-blend-mode: color; pointer-events: none; }
.port-slide-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,4,26,0.85) 100%); }
.port-slide-body { background: rgba(10,8,42,0.95); padding: 1.6rem 1.8rem 1.8rem; border-top: 1px solid rgba(255,255,255,0.07); }
@keyframes pill-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(215,10,132,0.0); border-color: rgba(215,10,132,0.4); } 50% { box-shadow: 0 0 8px 2px rgba(215,10,132,0.3); border-color: rgba(215,10,132,0.85); } }
.port-sector { display: inline-flex; align-items: center; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); border: 1px solid rgba(215,10,132,0.4); border-radius: 99px; padding: 0.25rem 0.7rem; margin-bottom: 0.75rem; animation: pill-pulse 2.2s ease-in-out infinite; }
.port-name { font-size: 2rem; font-weight: 700; letter-spacing: -0.04em; text-transform: uppercase; line-height: 1; margin-bottom: 0.7rem; }
.port-hook { font-size: 18px; font-weight: 300; line-height: 1.65; color: var(--w75); margin-bottom: 1.2rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.port-invest { padding-top: 1rem; border-top: 1px solid var(--w08); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.port-invest-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--w50); }
.port-invest-value { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.03em; color: var(--white); margin-top: 0.1rem; }
.port-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: -3rem; }
.port-arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; color: var(--white); }
.port-arrow:hover { border-color: var(--pink); background: rgba(215,10,132,0.12); box-shadow: 0 0 20px rgba(215,10,132,0.2); }
.port-arrow svg { width: 18px; height: 18px; }
.port-arrow-prev, .port-arrow-next { display: flex; position: static; transform: none; }
.port-dots { display: flex; gap: 0.5rem; align-items: center; }
.port-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--w25); cursor: pointer; transition: all 0.25s; }
.port-dot.active { background: var(--pink); box-shadow: 0 0 8px rgba(215,10,132,0.5); width: 20px; border-radius: 3px; }
.port-cta-wrap { text-align: center; margin-top: 4rem; }
.port-cta-wrap p { font-size: 18px; font-weight: 300; color: var(--w75); margin-bottom: 1.4rem; }

/* ── PROCESSO / STEPS grid ── */
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proc-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.proc-card { background: transparent; padding: 2.4rem 2rem; position: relative; transition: background 0.22s; border-right: 1px solid rgba(110,5,160,0.12); border-bottom: 1px solid rgba(110,5,160,0.12); }
.proc-grid.cols-3 .proc-card:nth-child(3n) { border-right: none; }
.proc-grid.cols-3 .proc-card:nth-child(n+4) { border-bottom: none; }
.proc-grid.cols-4 .proc-card:nth-child(4n) { border-right: none; }
.proc-grid.cols-4 .proc-card:nth-child(n+5) { border-bottom: none; }
.proc-card:hover { background: rgba(215,10,132,0.03); }
.proc-icon { display: flex; align-items: center; justify-content: flex-start; color: rgba(215,10,132,0.6); margin-bottom: 1.2rem; }
.proc-icon svg { width: 24px; height: 24px; }
.proc-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(215,10,132,0.6); margin-bottom: 0.8rem; display: block; }
.proc-card h3 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 0.6rem; color: #0e0c24; }
.proc-card p { font-size: 18px; font-weight: 300; line-height: 1.65; color: rgba(14,12,36,0.6); }
.sec-dark .proc-card, .sec-dark-2 .proc-card { border-right-color: rgba(255,255,255,0.08); border-bottom-color: rgba(255,255,255,0.08); }
.sec-dark .proc-card h3, .sec-dark-2 .proc-card h3 { color: var(--w85); }
.sec-dark .proc-card p, .sec-dark-2 .proc-card p { color: var(--w50); }

/* ── BANNER CTA ── */
#banner-cta, .banner-cta-sec {
  position: relative; overflow: hidden; padding: 7rem 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% -10%, rgba(215,10,132,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 120%, rgba(163,7,95,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 110%, rgba(100,0,180,0.2) 0%, transparent 60%),
    var(--bg);
  text-align: center;
}
#banner-cta::before, .banner-cta-sec::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(215,10,132,0.6), transparent); }
#banner-cta::after, .banner-cta-sec::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(215,10,132,0.3), transparent); }
.banner-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.banner-inner h2 { font-size: clamp(2.125rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.04em; text-transform: uppercase; margin-bottom: 0.8rem; }
.banner-inner h2 span { display: block; font-weight: 200; font-size: 1em; letter-spacing: -0.04em; text-transform: uppercase; }
.banner-inner p { font-size: 18px; font-weight: 300; opacity: 0.85; line-height: 1.65; margin-bottom: 2rem; }

/* ── FAQ ── */
#faq, .faq-sec { background-color: var(--bg); background-image: var(--stripe); padding: 7rem 0; }
.faq-wrap { max-width: 800px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.07); backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 8px 40px rgba(0,0,0,0.25); }
.faq-item { border-bottom: 1px solid var(--w08); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; padding: 1.7rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; text-align: left; transition: background 0.2s; }
.faq-q:hover { background: var(--w04); }
.faq-q span { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 500; color: var(--white); letter-spacing: -0.01em; }
.faq-chevron { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--w15); display: flex; align-items: center; justify-content: center; color: var(--white); transition: transform 0.3s, border-color 0.2s, background 0.2s; }
.faq-chevron svg { width: 12px; height: 12px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--pink); background: rgba(200,10,56,0.12); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-body { max-height: 500px; }
.faq-body-inner { padding: 0 2rem 1.8rem; font-size: 18px; font-weight: 300; line-height: 1.75; color: var(--w75); }

/* ── FINAL CTA ── */
#final, .final-sec { background-color: var(--bg-2); background-image: var(--stripe); padding: 7rem 0; text-align: center; position: relative; overflow: hidden; }
#final::before, .final-sec::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(200,10,56,0.15) 0%, transparent 70%); pointer-events: none; }
#final h2, .final-sec h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.04em; text-transform: uppercase; margin-bottom: 1.2rem; }
#final h2 em, .final-sec h2 em { font-style: normal; color: var(--pink); }
#final p, .final-sec p { font-size: 18px; font-weight: 300; color: var(--w75); line-height: 1.65; margin-bottom: 2.8rem; }
#final .s-tag, .final-sec .s-tag { justify-content: center; }

/* ── CONTATO / FORMULÁRIO ── */
#contato, .contato-sec { background-color: var(--bg); background-image: var(--stripe); padding: 7rem 0; position: relative; overflow: hidden; }
#contato::before, .contato-sec::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--crimson), transparent); opacity: 0.5; }
#contato::after, .contato-sec::after { content: ''; position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(200,10,56,0.1) 0%, transparent 70%); pointer-events: none; }
.contato-layout { display: grid; grid-template-columns: 5fr 6fr; gap: 5rem; align-items: center; }
.form-wrap { position: relative; z-index: 1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--w75); }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 4px;
  padding: 1rem 1.2rem; width: 100%; outline: none;
  font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 300; color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(0,0,0,0.1);
  transition: border-color 0.2s, background 0.2s;
}
.form-textarea { resize: vertical; min-height: 110px; font-family: 'Oswald', sans-serif; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--pink); background: rgba(215,10,132,0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 0 3px rgba(215,10,132,0.12); }
.form-select { -webkit-appearance: none; appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.8rem; }
.form-select option, .form-textarea { background: #0a0008; color: #fff; }
.form-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 1.1rem; border-radius: 4px; }
.form-privacy { font-size: 0.76rem; font-weight: 300; color: var(--w50); text-align: center; margin-top: 0.8rem; line-height: 1.5; }
.form-input._has_error, .form-select._has_error { border-color: #ff6b6b; }
.form-grid ._error { grid-column: 1 / -1; }

/* ── MODAL DE OBRIGADO (pós-envio de formulário) ── */
.thankyou-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(6,4,26,0.82);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.thankyou-overlay.is-open { display: flex; }
.thankyou-modal {
  position: relative; max-width: 460px; width: 100%;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.6rem 2.2rem 2.2rem;
  text-align: center;
  box-shadow: var(--glow), 0 20px 60px rgba(0,0,0,0.5);
  animation: thankyouPop 0.35s cubic-bezier(.22,1,.36,1);
}
@keyframes thankyouPop {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.thankyou-icon {
  width: 64px; height: 64px; margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.thankyou-modal h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.7rem; letter-spacing: -0.01em;
}
.thankyou-modal p {
  font-size: 0.95rem; font-weight: 300; color: var(--w75); line-height: 1.6;
  margin-bottom: 1.8rem;
}
.thankyou-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 0.9rem; border-radius: 4px;
  background: transparent; border: 1px solid rgba(255,255,255,0.18);
  color: var(--white); font-family: 'Oswald', sans-serif; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.thankyou-close:hover { border-color: var(--pink); background: rgba(215,10,132,0.08); }
.thankyou-modal-close-x {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: none; color: var(--w75);
  cursor: pointer; transition: background 0.2s;
}
.thankyou-modal-close-x:hover { background: rgba(255,255,255,0.14); }

/* ── CONTATO DIRETO (info block) ── */
.contact-info-row { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; margin-top: 3rem; }
.contact-info-card { display: flex; align-items: center; gap: 0.9rem; padding: 1.2rem 1.6rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); text-decoration: none; color: var(--white); transition: border-color 0.2s, background 0.2s; }
.contact-info-card:hover { border-color: rgba(215,10,132,0.4); background: rgba(215,10,132,0.06); }
.contact-info-card svg { color: var(--pink); flex-shrink: 0; }
.contact-info-card span { font-size: 0.95rem; font-weight: 300; color: var(--w85); }

/* ── FOOTER (mega) ── */
footer { background: var(--bg); border-top: 1px solid var(--w08); padding-top: 4.5rem; }
.foot-top { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.foot-brand .logo img { height: 24px; margin-bottom: 1.1rem; }
.foot-brand p { font-size: 0.92rem; font-weight: 300; color: var(--w50); line-height: 1.65; max-width: 260px; }
.foot-col-title {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--w50); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.5rem;
  background: none; border: none; padding: 0; font-family: 'Oswald', sans-serif; cursor: default; text-align: left;
}
.foot-col-chevron { display: none; width: 14px; height: 14px; flex-shrink: 0; }
.foot-col { display: flex; flex-direction: column; }
.foot-col-links { display: flex; flex-direction: column; gap: 0.75rem; }
.foot-col a { font-size: 0.88rem; font-weight: 300; color: var(--w75); text-decoration: none; transition: color 0.2s; }
.foot-col a:hover { color: var(--pink); }
.foot-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.foot-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; color: var(--w75); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.foot-social a:hover { border-color: var(--pink); color: var(--pink); background: rgba(215,10,132,0.08); }
.foot-bottom { border-top: 1px solid var(--w08); padding: 1.6rem 0; }
.foot-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.foot-copy { font-size: 0.8rem; font-weight: 300; color: var(--w50); }
.foot-links { display: flex; gap: 2rem; }
.foot-links a { font-size: 0.8rem; font-weight: 300; color: var(--w50); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--pink); }

/* ── REVEAL (initial state — GSAP animates these in) ── */
.reveal { opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .mercado-grid { grid-template-columns: 1fr; gap: 4rem; }
  .aut-layout { grid-template-columns: 1fr; gap: 4rem; }
  .cards-grid.cols-3, .cards-grid.cols-4 { grid-template-columns: 1fr; }
  .check-item { padding: 1.6rem 1.4rem; }
  .comp-wrap { grid-template-columns: 1fr; }
  .comp-mid { display: none; }
  .proc-grid, .proc-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .banner-inner { max-width: 100%; }
  .pkg-body { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none !important; }
}
@media (max-width: 640px) {
  body { overflow-x: hidden; }
  .container { padding: 0 1.2rem; }
  #mercado, .sec-light, .sec-dark, .sec-dark-2, .sec-dark-3, #banner-cta, .banner-cta-sec,
  #faq, .faq-sec, #contato, .contato-sec, #final, .final-sec, #autoridade, .aut-sec, .pkg-block {
    padding: 3.5rem 0;
  }
  #contato, .contato-sec { overflow: visible; }
  .br-mobile { display: inline; }
  .br-desktop { display: none; }
  .hero-bg { background-position: 69% 30%; }
  .banner-inner h2 { white-space: normal; }
  #hero { text-align: center; padding: 3rem 0 2rem; }
  #hero h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-info-row { flex-direction: column; align-items: center; gap: 0.6rem; }
  .hero-cta-strip { justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
  .hero-cta-strip .btn { width: 100%; max-width: 320px; justify-content: center; font-size: 0.85rem; padding: 0.85rem 1.2rem; }
  .page-hero { padding: 7.5rem 0 3rem; }
  .section-head { text-align: center; }
  .section-head p { max-width: 100%; }
  .s-tag { justify-content: center !important; }
  .mercado-grid { text-align: center; }
  .mercado-right { border-left: none; padding-left: 0; }
  .mercado-stat { flex-direction: column; align-items: center; gap: 0.6rem; text-align: center; }
  .mercado-stat-text { text-align: center; }
  .check-item { text-align: center; align-items: center; }
  .proc-grid, .proc-grid.cols-4 { grid-template-columns: 1fr; }
  .proc-card { text-align: center; align-items: center; border-right: none !important; }
  .proc-icon { justify-content: center; }
  .banner-inner { text-align: center; }
  .banner-inner .btn { width: 100%; max-width: 320px; justify-content: center; font-size: 0.85rem; }
  .faq-wrap { border-radius: 8px; }
  .contato-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contato-layout .section-head { text-align: center !important; }
  .contato-layout .section-head .s-tag { justify-content: center !important; }
  .contato-layout .section-head p { margin-left: auto; margin-right: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-submit { width: 100%; justify-content: center; font-size: 0.85rem; }
  .aut-layout { grid-template-columns: 1fr; gap: 2rem; }
  .aut-text { text-align: center; order: -1; }
  .qual-visual-wrap { order: 1; }
  .aut-badges-row { grid-template-columns: 1fr; }
  .aut-badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: center; text-align: center; }
  .aut-badge:last-child { border-bottom: none; }
  #final { text-align: center; }
  #final h2 br { display: none; }
  #final .btn { width: 100%; max-width: 320px; justify-content: center; font-size: 0.85rem; }
  .foot-top { grid-template-columns: 1fr; text-align: center; gap: 0; padding-bottom: 0.5rem; }
  .foot-brand p { margin: 0 auto; }
  .foot-brand .logo { justify-content: center; }
  .foot-social { justify-content: center; }
  /* marca vai pro final da lista, depois de todas as categorias */
  .foot-brand { order: 99; padding-top: 1.8rem; margin-top: 0.5rem; }
  /* rodapé vira acordeão — cada categoria fecha por padrão */
  .foot-col { border-bottom: 1px solid var(--w08); }
  .foot-col-title {
    justify-content: space-between; margin-bottom: 0;
    padding: 1.1rem 0.2rem; cursor: pointer;
  }
  .foot-col-chevron { display: block; transition: transform 0.25s ease; }
  .foot-col.open .foot-col-chevron { transform: rotate(180deg); }
  .foot-col-links {
    max-height: 0; overflow: hidden; gap: 0.9rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left; padding: 0 0.2rem;
  }
  .foot-col.open .foot-col-links { max-height: 420px; padding: 0 0.2rem 1.3rem; }
  footer { padding-top: 3rem; }
  .foot-inner { flex-direction: column; align-items: center; text-align: center; gap: 1.6rem; }
  .foot-links { flex-direction: column; align-items: center; gap: 0.75rem; }
  .pkg-body { grid-template-columns: 1fr; }
  .pkg-full-formula { font-size: 0.72rem; }

  /* portfólio — carrossel mobile */
  .port-slide-img { aspect-ratio: 5/2; }
  img[alt="Mister Wiz"] { object-fit: cover !important; object-position: center 40% !important; }
  img[alt="Gellato Churro's"] { object-position: center 20% !important; }
  img[alt="JG Burger"] { object-position: center 65% !important; }
  img[alt="Vaapty"] { transform: scale(1.17) !important; object-position: center 30% !important; }
  img[alt="DUTY Óculos"] { object-position: center 45% !important; transform: scale(1.4) translateX(20px) !important; transform-origin: top center !important; }
  .port-slide-body { padding: 1rem 1.2rem 1.2rem; text-align: center; }
  .port-hook { font-size: 1rem; line-height: 1.5; margin: 0.4rem 0 0.8rem; }
  .port-invest-value { font-size: 1.1rem; }
  .port-name { font-size: 2rem; }
  .port-slide { width: 82vw; max-width: 320px; }
  .port-slide.prev  { transform: translateX(-180px) scale(0.82); opacity: 0.3; }
  .port-slide.next  { transform: translateX(180px) scale(0.82); opacity: 0.3; }
  .port-slide.prev2, .port-slide.next2 { opacity: 0; pointer-events: none; }
  .port-carousel { min-height: 460px; perspective: none; }
  .port-invest { flex-direction: column; align-items: center; gap: 1rem; }
  .port-invest .btn { width: 100%; justify-content: center; font-size: 0.8rem; }
  .port-nav { margin-top: 0; }
  .port-arrow-prev, .port-arrow-next {
    position: absolute;
    width: 36px; height: 36px;
    background: rgba(6,4,26,0.7); border: 1px solid rgba(255,255,255,0.2);
    top: 45%; left: auto; right: auto; transform: none;
  }
  .port-arrow-prev { left: 8px; }
  .port-arrow-next { right: 8px; }
}

/* ═══════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════ */

/* filtro de categorias */
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: 3rem; }
.blog-filter-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 100px;
  padding: 0.55rem 1.2rem; cursor: pointer;
  font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--w75);
  background: rgba(255,255,255,0.06);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.blog-filter-btn:hover { border-color: rgba(215,10,132,0.35); color: var(--white); }
.blog-filter-btn.active {
  border-color: rgba(215,10,132,0.45); color: var(--pink);
  background: rgba(215,10,132,0.1);
  box-shadow: inset 0 1px 0 rgba(215,10,132,0.15);
}
.sec-light .blog-filter-btn { color: rgba(14,12,36,0.6); border-color: rgba(14,12,36,0.14); background: rgba(255,255,255,0.5); }
.sec-light .blog-filter-btn:hover { color: #0e0c24; border-color: rgba(215,10,132,0.35); }
.sec-light .blog-filter-btn.active { color: var(--crimson); border-color: rgba(215,10,132,0.4); background: rgba(215,10,132,0.08); }

/* grid de posts */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.blog-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(215,10,132,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.sec-light .blog-card { background: rgba(255,255,255,0.6); border-color: rgba(163,7,95,0.12); }
.sec-light .blog-card:hover { border-color: rgba(215,10,132,0.4); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }

.blog-cover {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--bg-3) 0%, var(--bg-2) 55%, rgba(215,10,132,0.25) 130%);
}
.blog-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-cover-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.18);
}
.blog-cover-icon svg { width: 42px; height: 42px; }

.blog-card-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-card-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); }
.blog-card-title { font-size: 1.15rem; font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; margin: 0; }
.blog-card-excerpt { font-size: 0.9rem; font-weight: 300; line-height: 1.6; color: var(--w75); }
.sec-light .blog-card-excerpt { color: rgba(14,12,36,0.6); }
.blog-card-meta { margin-top: auto; padding-top: 0.9rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.76rem; font-weight: 300; color: var(--w50); }
.sec-light .blog-card-meta { color: rgba(14,12,36,0.45); }

.blog-empty { text-align: center; padding: 3rem 0; color: var(--w50); font-size: 0.95rem; display: none; }
.blog-empty.show { display: block; }

/* ── ARTIGO (post individual) ── */
.article-meta-row { display: flex; align-items: center; justify-content: flex-start; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.2rem; font-size: 0.78rem; font-weight: 300; color: var(--w50); }
.article-meta-row .blog-card-cat { font-size: 0.7rem; }
.article-hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; text-align: left; }
.article-hero-inner h1 { text-align: left; max-width: 820px; }
.article-hero-inner > p { text-align: left; margin-left: 0; margin-right: 0; max-width: 740px; }
@media (max-width: 640px) { .article-hero-inner { padding: 0 1.2rem; } }

.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start; max-width: var(--max-w); margin: 0 auto; }
.article-body { max-width: none; margin: 0; text-align: left; }
.article-body p { font-size: 18px; font-weight: 300; line-height: 1.8; color: var(--w75); margin-bottom: 1.5rem; text-align: left; }
.article-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; letter-spacing: -0.02em; text-transform: uppercase; margin: 2.6rem 0 1.2rem; line-height: 1.2; text-align: left; }
.article-body h3 { font-size: 1.25rem; font-weight: 600; margin: 2rem 0 1rem; text-align: left; }
.article-body ul, .article-body ol { margin: 0 0 1.5rem; padding-left: 1.4rem; }
.article-body li { font-size: 18px; font-weight: 300; line-height: 1.8; color: var(--w75); margin-bottom: 0.6rem; text-align: left; }
.article-body a { color: var(--pink); text-decoration: underline; text-decoration-color: rgba(215,10,132,0.4); }
.article-body blockquote {
  margin: 2rem 0; padding: 1.5rem 1.8rem; border-left: 3px solid var(--pink);
  background: rgba(255,255,255,0.03); border-radius: 0 12px 12px 0;
  font-size: 1.1rem; font-weight: 300; font-style: italic; color: var(--w85);
  text-align: left;
}
.article-body img { width: 100%; border-radius: 14px; margin: 2rem 0; display: block; }
.article-share { display: flex; align-items: center; gap: 1rem; justify-content: flex-start; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--w08); }
.article-share span { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--w50); }
.article-share a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.14); color: var(--w75); transition: border-color 0.2s, color 0.2s; }
.article-share a:hover { border-color: rgba(215,10,132,0.4); color: var(--pink); }

/* leia também — sidebar */
.article-aside { position: sticky; top: 110px; }
.article-aside-title { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.4rem; }
.article-aside-list { display: flex; flex-direction: column; gap: 1.4rem; }
.article-aside-item { display: block; text-decoration: none; color: inherit; padding-bottom: 1.4rem; border-bottom: 1px solid var(--w08); }
.article-aside-item:last-child { border-bottom: none; padding-bottom: 0; }
.article-aside-cat { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.5rem; }
.article-aside-item-title { font-size: 0.95rem; font-weight: 600; line-height: 1.4; letter-spacing: -0.01em; transition: color 0.2s; }
.article-aside-item:hover .article-aside-item-title { color: var(--pink); }
.article-aside-date { display: block; margin-top: 0.5rem; font-size: 0.76rem; font-weight: 300; color: var(--w50); }

@media (max-width: 900px) {
  .blog-grid, .blog-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .article-aside { position: static; }
}
@media (max-width: 640px) {
  .blog-grid, .blog-grid.cols-2 { grid-template-columns: 1fr; }
  .blog-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.3rem; margin-left: -1.2rem; margin-right: -1.2rem; padding-left: 1.2rem; padding-right: 1.2rem; }
  .blog-filter-btn { flex-shrink: 0; }
  .article-body p, .article-body li { font-size: 16px; }
}
