/* ============================================================
   DESIGN TOKENS — Dark mode (default)
   Navy + Gold palette, kafex-level spacing
   Breakpoints: sm 640px, md 768px, lg 1024px (matching kafex)
   ============================================================ */
:root {
  --navy:        #000064;
  --navy-light:  #14147a;
  --navy-mid:    #1f1f8a;
  --cream:       #ffffff;
  --gold:        #DBAE64;
  --muted:       #9aa5b1;
  --max-width:   1140px;

  /* Semantic (dark defaults) */
  --bg:          #000064;
  --bg-alt:      #000050;
  --bg-card:     #14147a;
  --bg-card2:    #1f1f8a;
  --text:        #ffffff;
  --text-muted:  rgba(245,240,235,0.7);
  --text-soft:   rgba(245,240,235,0.85);
  --border:      rgba(219,174,100,0.12);
  --border-mid:  rgba(219,174,100,0.2);
  --card-shadow: none;
  --nav-bg:      rgba(0,0,80,0.96);
  --nav-shadow:  0 1px 3px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.3);
}

/* ============================================================
   LIGHT MODE
   ============================================================ */
@media (prefers-color-scheme: light) {
  :root {
    --bg:          #ffffff;
    --bg-alt:      #f2f2f2;
    --bg-card:     #ffffff;
    --bg-card2:    #f7f7f7;
    --text:        #1a1a1a;
    --text-muted:  #555555;
    --text-soft:   #333333;
    --border:      rgba(0,0,0,0.08);
    --border-mid:  rgba(0,0,0,0.1);
    --card-shadow: 0 2px 12px rgba(0,0,0,0.07);
    --nav-bg:      rgba(245,240,235,0.95);
    --nav-shadow:  0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  }
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-h2 {
  font-family: 'Fraunces', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--text);
}
.display-h2 em { color: var(--gold); font-style: normal; }

h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
}
h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
}

/* Shared utility */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   NAVIGATION — kafex floating pill
   Desktop: top: 28px, height: 76px, radius: 22px
   Mobile: top: 16px, height: 56px, radius: 14px (kafex exact)
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 16px 16px 0;
}
.nav__inner {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  box-shadow: var(--nav-shadow);
}
.nav__logo {
  font-family: 'Fraunces', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--gold);
  white-space: nowrap;
}
.nav__links {
  display: none;
  gap: 2px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav__links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.07);
}
.nav__links li:last-child {
  margin-left: 0;
}
.nav__cta {
  display: none;
  border: 1px solid rgba(219,174,100,0.7) !important;
  color: var(--gold) !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  padding: 12px 24px !important;
  font-weight: 400 !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.4s, color 0.4s, border-color 0.4s !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 84px;
  left: auto;
  right: 12px;
  width: min(72vw, 260px);
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 1.25rem;
  gap: 0.25rem;
  z-index: 99;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.nav__mobile a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-soft);
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav__mobile a:hover,
.nav__mobile a:active {
  background: rgba(255,255,255,0.07);
}
.nav__mobile .btn {
  text-align: center;
  margin-top: 8px;
}
.nav__mobile.is-open { display: flex; }

/* md breakpoint — show desktop nav */
@media (min-width: 768px) {
  .nav { padding: 28px 32px 0; }
  .nav__inner {
    padding: 0 24px;
    height: 76px;
    border-radius: 22px;
  }
  .nav__logo { font-size: 28px; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-block; }
  .nav__hamburger { display: none; }
  .nav__mobile { top: 116px; left: 32px; right: 32px; }
}

/* ============================================================
   BUTTONS — kafex exact values
   font: 16px, weight: 600, padding: 14px 28px, radius: 14px
   Mobile: scale down slightly
   ============================================================ */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  transition: color 0.4s, background-color 0.4s;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* Wave hover effect (kafex kfx-btn exact) */
.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  height: auto;
  background: url('../images/wave-bt.svg') top / 100% 20px no-repeat,
              linear-gradient(transparent 20px, var(--navy) 20px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: var(--cream) !important; }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
/* Outline: wave fills with gold instead of navy */
.btn--outline::after {
  background: url('../images/wave-bt-gold.svg') top / 100% 20px no-repeat,
              linear-gradient(transparent 20px, var(--gold) 20px);
}
.btn--outline:hover { color: var(--navy) !important; }

/* Final CTA btn + pillar CTA btn: wave with cream fill */
.final-cta__btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.final-cta__btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: url('../images/wave-bt-gold.svg') top / 100% 20px no-repeat,
              linear-gradient(transparent 20px, var(--gold) 20px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.final-cta__btn:hover::after { transform: translateY(0); }
.final-cta__btn:hover { color: var(--navy) !important; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 14px 28px; font-size: 15px; }

@media (min-width: 768px) {
  .btn { font-size: 16px; padding: 14px 28px; }
  .btn--lg { padding: 15px 30px; font-size: 16px; }
}

/* ============================================================
   HERO — full-bleed rounded, photo mask right side
   Mobile: stacked, smaller type, photo as full bg with blur
   ============================================================ */
.hero {
  margin: 8px 8px 0;
  border-radius: 20px;
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1520 0%, #182840 50%, #000064 100%);
  padding-bottom: 32px;
  z-index: 1;
}
.hero__photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 8%;
  opacity: 0.62;
}
/* scrim só no mobile: escurece o rodapé do hero p/ os botões não ficarem sobre o rosto */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,40,0.92) 0%, rgba(0,0,40,0.5) 38%, transparent 66%);
  z-index: 1;
  pointer-events: none;
}
.hero__photo-right {
  display: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.hero__text { flex: 1; }
.hero__label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.hero__h1 {
  font-family: 'Fraunces', sans-serif;
  font-size: clamp(38px, 10.5vw, 52px);
  line-height: 0.92;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__h1 span { color: var(--gold); }
.hero__sub {
  font-size: 16px;
  color: rgba(245,240,235,0.75);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__ctas .btn { width: 100%; }
.hero__spacer { display: none; }

/* sm: side-by-side buttons */
@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; }
  .hero__ctas .btn { width: auto; }
}

/* md: desktop hero layout */
@media (min-width: 768px) {
  .hero {
    margin: 16px 16px 0;
    border-radius: 28px;
    min-height: 700px;
    padding-bottom: 24px;
  }
  .hero__photo-bg { opacity: 0.18; border-radius: 28px; background-position: center top; }
  .hero::after { display: none; }
  .hero__photo-right {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    border-radius: 0 28px 28px 0;
    background-size: cover;
    background-position: center 20%;
    -webkit-mask: linear-gradient(to right, transparent 0%, black 30%);
    mask: linear-gradient(to right, transparent 0%, black 30%);
  }
  .hero__content {
    padding: 112px 48px 0;
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
  .hero__label { font-size: 11px; letter-spacing: 3px; margin-bottom: 18px; }
  .hero__h1 { font-size: clamp(38px, 4vw, 52px); margin-bottom: 16px; }
  .hero__sub { font-size: 15px; line-height: 1.5; margin-bottom: 22px; max-width: 500px; }
  .hero__spacer { display: block; flex: 0 0 40%; }
}

@media (min-width: 1200px) and (min-height: 820px) {
  .hero {
    min-height: 820px;
  }
  .hero__h1 {
    font-size: clamp(64px, 6.8vw, 96px);
  }
}

/* ============================================================
   RIBBONS — crossing marquee strips, overlapping hero
   ============================================================ */
.ribbon-wrap {
  padding: 0 0 16px;
  margin-top: 0;
  position: relative;
  z-index: 20;
}
.ribbon {
  width: 110%;
  margin-left: -5%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.35);
}
.ribbon--gold {
  background: var(--gold);
  transform: rotate(-2.5deg);
  z-index: 2;
}
.ribbon--dark {
  background: var(--navy-light);
  transform: rotate(2deg);
  margin-top: -6px;
  z-index: 1;
}
.ribbon__track {
  display: flex;
  width: max-content;
  padding: 12px 0;
  animation: ribbonScroll 70s linear infinite;
  will-change: transform;
}
.ribbon__track--reverse {
  animation: ribbonScrollReverse 80s linear infinite;
}
.ribbon__item {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ribbon--gold .ribbon__item { color: var(--navy); }
.ribbon--dark .ribbon__item { color: var(--gold); }
.ribbon__star {
  width: 10px;
  height: 10px;
  opacity: 0.4;
  flex-shrink: 0;
}
.ribbon--gold .ribbon__star { fill: var(--navy); }
.ribbon--dark .ribbon__star { fill: var(--gold); }

@media (min-width: 768px) {
  .ribbon-wrap { padding: 0 0 24px; margin-top: 0; }
  .ribbon__track { padding: 14px 0; }
  .ribbon__item { font-size: 13px; letter-spacing: 1.5px; padding: 0 10px; gap: 16px; }
  .ribbon__star { width: 12px; height: 12px; }
}

@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ribbonScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ============================================================
   LOGOS — social proof horizontal
   ============================================================ */
.logos {
  background: var(--cream);
  padding: 48px 24px;
  text-align: center;
}
.logos__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.logos__label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9aa5b1;
  margin-bottom: 24px;
  display: block;
}
.logos__grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.logo-item:hover { opacity: 1; }
.logo-item img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logos { padding: 72px 48px; }
  .logos__label { font-size: 11px; letter-spacing: 3px; margin-bottom: 32px; }
  .logos__grid { gap: 56px; }
  .logo-item img { height: 34px; }
}

/* ============================================================
   PROBLEM / SOLUTION — 2 col grid with stat cards
   ============================================================ */
.problem {
  background: var(--bg-alt);
  padding: 64px 24px;
}
.problem__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.problem__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 16px;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 20px 16px;
}
.stat__number {
  font-family: 'Fraunces', sans-serif;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat__label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.stat--gold { background: var(--gold); }
.stat--gold .stat__number { color: var(--navy); }
.stat--gold .stat__label { color: rgba(0,0,100,0.7); }

@media (min-width: 768px) {
  .problem { padding: 96px 48px; }
  .problem__inner { grid-template-columns: 1.2fr 1fr; gap: 80px; }
  .problem__body { font-size: 16px; margin-top: 20px; }
  .stats { gap: 20px; }
  .stat { border-radius: 20px; padding: 28px 24px; }
  .stat__number { font-size: 60px; }
  .stat__label { font-size: 11px; letter-spacing: 2px; }
}

/* ============================================================
   3 PILLARS — colored cards (gold, navy-light, navy-mid)
   ============================================================ */
.pillars { padding: 64px 24px; }
.pillars__inner { max-width: 1100px; margin: 0 auto; }
.pillars__eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.pillars__h2 { margin-bottom: 32px; }
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pillar {
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.pillar--gold { background: var(--gold); }
.pillar--dark { background: var(--navy-light); }
.pillar--mid { background: var(--navy-mid); }
.pillar__eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.pillar--gold .pillar__eyebrow { color: rgba(0,0,100,0.6); }
.pillar--dark .pillar__eyebrow,
.pillar--mid .pillar__eyebrow { color: rgba(219,174,100,0.7); }
.pillar__h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.pillar--gold .pillar__h3 { color: var(--navy); }
.pillar--dark .pillar__h3,
.pillar--mid .pillar__h3 { color: #ffffff; }
.pillar__p {
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
}
.pillar--gold .pillar__p { color: rgba(0,0,100,0.75); }
.pillar--dark .pillar__p,
.pillar--mid .pillar__p { color: rgba(245,240,235,0.7); }
.pillar__btn {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s;
}
.pillar__btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.pillar__btn:hover::after { transform: translateY(0); }

/* Gold pillar: navy button → gold wave on hover */
.pillar--gold .pillar__btn {
  background: var(--navy);
  color: var(--cream);
}
.pillar--gold .pillar__btn::after {
  background: url('../images/wave-bt-gold.svg') top / 100% 20px no-repeat,
              linear-gradient(transparent 20px, var(--gold) 20px);
}
.pillar--gold .pillar__btn:hover { color: var(--navy) !important; }

/* Dark/mid pillars: gold button */
.pillar--dark .pillar__btn,
.pillar--mid .pillar__btn {
  background: var(--gold);
  color: var(--navy);
}
.pillar--dark .pillar__btn::after,
.pillar--mid .pillar__btn::after {
  background: url('../images/wave-bt.svg') top / 100% 20px no-repeat,
              linear-gradient(transparent 20px, var(--navy) 20px);
}
.pillar--dark .pillar__btn:hover,
.pillar--mid .pillar__btn:hover { color: var(--cream) !important; }

@media (min-width: 768px) {
  .pillars { padding: 96px 48px; }
  .pillars__eyebrow { font-size: 11px; letter-spacing: 3px; margin-bottom: 12px; }
  .pillars__h2 { margin-bottom: 52px; }
  .pillars__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pillar { border-radius: 28px; padding: 40px 36px; }
  .pillar__h3 { font-size: 22px; margin-bottom: 14px; }
  .pillar__cta { margin-top: 28px; }
}

/* ============================================================
   ARTIGOS — carousel kafex-style
   ============================================================ */
.artigos-section {
  padding: 64px 0;
  background: var(--bg-alt);
}
.artigos__header {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.artigos__h2 {
  font-size: 40px;
  line-height: 0.9;
}
.artigos__nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.artigos__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s, border-color 0.4s;
}
.artigos__nav-btn svg { pointer-events: none; position: relative; z-index: 1; }
.artigos__nav-btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: url('../images/wave-bt-gold.svg') top / 100% 20px no-repeat,
              linear-gradient(transparent 20px, var(--gold) 20px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.artigos__nav-btn:hover::after { transform: translateY(0); }
.artigos__nav-btn:hover { color: var(--navy) !important; border-color: var(--gold); }

.artigos__carousel-wrap { height: 440px; overflow: hidden; }
.artigos__carousel {
  display: flex;
  gap: 16px;
  align-items: center;
  height: 440px;
  overflow-x: auto;
  padding: 0 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.artigos__carousel::-webkit-scrollbar { display: none; }

.artigo-card {
  flex-shrink: 0;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: center;
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
  scroll-snap-align: center;
  width: 240px;
  height: 300px;
  opacity: 0.55;
}
.artigo-card.active {
  width: 280px;
  height: 380px;
  opacity: 1;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.artigo-card:hover { opacity: 0.85; }
.artigo-card.active:hover { opacity: 1; }

.artigo-card__img-wrap {
  flex-shrink: 0;
  overflow: hidden;
  height: 50%;
}
.artigo-card__img-placeholder { width: 100%; height: 100%; }
.artigo-card__body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.artigo-card__cat {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.artigo-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}
.artigo-card.active .artigo-card__title { font-size: 15px; }
.artigo-card__date {
  font-size: 11px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .artigos-section { padding: 96px 0; }
  .artigos__header { margin-bottom: 40px; padding: 0 48px; }
  .artigos__h2 { font-size: 60px; }
  .artigos__carousel-wrap { height: 560px; }
  .artigos__carousel { height: 560px; gap: 20px; padding: 0 48px; }
  .artigo-card { width: 300px; height: 360px; border-radius: 20px; }
  .artigo-card.active { width: 460px; height: 500px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
  .artigo-card__img-wrap { height: 55%; }
  .artigo-card__body { padding: 20px 24px; }
  .artigo-card__cat { font-size: 10px; letter-spacing: 2.5px; margin-bottom: 8px; }
  .artigo-card__title { font-size: 15px; line-height: 1.45; margin-bottom: 10px; }
  .artigo-card.active .artigo-card__title { font-size: 18px; }
  .artigo-card__date { font-size: 12px; }
}

/* ============================================================
   TESTIMONIALS — horizontal ticker, continuous loop
   ============================================================ */
.testimonials {
  padding: 64px 0;
  background: #ffffff;
}
.testimonials__h2 { color: var(--navy) !important; }
.testimonials__header {
  max-width: 1100px;
  margin: 0 auto 32px;
  padding: 0 24px;
}
.testimonials__eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.testimonials__carousel {
  display: flex;
  gap: 16px;
  align-items: stretch;
  overflow-x: auto;
  padding: 8px 24px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials__carousel::-webkit-scrollbar { display: none; }

.testimonial {
  flex-shrink: 0;
  width: 280px;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial__quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial__author {
  border-top: 1px solid var(--border-mid);
  padding-top: 14px;
}
.testimonial__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.testimonial__role {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.testimonial__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.testimonial__linkedin:hover { opacity: 1; }

/* Testimonials: static grid (used on inner pages like mentoria.html) */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.testimonials__grid .testimonial {
  flex-shrink: unset;
  width: auto;
}

@media (min-width: 768px) {
  .testimonials { padding: 96px 0; }
  .testimonials__header { margin-bottom: 48px; padding: 0 48px; }
  .testimonials__eyebrow { font-size: 11px; letter-spacing: 3px; margin-bottom: 12px; }
  .testimonials__carousel { gap: 20px; padding: 8px 48px 16px; }
  .testimonial { width: 340px; border-radius: 24px; padding: 32px; }
  .testimonial__quote { font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
  .testimonial__author { padding-top: 16px; }
  .testimonial__name { font-size: 14px; }
  .testimonial__role { font-size: 12px; }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ============================================================
   CTA FINAL — cream background, Bebas Neue giant, outline text
   ============================================================ */
.final-cta {
  background: var(--cream);
  padding: 80px 24px;
  text-align: center;
}
.final-cta__eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}
.final-cta__h2 {
  font-family: 'Fraunces', sans-serif;
  font-size: clamp(52px, 9vw, 130px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}
.final-cta__h2 em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
}
.final-cta__sub {
  font-size: 16px;
  color: #4a5568;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.final-cta__btn {
  background: var(--navy);
  color: var(--cream);
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  transition: background 0.4s;
}
.final-cta__btn:hover { background: var(--navy-light); }

@media (min-width: 768px) {
  .final-cta { padding: 120px 48px; }
  .final-cta__eyebrow { font-size: 11px; letter-spacing: 3px; margin-bottom: 20px; }
  .final-cta__sub { font-size: 18px; margin-bottom: 48px; }
  .final-cta__btn { padding: 18px 40px; font-size: 16px; }
}

/* ============================================================
   FOOTER — gold background, 3 columns
   ============================================================ */
.footer {
  background: var(--gold);
  padding: 48px 24px 32px;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer__logo {
  font-family: 'Fraunces', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: 14px;
  color: rgba(0,0,0,0.78);
  margin-bottom: 20px;
  line-height: 1.5;
}
.footer__email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(0,0,0,0.8);
  margin-bottom: 14px;
  transition: color 0.2s;
  word-break: break-all;
}
.footer__email:hover { color: #000; }
.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: opacity 0.2s, transform 0.2s;
}
.footer__social-icon svg { width: 28px; height: 28px; }
.footer__social-icon:hover { opacity: 0.6; transform: scale(1.1); }
.footer__col-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-size: 15px;
  color: rgba(0,0,0,0.8);
  font-weight: 500;
  transition: color 0.2s;
}
.footer__nav a:hover { color: #000; }
.footer__bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.18);
  text-align: center;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}

@media (min-width: 768px) {
  .footer { padding: 80px 48px 40px; }
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
  .footer__logo { font-size: 36px; margin-bottom: 10px; }
  .footer__tagline { font-size: 15px; margin-bottom: 28px; }
  .footer__email { font-size: 14px; margin-bottom: 16px; }
  .footer__col-title { margin-bottom: 20px; }
  .footer__bottom { margin-top: 48px; padding-top: 24px; font-size: 13px; }
}

/* ============================================================
   INNER PAGES — shared styles
   ============================================================ */
.section { padding: 48px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

.gold-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section { padding: 80px 48px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 100px 24px 48px;
}
.page-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.page-hero .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

@media (min-width: 768px) {
  .page-hero { padding: 160px 48px 80px; }
  .page-hero__inner { grid-template-columns: 1fr auto; gap: 4rem; }
  .page-hero__inner img { max-width: 100% !important; }
}

/* ============================================================
   MENTORIA PAGE
   ============================================================ */
.mentoria-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.mentoria-hero__text h1 { margin-bottom: 1.25rem; }
.mentoria-hero__text p  { color: var(--text-muted); max-width: 480px; }
.mentoria-hero__photo img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
}

.for-who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.for-who__col--not {
  border-top: 1px solid var(--border-mid);
  padding-top: 2rem;
}

.check-list li, .cross-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.cross-list li::before {
  content: '\00d7';
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 700;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 2rem;
}
.step {
  padding: 1.5rem;
  background: var(--bg-card);
  border-top: 2px solid var(--gold);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}
.step__number {
  display: block;
  font-family: 'Fraunces', sans-serif;
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p   { color: var(--text-muted); font-size: 0.9rem; }

.focus-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  color: var(--text-muted);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.process-step { flex: 1; min-width: 0; }
.process-step__num {
  display: block;
  font-family: 'Fraunces', sans-serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p  { color: var(--text-muted); font-size: 0.85rem; }
.process-arrow { display: none; }

@media (min-width: 768px) {
  .mentoria-hero__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .mentoria-hero__photo img { max-height: 580px; border-radius: 20px; }
  .for-who__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .for-who__col--not { border-top: none; border-left: 1px solid var(--border-mid); padding-top: 0; padding-left: 3rem; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
  .step { padding: 2rem; border-radius: 20px; }
  .step__number { font-size: 48px; margin-bottom: 1rem; }
  .focus-tags { gap: 0.75rem; }
  .tag { font-size: 0.75rem; padding: 0.5rem 1rem; }
  .process-steps { flex-direction: row; gap: 1rem; }
  .process-step__num { font-size: 40px; margin-bottom: 0.75rem; }
  .process-arrow { display: block; color: var(--gold); font-size: 1.5rem; padding-top: 0.5rem; align-self: center; }
}

/* ============================================================
   BOOKS & PODCAST
   ============================================================ */
.books__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.book-card { display: flex; flex-direction: column; }
.book-card__cover {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--bg-card);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
}
.book-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.book-card__cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border-mid);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}
.book-card h3 { margin-bottom: 0.5rem; }

.podcast-placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--border-mid);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
}

@media (min-width: 640px) {
  .books__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .books__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .book-card__cover { margin-bottom: 1.25rem; }
  .podcast-placeholder { padding: 3rem 2rem; }
}

/* ============================================================
   ARTICLE BODY
   ============================================================ */
.article-body {
  max-width: 720px;
}
.article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}
.article-body h2, .article-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.article-body h2 { font-size: 1.4rem; }
.article-body h3 { font-size: 1.15rem; }
.article-body img {
  width: 100%;
  border-radius: 12px;
  margin: 1.5rem 0;
}
.article-body figure {
  margin: 1.5rem 0;
}
.article-body figcaption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-body li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text);
}
.article-body strong { color: var(--text); }
.article-body a { color: var(--gold); text-decoration: underline; }
.sec--white .article-body p,
.sec--white .article-body li { color: #333; }
.sec--white .article-body h2,
.sec--white .article-body h3,
.sec--white .article-body strong,
.sec--white .article-body blockquote { color: #1a1a1a; }
.sec--white .artigo-tldr p,
.sec--white .artigo-tldr li,
.sec--white .artigo-tldr strong { color: #1a1a1a; }
.sec--white .artigo-tldr > p:first-child { color: #000064; }
/* Caixa "Neste artigo" (TL;DR / GEO summary) */
.artigo-tldr {
  background: rgba(0,0,100,0.04);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.artigo-tldr > p:first-child {
  font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px;
  margin: 0 0 .75rem;
}
.artigo-tldr ul { margin: 0; }
.artigo-tldr li { font-size: 15px; }
/* Hero de artigo: foto não some atrás de texto longo */
.phero--artigo .phero__photo { opacity: 0.55; }
.phero--artigo .phero__h1 { font-size: clamp(28px, 4vw, 44px); }
.phero.phero--artigo { padding-top: 230px; padding-bottom: 130px; }
@media (max-width: 760px) { .phero.phero--artigo { padding-top: 210px; padding-bottom: 120px; } }

/* Articles listing grid */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.article-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.article-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.article-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card__cat {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.article-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}
.article-card__excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}
.article-card__date {
  font-size: 11px;
  color: var(--muted);
}

@media (min-width: 640px) {
  .articles-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .article-body p, .article-body li { font-size: 17px; }
  .article-body h2 { font-size: 1.55rem; }
  .article-body img { border-radius: 16px; margin: 2rem 0; }
  .articles-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .article-card { border-radius: 20px; }
  .article-card__img { height: 220px; }
  .article-card__body { padding: 24px; }
  .article-card__title { font-size: 17px; }
}

/* ============================================================
   SOBRE PAGE
   ============================================================ */
.sobre-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}
.sobre-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.sobre-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 24px;
  background: linear-gradient(to top, rgba(0,0,100,0.97) 0%, rgba(0,0,100,0.5) 60%, transparent 100%);
}
.sobre-hero__overlay h1 { max-width: 640px; margin-bottom: 1rem; }
.sobre-hero__overlay p  { color: var(--text-muted); max-width: 540px; }

.credentials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.credential .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.credential p { font-size: 0.9rem; color: var(--text); }

.timeline__list { display: flex; flex-direction: column; }
.timeline__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.timeline__year {
  font-family: 'Fraunces', sans-serif;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
}
.timeline__content h3 { margin-bottom: 0.5rem; }

.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.philosophy__photo {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
}
.philosophy__quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .credentials__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .sobre-hero { min-height: 80vh; }
  .sobre-hero__img { object-position: center calc(0% - 200px); }
  .sobre-hero__overlay { padding: 4rem 48px; }
  .credentials__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-top: 2.5rem; }
  .timeline__item { grid-template-columns: 80px 1fr; gap: 2rem; padding: 2rem 0; }
  .timeline__year { font-size: 20px; padding-top: 0.3rem; }
  .philosophy__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .philosophy__photo { max-height: 500px; border-radius: 20px; }
  .philosophy__quote { font-size: 1.2rem; padding-left: 1.5rem; margin-top: 1.5rem; }
}

/* ============================================================
   PALESTRAS PAGE — talk cards
   ============================================================ */
.talk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.talk-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.talk-card__photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.talk-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.talk-card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .talk-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .talk-card { border-radius: 24px; }
  .talk-card__photo { height: 260px; }
  .talk-card__body { padding: 36px 32px; }
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--bg-alt);
  padding: 64px 24px;
}
.newsletter__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter__form-wrap {
  max-width: 480px;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter__input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter__input:focus {
  border-color: var(--gold);
}
.newsletter__input::placeholder {
  color: var(--text-muted);
}
.newsletter__note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

@media (min-width: 640px) {
  .newsletter__form { flex-direction: row; }
  .newsletter__form .btn { flex-shrink: 0; }
}
@media (min-width: 768px) {
  .newsletter-section { padding: 96px 48px; }
  .newsletter__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* ============================================================
   NA MÍDIA / CREDENCIAIS SECTION
   ============================================================ */
.media-section {
  padding: 64px 24px;
}
.media-logos {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.25s;
  padding: 12px 20px;
  border: 1px solid var(--border-mid);
  border-radius: 12px;
}
.media-logo:hover { opacity: 1; }

@media (min-width: 768px) {
  .media-section { padding: 96px 48px; }
  .media-logos { gap: 40px; }
  .media-logo { padding: 16px 32px; }
}

/* ============================================================
   ARTICLE FILTERS
   ============================================================ */
.article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-mid);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.article-card.hidden {
  display: none;
}

@media (min-width: 768px) {
  .article-filters { margin-bottom: 40px; }
  .filter-btn { font-size: 14px; padding: 10px 22px; }
}

/* ============================================================
   PILLARS — 4-column on desktop
   ============================================================ */
@media (min-width: 640px) {
  .pillars__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pillars__grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-item__q {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  padding: 20px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item__q::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] .faq-item__q::after {
  transform: rotate(45deg);
}
.faq-item__q::-webkit-details-marker {
  display: none;
}
.faq-item__a {
  padding: 0 0 20px;
}
.faq-item__a p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .faq-item__q { font-size: 17px; padding: 24px 0; }
  .faq-item__a p { font-size: 16px; }
}

/* ============================================================
   ARTICLE ENHANCEMENTS — AI Citability (2026-06-04)
   ============================================================ */

/* C1 — Article Summary */
.article-summary {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0 32px;
}
.article-summary__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.article-summary ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}
.article-summary li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.article-summary li:last-child { margin-bottom: 0; }

/* C5 — Author Bio */
.author-bio {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.author-bio__img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-bio__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.author-bio__role {
  display: block;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}
.author-bio__text p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0;
}
.author-bio__text a {
  color: var(--gold);
  text-decoration: underline;
}
@media (min-width: 641px) {
  .author-bio { flex-direction: row; padding: 32px; }
  .author-bio__img { width: 72px; height: 72px; }
}

/* C4 — Article FAQ wrapper */
.article-faq {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 12px;
}
.article-faq__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.article-faq__subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .article-faq { padding: 40px; }
}

/* ── Lead Popup ── */
#lp-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.65);z-index:9999;align-items:center;justify-content:center;padding:16px}
#lp-modal{background:#1a1a1a;border:1px solid #333;border-radius:12px;padding:40px 36px;max-width:440px;width:100%;position:relative;color:#e8e8e8}
#lp-close{position:absolute;top:14px;right:18px;background:none;border:none;color:#888;font-size:22px;cursor:pointer;line-height:1}
#lp-pre{font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold,#DBAE64);margin-bottom:8px}
#lp-title{font-size:1.5rem;font-weight:700;margin-bottom:8px;line-height:1.2}
#lp-sub{font-size:.875rem;color:#aaa;margin-bottom:24px}
#lp-form label{display:block;font-size:.8rem;color:#aaa;margin-bottom:4px;margin-top:14px}
#lp-form input{width:100%;padding:10px 14px;background:#111;border:1px solid #333;border-radius:6px;color:#e8e8e8;font-size:.95rem;box-sizing:border-box}
#lp-form input:focus{outline:none;border-color:var(--gold,#DBAE64)}
#lp-form button[type=submit]{margin-top:22px;width:100%;padding:13px;background:var(--gold,#DBAE64);color:#111;font-weight:700;font-size:1rem;border:none;border-radius:6px;cursor:pointer}
#lp-form button[type=submit]:hover{opacity:.9}
#lp-skip{text-align:center;margin-top:12px;font-size:.8rem}
#lp-skip a{color:#666;text-decoration:underline}


/* === DeRose Morumbi brand === */
h1, h2, .display-h2, .hero__h1, .final-cta__h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 200;

  letter-spacing: 0;
  text-transform: none;
}
body { font-family: 'Open Sans', sans-serif; }
.nav__logo img, .footer__logo img { height: 45px; width: auto; display: block; }
.footer__logo img { height: 51px; }
.footer__addr { font-size: 13px; color: rgba(0,0,0,0.7); line-height: 1.6; margin-top: 4px; }


/* === Sobre o método === */
.about { background: #ffffff; color: #1c1c1c; padding: 80px 24px; }
.about__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.about__sub { color: var(--gold); font-weight: 600; font-size: 15px; letter-spacing: 0.04em; display: block; margin: 8px 0 20px; }
.about__text p { color: #333; font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.about__map img { width: 100%; height: auto; display: block; }
.about__figure { margin: 0; max-width: 70%; margin-inline: auto; }
.about__figure img { width: 100%; height: auto; display: block; border-radius: 16px; }
.about__figure figcaption {
  margin-top: 12px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 860px) { .about__inner { grid-template-columns: 1fr; gap: 32px; } .about__figure { max-width: 78%; } }


/* === nav caps (estilo hero__label) === */
.nav__links a {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}
.nav__mobile a:not(.btn) {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}


/* === ajustes v3 === */
/* título da seção about preto no fundo branco */
.about h2 { color: #1c1c1c; }
/* números das stats em Open Sans */
.stat__number { font-family: 'Open Sans', sans-serif; font-weight: 700; font-style: normal; }
/* títulos das caixas de aula em caps estilo menu/label */
.pillar__h3 {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
}


/* === como é a aula === */
.aula-passos { background: var(--bg); color: var(--text); padding: 80px 24px; }
.aula-passos__inner { max-width: 1100px; margin: 0 auto; }
.passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 40px 0 36px; }
.passo { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; }
.passo__num { font-family: 'Fraunces', serif; font-style: italic; font-weight: 100; font-size: 44px; color: var(--gold); display: block; line-height: 1; margin-bottom: 14px; }
.passo__h3 { font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }
.passo p { font-size: 16px; line-height: 1.7; color: var(--text-muted); }
.aula-passos__cta { margin-top: 8px; }
@media (max-width: 860px) { .passos { grid-template-columns: 1fr; } }

/* === instrutores === */
.instrutores { background: #ffffff; color: #1c1c1c; padding: 80px 24px; }
.instrutores h2 { color: #1c1c1c; }
.instrutores__inner { max-width: 1100px; margin: 0 auto; }
.instrutores__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.instrutor { display: block; text-decoration: none; color: #1c1c1c; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: transform 0.2s, box-shadow 0.2s; }
.instrutor:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.instrutor img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.instrutor h3 { font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; margin: 18px 20px 6px; }
.instrutor p { font-size: 13.5px; color: #555; line-height: 1.6; margin: 0 20px 20px; }
@media (max-width: 860px) { .instrutores__grid { grid-template-columns: 1fr; } }

/* === localização === */
.local { background: var(--bg-alt); color: var(--text); padding: 80px 24px; }
.local__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.local__addr { font-size: 17px; line-height: 1.7; margin: 20px 0 8px; }
.local__hours { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 24px; }
.local__map img { width: 100%; height: auto; display: block; opacity: 0.9; }
@media (max-width: 860px) { .local__inner { grid-template-columns: 1fr; gap: 32px; } }


/* === vídeo facade (como é a aula) === */
.video-facade { position: relative; max-width: 760px; margin: 8px auto 36px; border-radius: 14px; overflow: hidden; cursor: pointer; border: 1px solid var(--border); aspect-ratio: 16/9; background: #000; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; transition: opacity 0.25s, transform 0.4s; }
.video-facade:hover img { opacity: 1; transform: scale(1.02); }
.video-facade__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 68px; height: 68px; border-radius: 50%; background: var(--gold); color: #000064; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(0,0,0,0.45); transition: transform 0.2s; }
.video-facade:hover .video-facade__play { transform: translate(-50%, -50%) scale(1.08); }
.video-facade__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; color: #fff; background: linear-gradient(transparent, rgba(0,0,40,0.85)); }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.aula-passos__cta { text-align: center; }
.local__map--embed { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.local__map--embed iframe { width: 100%; height: 380px; display: block; border: 0; }

/* === páginas internas === */
.page-hero__inner { max-width: 1100px; margin: 0 auto; }
.page-hero__h1 em { font-style: italic; color: var(--gold); }

/* planos */
.planos-grid { display: grid; grid-template-columns: repeat(2, minmax(260px, 380px)); gap: 24px; margin-top: 36px; }
.plano { background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 16px; padding: 32px 30px; color: #1c1c1c; }
.plano--destaque { border: 2px solid var(--gold); box-shadow: 0 10px 36px rgba(219,174,100,0.25); }
.plano h3 { font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 15px; }
.plano__preco { margin: 10px 0 18px; font-size: 15px; color: #777; }
.plano__preco strong { font-size: 34px; color: #000064; margin-left: 6px; }
.plano__preco span { color: #777; font-size: 14px; }
.plano ul { list-style: none; padding: 0; margin: 0 0 24px; }
.plano ul li { padding: 8px 0 8px 26px; position: relative; font-size: 16px; color: #444; border-bottom: 1px solid rgba(0,0,0,0.05); }
.plano ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.btn--outline-dark { border: 1px solid rgba(0,0,100,0.4); color: #000064; }
.btn--outline-dark:hover { background: #000064; color: #fff; }
@media (max-width: 720px) { .planos-grid { grid-template-columns: 1fr; } }

/* grid de artigos (página índice) */
.artigos-grid-page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.artigos-grid-page .artigo-card { width: auto; min-width: 0; }
@media (max-width: 900px) { .artigos-grid-page { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .artigos-grid-page { grid-template-columns: 1fr; } }

/* === grade de horários === */
.grade-wrap { overflow-x: auto; margin-top: 32px; border-radius: 14px; border: 1px solid rgba(0,0,0,0.1); }
.grade { width: 100%; border-collapse: collapse; background: #fff; color: #1c1c1c; font-size: 13.5px; min-width: 760px; }
.grade thead th { background: #000064; color: #fff; padding: 12px 10px; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; }
.grade tbody th { background: #f2f2f2; padding: 10px; font-size: 12.5px; color: #000064; white-space: nowrap; }
.grade td { border: 1px solid rgba(0,0,0,0.07); padding: 10px 8px; text-align: center; vertical-align: middle; line-height: 1.4; }
.grade td span { display: block; color: #888; font-size: 12px; margin-top: 3px; }
.grade td.online { background: rgba(219,174,100,0.18); }
.grade__workshops { background: #f7f7f7; font-weight: 600; color: #000064; }
.grade-dot { display: inline-block; width: 12px; height: 12px; background: rgba(219,174,100,0.5); border-radius: 3px; margin-right: 6px; vertical-align: -1px; }


/* === alternância azul/branco nas páginas internas === */
.sec--blue { background: var(--bg) !important; color: #ffffff; }
.sec--blue h2, .sec--blue .display-h2 { color: #ffffff !important; }
.sec--blue p { color: var(--text-muted); }
.sec--blue .about__text p { color: var(--text-muted); }
.sec--white { background: #ffffff !important; color: #1c1c1c; }
.sec--white h2, .sec--white .display-h2 { color: #1c1c1c !important; }
.sec--white p { color: #444; }
.sec--white .pillars__eyebrow, .sec--blue .pillars__eyebrow { color: var(--gold); }
.sec--white .passo { background: #f7f7f7; border-color: rgba(0,0,0,0.08); }
.sec--white .passo p { color: #555; }
.sec--white .passo__h3 { color: #1c1c1c; }

/* galeria de fotos */
.galeria { padding: 64px 24px; }
.galeria__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.galeria__grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; aspect-ratio: 4/3; display: block; }
@media (max-width: 720px) { .galeria__grid { grid-template-columns: 1fr; } }


/* === respiro pós-títulos === */
h1, h2, h3, .display-h2, .hero__h1, .page-hero__h1, .final-cta__h2 { margin-bottom: 0.85em; }
.pillars__h2, .artigos__h2, .testimonials__h2 { margin-bottom: 0.85em; }

/* listas da proposta (método) */
.proposta { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px; }
.proposta ul { list-style: none; padding: 0; margin: 16px 0 0; }
.proposta li { padding: 9px 0 9px 28px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 16px; }
.proposta li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); }
.sec--white .proposta li { border-color: rgba(0,0,0,0.07); }
.proposta h3 { font-family: 'Open Sans', sans-serif; font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; }
.quote-big { max-width: 820px; margin: 0 auto; font-family: 'Fraunces', serif; font-style: italic; font-weight: 100; font-size: clamp(22px, 3vw, 32px); line-height: 1.4; text-align: center; }
.quote-big cite { display: block; font-family: 'Open Sans', sans-serif; font-style: normal; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 20px; }
@media (max-width: 720px) { .proposta { grid-template-columns: 1fr; } }


/* === page hero v2 (padrão da home) === */
.phero { position: relative; background: linear-gradient(135deg, #0a1520 0%, #182840 50%, #000064 100%); padding: 170px 24px 84px; overflow: hidden; margin: 8px 8px 0; border-radius: 20px; }
.phero__photo { position: absolute; top: 0; right: 0; bottom: 0; width: 58%; background-size: cover; background-position: center; -webkit-mask-image: linear-gradient(to right, transparent, #000 45%); mask-image: linear-gradient(to right, transparent, #000 45%); opacity: 0.8; }
.phero__inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.phero__content { max-width: 580px; text-align: left; }
.phero__content .hero__label { margin-bottom: 18px; }
.phero__h1 { font-family: 'Fraunces', serif; font-style: italic; font-weight: 200; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; color: #ffffff; margin-bottom: 0.35em; text-align: left; }
.phero__h1 em { font-style: italic; color: var(--gold); }
.phero__sub { color: var(--text-muted); font-size: 16px; max-width: 520px; line-height: 1.7; margin: 0; text-align: left; }
@media (max-width: 860px) {
  .phero { padding: 140px 24px 64px; }
  .phero__photo { width: 100%; opacity: 0.25; -webkit-mask-image: none; mask-image: none; }
}


/* === citação branca pós-hero === */
.quote-sec { background: #ffffff; padding: 76px 24px; }
.quote-sec .quote-big { color: #000064; }
.quote-sec .quote-big cite { color: var(--gold); }


/* === foto nos cards de praticar === */
.pillar__img { width: calc(100% + 48px); margin: -28px -24px 20px; border-radius: 20px 20px 0 0; aspect-ratio: 16/10; object-fit: cover; display: block; }

.passo__img { width: calc(100% + 52px); margin: -28px -26px 18px; border-radius: 14px 14px 0 0; aspect-ratio: 16/10; object-fit: cover; display: block; }

.passo__img, .pillar__img { max-width: none; }

@media (min-width: 768px) {
  .pillar__img { width: calc(100% + 72px); margin: -40px -36px 22px; border-radius: 28px 28px 0 0; }
}

@media (min-width: 768px) {
  .phero { margin: 16px 16px 0; }
}


/* === FAQ: fundo branco, cards azuis === */
.faq-sec { background: #ffffff !important; }
.faq-sec h2 { color: var(--navy) !important; }
.faq-item {
  background: var(--navy);
  border: none;
  border-radius: 14px;
  padding: 0 24px;
  margin-bottom: 14px;
}
.faq-item__q { color: #ffffff; }
.faq-item__a p { color: rgba(245,240,235,0.8); }


/* === instrutores: texto legível nos cards brancos === */
.sec--blue .instrutor p { color: #555; }
.instrutor__ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 20px 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy);
}
.instrutor__ig svg { color: var(--gold); }
.instrutor__ig:hover { text-decoration: underline; }


/* === DeRose Method na mídia === */
.midia { background: var(--bg); color: var(--text); padding: 80px 24px; }
.midia__inner { max-width: 1100px; margin: 0 auto; }
.midia__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.midia-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.midia-card:hover { transform: translateY(-4px); }
.midia-card__source { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--gold); }
.midia-card__logo { width: auto; max-width: 70%; align-self: flex-start; filter: brightness(0) invert(1); opacity: 0.92; margin-bottom: 6px; }
.midia-card__title { font-size: 15px; line-height: 1.5; color: #fff; flex: 1; }
.midia-card__cta { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
@media (max-width: 900px) { .midia__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .midia__grid { grid-template-columns: 1fr; } }


/* === pilares em 2 linhas de 3 colunas === */
.pillars__grid--3 { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 640px) { .pillars__grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .pillars__grid--3 { grid-template-columns: repeat(3, 1fr); } }


/* === placeholder de imagem (página mindfulness-design) === */
.img-ph {
  background: repeating-linear-gradient(45deg, #f0f0f0, #f0f0f0 14px, #e6e6e6 14px, #e6e6e6 28px);
  border: 1px dashed #b6b6b6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 220px;
  text-align: center;
  padding: 20px;
}
.sec--blue .img-ph {
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 14px, rgba(255,255,255,0.1) 14px, rgba(255,255,255,0.1) 28px);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
}

/* === módulos do programa (mindfulness-design) === */
.modulo__meta { display: inline-block; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 999px; padding: 4px 14px; margin-left: 12px; vertical-align: middle; }
.workshops-tab { width: 100%; border-collapse: collapse; margin-top: 8px; }
.workshops-tab th { text-align: left; font-size: 14px; padding: 14px 16px 14px 0; vertical-align: top; width: 32%; color: #fff; font-weight: 700; }
.workshops-tab td { font-size: 13.5px; line-height: 1.6; padding: 14px 0; color: rgba(245,240,235,0.8); vertical-align: top; }
.workshops-tab tr { border-bottom: 1px solid rgba(255,255,255,0.1); }
.workshops-tab tr:last-child { border-bottom: none; }


/* === linha do tempo (método) === */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 64px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 2%;
  right: 2%;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}
.timeline__item {
  position: relative;
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.timeline__item::before {
  content: '';
  position: absolute;
  top: -35px;
  left: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline__year {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 200;
  font-size: 36px;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.timeline__item p { font-size: 14px; color: #555; line-height: 1.65; }
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; margin-top: 32px; }
  .timeline::before, .timeline__item::before { display: none; }
}


/* === vídeo de fundo na hero (mindfulness-design) === */
.phero__photo--video { overflow: hidden; }
.phero__photo--video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 140%;
  aspect-ratio: 16 / 9;
  border: 0;
  pointer-events: none;
}

/* === landing pages de ebook === */
.ebook-hero { padding: 150px 24px 300px; text-align: center; }
.ebook-hero__head { max-width: 880px; margin: 0 auto; }
.ebook-hero__head .phero__sub { margin: 18px auto 0; max-width: 660px; text-align: center; }
.ebook-hero__head .phero__h1 { text-align: center; }
.ebook-pill {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.ebook-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  list-style: none;
  padding: 0;
}
.ebook-checks li {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 200;
  font-size: 19px;
  color: #fff;
  line-height: 1.4;
}
.ebook-checks li::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-size: 15px;
}
.ebook-body { padding: 0 24px 96px; }
.ebook-overlap {
  max-width: var(--max-width);
  margin: -240px auto 0;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.ebook-overlap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.lead-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.lead-card h2 { font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.lead-card > p { font-size: 14px; color: #555; margin-bottom: 20px; }
.lead-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin: 14px 0 6px;
}
.lead-form input {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #222;
  background: #f7f7fa;
  border: 1px solid #d8d8e0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s;
}
.lead-form input:focus { border-color: var(--gold); }
.lead-form button { width: 100%; margin-top: 22px; font-size: 15px; }
@media (max-width: 860px) {
  .ebook-hero { padding: 120px 20px 220px; }
  .ebook-checks { grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
  .ebook-body { padding: 0 20px 64px; }
  .ebook-overlap { grid-template-columns: 1fr; gap: 28px; margin-top: -180px; }
}


/* === abrangência compacta (método) === */
.abrangencia {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  margin-top: 36px;
}
.abrangencia img { width: 100%; max-width: 420px; display: block; align-self: center; }
.stats--mini { gap: 10px; }
.stats--mini .stat { padding: 12px 16px; border-radius: 12px; }
.stats--mini .stat__number { font-size: 28px; }
.stats--mini .stat__label { font-size: 9.5px; }
@media (max-width: 860px) {
  .abrangencia { grid-template-columns: 1fr; gap: 32px; }
  .abrangencia img { margin: 0 auto; max-width: 320px; }
}


/* === highlight dourado (marca-texto) === */
.hl-gold {
  background: linear-gradient(transparent 52%, rgba(219,174,100,0.55) 52%, rgba(219,174,100,0.55) 96%, transparent 96%);
  padding: 0 2px;
}

/* === cards de ebooks (escola) === */
.ebook-cards {
  max-width: var(--max-width);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ebook-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--navy);
  border-radius: 20px;
  padding: 28px;
  text-decoration: none;
  transition: transform 0.3s;
}
.ebook-card:hover { transform: translateY(-4px); }
.ebook-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.ebook-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 200;
  color: #fff;
  margin-bottom: 8px;
}
.ebook-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.ebook-card span { color: var(--gold); font-size: 14px; font-weight: 600; }
@media (max-width: 860px) {
  .ebook-cards { grid-template-columns: 1fr; }
  .ebook-card { padding: 20px; gap: 16px; }
  .ebook-card img { width: 100px; height: 100px; }
}


/* === FAQ ilustrada (página /faq) === */
.faq-full { background: var(--bg); color: var(--text); padding: 80px 24px; }
.faq-full__inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 64px; }
.faq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.faq-row:nth-child(even) .faq-row__text { order: 2; }
.faq-row__q {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
}
.faq-row__a { color: var(--text-muted); font-size: 15.5px; line-height: 1.75; }
.faq-row__media img { width: 100%; border-radius: 20px; aspect-ratio: 4/3; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .faq-full__inner { gap: 48px; }
  .faq-row { grid-template-columns: 1fr; gap: 20px; }
  .faq-row:nth-child(even) .faq-row__text { order: 0; }
}

/* === carrossel da hero (home) === */
.hero--carousel { display: block; padding-bottom: 0 !important; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s;
  z-index: 1;
}
.hero-slide--active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide:first-child { position: relative; opacity: 1; visibility: visible; min-height: inherit; }
.hero-slide:first-child:not(.hero-slide--active) {
  opacity: 0;
  visibility: hidden;
}
.hero-slide__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero-slide__video { transform: translateX(14%) scale(1.3); }
}
.hero-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,10,30,0.92) 0%, rgba(4,10,30,0.55) 55%, rgba(4,10,30,0.28) 100%);
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(4,10,30,0.35);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.hero-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-nav--prev { left: 20px; }
.hero-nav--next { right: 20px; }
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot--active { background: var(--gold); transform: scale(1.25); }
@media (max-width: 767px) {
  .hero-nav { display: none; }
}

/* ===== Carrossel de CTA no fim dos artigos ===== */
.cta-carousel-sec { padding: 72px 24px; max-width: 820px; margin: 0 auto; }
.cta-carousel { position: relative; min-height: 360px; }
.cta-slide {
  position: absolute; inset: 0; border-radius: 18px; overflow: hidden;
  background-size: cover; background-position: center; text-decoration: none;
  display: flex; align-items: flex-end;
  opacity: 0; visibility: hidden; transition: opacity .8s ease;
}
.cta-slide--active { opacity: 1; visibility: visible; }
.cta-slide__body { padding: 36px 32px; }
.cta-slide__title {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 200;
  color: #fff; font-size: clamp(24px, 4vw, 32px); line-height: 1.15; margin: 0 0 10px;
}
.cta-slide__sub { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.5; margin: 0 0 18px; }
.cta-slide__btn {
  display: inline-block; color: var(--gold); font-weight: 600; font-size: 15px;
  letter-spacing: .3px;
}
@media (max-width: 760px) {
  .cta-carousel { min-height: 380px; }
}

/* ===== Resumo do artigo (seção azul) ===== */
.artigo-resumo .pillars__eyebrow { display: block; margin-bottom: 18px; }
.artigo-resumo ul { list-style: none; padding: 0; margin: 0; }
.artigo-resumo li {
  position: relative; padding: 12px 0 12px 30px; color: rgba(245,240,235,0.88);
  font-size: 16px; line-height: 1.6; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.artigo-resumo li:last-child { border-bottom: none; }
.artigo-resumo li::before { content: '✦'; position: absolute; left: 0; top: 12px; color: var(--gold); }
.artigo-resumo li strong { color: #fff; }
.artigo-resumo__lead {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 200;
  color: #fff; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.4; margin: 0;
}
