/* CRITICAL — Enfold grid.min.css força html { min-width: 910px }.
   Como a landing não usa a classe .responsive do Enfold, 
   o layout renderiza em 910px e é cortado no mobile.
   Esta regra sobrescreve isso. */
html {
  min-width: 0 !important;
}

/* edu.m Landing — CSS v1.1.0 */

:root {
  --yellow: #FFE600;
  --yellow-deep: #F2D700;
  --yellow-soft: #FFF6A8;
  --pink: #FF1F8F;
  --pink-deep: #E0167A;
  --pink-soft: #FFD2E7;
  --navy: #1A3A8F;
  --navy-deep: #0F2766;
  --navy-soft: #2F4FA8;
  --ink: #0A0A0A;
  --ink-soft: #2A2A2A;
  --gray: #6B6B6B;
  --gray-soft: #B5B5B5;
  --line: #E8E5DC;
  --paper: #FAF8F2;
  --white: #FFFFFF;
  --display: 'Poppins', sans-serif;
  --body: 'Poppins', sans-serif;
  --serif: 'Instrument Serif', serif;
  --hand: 'Caveat', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--yellow); color: var(--ink); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-tight { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.92); /* branco */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.055em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .2s;
  transform-origin: left;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { background: var(--pink); transform: translateY(-1px); }
.nav-mobile { display: none; }

@media (max-width: 880px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-mobile {
    display: flex;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: var(--ink);
    color: var(--white);
  }
  .nav-cta { display: none; }
}

.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 68px; left: 16px; right: 16px;
  background: var(--white);
  border-radius: 20px;
  padding: 24px 24px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  z-index: 99;
}
.nav-mobile-panel.open { display: block; }
.nav-mobile-panel a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav-mobile-panel a:last-of-type { border-bottom: 0; }
.nav-mobile-panel .nav-mobile-cta {
  display: block;
  margin-top: 18px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-bottom: 0;
}

/* ─── HERO ─── */
.hero {
  background: var(--yellow);
  padding: 130px 32px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -180px; right: -180px;
  width: 520px; height: 520px;
  background: var(--yellow-deep);
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(40px);
  z-index: 0;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy-deep);
  margin-bottom: 28px;
  background: rgba(26, 58, 143, 0.08);
  padding: 8px 14px 8px 12px;
  border-radius: 100px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero-head h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-head h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pink-deep);
  letter-spacing: -0.02em;
  font-size: 0.95em;
  display: inline-block;
}
.hero-handwrite {
  font-family: var(--hand);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
  transform: rotate(-4deg);
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform .2s, background .2s, color .2s;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--pink); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--yellow); transform: translateY(-2px); }
.btn-arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-arrow svg { width: 12px; height: 12px; }
.btn-primary .btn-arrow { color: var(--yellow); }
.btn-primary .btn-arrow svg { color: var(--ink); }
.btn-secondary .btn-arrow { color: var(--ink); }
.btn-secondary .btn-arrow svg { color: var(--yellow); }
.btn-secondary:hover .btn-arrow { color: var(--yellow); }
.btn-secondary:hover .btn-arrow svg { color: var(--ink); }

.hero-side {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(80px, 11vw, 150px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--ink);
  text-align: right;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1.5px solid rgba(10,10,10,0.15);
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* FIX: span é inline — sem display:inline-block width/height são ignorados */
.hero-meta-pulse {
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
}
.hero-meta-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  animation: edumpulse 1.8s ease-out infinite;
  opacity: 0.5;
}
/* renomeado para evitar conflito com keyframe do Enfold */
@keyframes edumpulse {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 880px) {
  .hero { padding: 110px 20px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-side { min-height: 140px; align-items: flex-start; }
  .hero-wordmark { text-align: left; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: space-between; }
}
@media (max-width: 480px) {
  .hero { padding: 90px 16px 48px; }
  .hero-wordmark { font-size: clamp(64px, 22vw, 100px); }
}

/* ─── BANNER MOVIMENTO ─── */
.banner-mv {
  background: var(--yellow);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}
.banner-mv-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 360px;
  position: relative;
}
.bm-vertical {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: var(--white);
  text-transform: lowercase;
}
.bm-vertical span { display: block; }
.bm-right {
  position: relative;
  padding: 20px 0;
}
.bm-headline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
.bm-box {
  display: inline-block;
  border: 2px solid var(--navy);
  padding: 8px 18px 10px;
  position: relative;
  background: transparent;
  margin-bottom: 24px;
}
.bm-box::before, .bm-box::after,
.bm-box .corner-bl, .bm-box .corner-br {
  content: '';
  position: absolute;
  width: 9px; height: 9px;
  background: var(--navy);
  border-radius: 50%;
}
.bm-box::before { top: -5px; left: -5px; }
.bm-box::after  { top: -5px; right: -5px; }
.bm-box .corner-bl { bottom: -5px; left: -5px; }
.bm-box .corner-br { bottom: -5px; right: -5px; }
.bm-box-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  color: var(--pink);
  line-height: 1;
}
.bm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  align-items: center;
  margin-top: 4px;
}
.bm-tag {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}
.bm-tag.pink { background: var(--pink); }
.bm-tag.navy { background: var(--navy); }
.bm-tag.pink::before {
  content: '';
  position: absolute;
  top: -10px; left: 16px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid var(--pink);
}
.bm-tag.navy::before {
  content: '';
  position: absolute;
  top: -10px; left: 16px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid var(--navy);
}
.bm-arrow {
  position: absolute;
  right: 0; bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  overflow: hidden;
  transition: background .25s, color .25s;
}
.bm-arrow:hover { background: var(--ink); color: var(--yellow); }
.bm-arrow svg {
  width: 16px; height: 16px;
  animation: bm-arrow-slide 1.6s ease-in-out infinite;
}
@keyframes bm-arrow-slide {
  0%   { transform: translateX(0); opacity: 1; }
  45%  { transform: translateX(8px); opacity: 0; }
  46%  { transform: translateX(-8px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@media (max-width: 880px) {
  .banner-mv { padding: 40px 24px; }
  .banner-mv-inner { grid-template-columns: 1fr; gap: 20px; min-height: auto; }
  .bm-vertical { font-size: clamp(48px, 16vw, 96px); }
  .bm-arrow { position: static; margin-top: 20px; }
}
@media (max-width: 480px) {
  .banner-mv { padding: 32px 16px; }
  .bm-tags { gap: 12px 16px; }
  .bm-tag { font-size: 12px; padding: 6px 12px; }
}

/* ─── BANNER NÚMEROS ─── */
.banner {
  background: var(--ink);
  color: var(--white);
  padding: 64px 32px;
  border-top: 4px solid var(--pink);
  border-bottom: 4px solid var(--pink);
}
.banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.banner-item {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.banner-item:first-child { padding-left: 0; }
.banner-item:last-child { border-right: 0; padding-right: 0; }
.banner-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--yellow);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.banner-num .plus {
  font-size: 0.55em;
  color: var(--pink);
  font-weight: 700;
}
.banner-label {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
  max-width: 220px;
}
.banner-label strong {
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
@media (max-width: 880px) {
  .banner { padding: 48px 24px; }
  .banner-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .banner-item { padding: 0 16px; }
  .banner-item:nth-child(2) { border-right: 0; }
  .banner-item:nth-child(odd) { padding-left: 0; }
  .banner-item:nth-child(even) { padding-right: 0; }
}
@media (max-width: 480px) {
  .banner { padding: 40px 16px; }
  .banner-inner { grid-template-columns: 1fr; gap: 28px; }
  .banner-item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 0 0 28px !important;
  }
  .banner-item:last-child { border-bottom: 0; padding-bottom: 0 !important; }
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--pink);
  color: var(--white);
  padding: 90px 32px;
  position: relative;
  overflow: hidden;
}
.manifesto-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1.5px;
  background: currentColor;
}
.manifesto h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.manifesto h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  display: inline-block;
  margin-top: 8px;
}
.manifesto h2 .line { display: block; }
.manifesto h2 .strike {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--white);
  opacity: 0.85;
}
.manifesto-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.manifesto-photo {
  position: relative;
  width: 92%; height: 96%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.manifesto-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.manifesto-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e5dc 100%);
  color: #999;
  text-align: center;
  padding: 24px;
}
.manifesto-photo-placeholder svg {
  width: 48px; height: 48px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.manifesto-photo-placeholder span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 220px;
  line-height: 1.4;
}
.manifesto-scribble {
  position: absolute;
  top: -50px; left: -30px;
  font-family: var(--hand);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--yellow);
  transform: rotate(-12deg);
  line-height: 0.95;
  z-index: 3;
  text-align: center;
  padding: 18px 26px;
}
.manifesto-scribble svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  stroke: var(--yellow);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.manifesto-scribble svg .stroke-1 { stroke-width: 5; }
.manifesto-scribble svg .stroke-2 { stroke-width: 4; opacity: 0.85; }

@media (max-width: 880px) {
  .manifesto { padding: 64px 24px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-photo-wrap { aspect-ratio: 1/1; max-width: 380px; margin: 0 auto; }
  .manifesto-scribble { top: -30px; left: -10px; }
}
@media (max-width: 480px) {
  .manifesto { padding: 48px 16px; }
}

/* ─── DIAGNÓSTICO ─── */
.diag {
  background: var(--navy);
  color: var(--white);
  padding: 140px 32px;
}
.diag-head {
  max-width: 1100px;
  margin: 0 auto 80px;
  text-align: center;
}
.diag-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.diag-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
  font-size: 1.05em;
}
.diag-head p {
  font-size: clamp(17px, 1.4vw, 19px);
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}
.diag-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.diag-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 36px 28px 32px;
  border-radius: 18px;
  transition: background .25s, border-color .25s, transform .25s;
}
.diag-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}
.diag-card-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: block;
}
.diag-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.diag-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

@media (max-width: 980px) { .diag-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .diag { padding: 80px 16px; }
  .diag-head { margin-bottom: 48px; }
  .diag-grid { grid-template-columns: 1fr; }
}

/* ─── MÉTODO ─── */
.method {
  background: var(--paper);
  padding: 160px 32px;
}
.method-head {
  max-width: 1280px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.method-head .left h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.method-head .left h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.method-head .right p {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 480px;
}
.method-head .right p strong { color: var(--ink); }
.method-pillars {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}
.pillar {
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: 40px 32px 48px;
  background: var(--paper);
  transition: background .3s;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.pillar:hover { background: var(--yellow); }
.pillar:nth-child(2):hover { background: var(--pink); color: var(--white); }
.pillar:nth-child(3):hover { background: var(--navy); color: var(--white); }
.pillar:nth-child(4):hover { background: var(--ink); color: var(--yellow); }
.pillar-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pillar-num::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.pillar:nth-child(2):hover .pillar-num::before,
.pillar:nth-child(3):hover .pillar-num::before,
.pillar:nth-child(4):hover .pillar-num::before { background: var(--yellow); }
.pillar h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: -0.045em;
  margin-bottom: 18px;
  line-height: 1;
}
.pillar p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: auto;
}
.pillar-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pillar-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 100px;
  text-transform: lowercase;
}

@media (max-width: 980px) {
  .method-head { grid-template-columns: 1fr; gap: 32px; }
  .method-pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2), .pillar:nth-child(4) { border-right: 1.5px solid var(--ink); }
  .pillar:nth-child(odd) { border-left: 0; }
}
@media (max-width: 560px) {
  .method { padding: 80px 16px; }
  .method-pillars { grid-template-columns: 1fr; }
  .pillar { min-height: auto; padding: 32px 24px 36px; }
  .pillar-num { margin-bottom: 32px; }
}

/* ─── SERVIÇOS ─── */
.services {
  background: var(--ink);
  color: var(--white);
  padding: 160px 32px;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
}
.services-head {
  max-width: 1280px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.services-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 900px;
  margin-bottom: 24px;
}
.services-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.services-head p {
  font-size: clamp(16px, 1.3vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.6;
}
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.svc {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 30px 26px;
  transition: background .25s, border-color .25s, transform .25s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.svc:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,230,0,0.4);
  transform: translateY(-3px);
}
.svc-num {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.svc-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.svc-icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
.svc h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.svc p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin-top: auto;
}
.svc-1 { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.svc-1:hover { background: var(--yellow); border-color: var(--ink); }
.svc-1 .svc-icon { background: var(--ink); color: var(--yellow); }
.svc-1 .svc-num { color: rgba(10,10,10,0.5); }
.svc-1 p { color: var(--ink-soft); }
.svc-5 { background: var(--pink); color: var(--white); border-color: var(--pink); }
.svc-5:hover { background: var(--pink-deep); border-color: var(--white); }
.svc-5 .svc-icon { background: var(--white); color: var(--pink); }
.svc-5 .svc-num { color: rgba(255,255,255,0.6); }
.svc-5 p { color: rgba(255,255,255,0.85); }
.svc-9 { background: var(--navy); border-color: var(--navy); color: var(--white); }
.svc-9:hover { background: var(--navy-deep); border-color: var(--yellow); }
.svc-9 .svc-icon { background: var(--yellow); color: var(--navy); }
.svc-9 p { color: rgba(255,255,255,0.85); }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services { padding: 80px 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc { min-height: auto; }
}

/* ─── CLIENTES / MARQUEE ─── */
.clientes {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clientes-head {
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 0 32px;
  text-align: center;
}
.clientes-head .section-tag {
  color: var(--pink-deep);
  justify-content: center;
}
.clientes-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 16px;
}
.clientes-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.clientes-head p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-clientes 40s linear infinite;
  padding: 8px 0;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-clientes {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marca {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  min-width: 180px;
  padding: 0 8px;
  filter: grayscale(100%) brightness(0.6);
  opacity: 0.55;
  transition: filter .3s, opacity .3s, transform .3s;
  text-decoration: none;
}
/* Quando não há link configurado: sem mãozinha (mantém o hover visual) */
.marca-static {
  cursor: default;
}
.marca:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}
.marca img, .marca svg {
  max-height: 100%;
  max-width: 180px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.marca-placeholder {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  line-height: 1.1;
  padding: 16px 20px;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
}
.marca-placeholder small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 2px;
}
@media (max-width: 880px) {
  .clientes { padding: 72px 0; }
  .clientes-head { margin-bottom: 40px; padding: 0 24px; }
  .marquee-track { gap: 32px; animation-duration: 32s; }
  .marca { height: 60px; min-width: 130px; }
  .marca img, .marca svg { max-width: 130px; }
  .marquee-wrap {
    mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
  }
}

/* ─── JORNADA ─── */
.journey {
  background: var(--paper);
  padding: 160px 32px;
}
.journey-head {
  max-width: 1280px;
  margin: 0 auto 80px;
  text-align: center;
}
.journey-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.journey-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.journey-head p {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.journey-stages {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.journey-line {
  position: absolute;
  top: 48px;
  left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0, var(--ink) 8px,
    transparent 8px, transparent 16px);
  opacity: 0.2;
  z-index: 0;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.stage { text-align: center; padding: 0 8px; }
.stage-dot {
  width: 96px; height: 96px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: var(--ink);
  transition: transform .25s, background .25s;
}
.stage:hover .stage-dot { transform: translateY(-4px); background: var(--yellow); }
.stage:nth-child(2) .stage-dot { background: var(--yellow); }
.stage:nth-child(3) .stage-dot { background: var(--pink); color: var(--white); }
.stage:nth-child(4) .stage-dot { background: var(--navy); color: var(--white); }
.stage:nth-child(5) .stage-dot { background: var(--ink); color: var(--yellow); }
.stage h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.stage p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 16px;
}
.stage-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.stage-channels span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 9px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .journey-line { display: none; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 560px) {
  .journey { padding: 80px 16px; }
  .journey-grid { grid-template-columns: 1fr; }
  .stage-dot { width: 72px; height: 72px; font-size: 24px; }
}

/* ─── APP ─── */
.app-sec {
  background: var(--yellow);
  padding: 160px 32px;
  position: relative;
  overflow: hidden;
}
.app-sec::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(60px);
}
.app-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
/* FIX: mesmo bug do hero-meta-pulse */
.app-badge .dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: edumpulse 1.8s ease-out infinite;
}
.app-sec h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin-bottom: 24px;
}
.app-sec h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pink-deep);
}
.app-sec .app-intro {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}
.app-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 36px;
}
.app-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}
.app-features li::before {
  content: '';
  flex: 0 0 18px;
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--ink);
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23FFE600" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
}
.phone {
  width: 280px; height: 580px;
  background: var(--ink);
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), inset 0 0 0 2px rgba(255,255,255,0.08);
  position: relative;
  transform: rotate(-3deg);
  flex-shrink: 0;
}
.phone::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 82px; height: 24px;
  background: var(--ink);
  border-radius: 100px;
  z-index: 3;
}
.phone-screen {
  background: #F6F2E6;
  border-radius: 32px;
  height: 100%; width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-screen-header {
  background: var(--white);
  padding: 46px 16px 12px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.phone-logo-row { display: flex; align-items: center; gap: 8px; }
.phone-logo-mark {
  width: 26px; height: 26px;
  background: var(--yellow);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.phone-logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.phone-logo-text small {
  display: block;
  font-family: var(--body);
  font-size: 7.5px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.phone-body { padding: 16px; flex: 1; overflow: hidden; }
.phone-greet {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.phone-body h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.phone-body h3 em {
  font-style: normal;
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 2px;
}
.phone-card {
  background: var(--white);
  border-radius: 14px;
  padding: 12px;
  margin-top: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.phone-card::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 60px; height: 60px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.4;
}
.phone-card-tag {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: #F6F2E6;
  padding: 3px 7px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.phone-card-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.025em;
  margin-bottom: 2px;
  position: relative; z-index: 1;
}
.phone-card-name span { color: var(--gray); font-weight: 500; font-size: 10px; }
.phone-card-mood { font-size: 9px; color: var(--ink-soft); margin-bottom: 6px; position: relative; z-index: 1; }
.phone-card-mood strong { color: var(--ink); }
.phone-card-summary { font-size: 9.5px; color: var(--ink-soft); line-height: 1.5; position: relative; z-index: 1; }
.phone-card-summary mark { background: var(--yellow-soft); padding: 0 2px; border-radius: 2px; }
.phone-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 12px;
}
.phone-stat {
  background: var(--white);
  border-radius: 9px;
  padding: 8px 4px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.phone-stat-val {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 2px;
}
.phone-stat-lbl {
  font-size: 7px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.phone-timeline { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.phone-tl-item { display: flex; gap: 8px; align-items: flex-start; }
.phone-tl-time { font-size: 8px; font-weight: 700; color: var(--gray); letter-spacing: 0.04em; width: 28px; flex-shrink: 0; padding-top: 1px; }
.phone-tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--ink); flex-shrink: 0; }
.phone-tl-dot.y { background: var(--yellow); border-color: var(--yellow-deep); }
.phone-tl-dot.p { background: var(--pink); border-color: var(--pink-deep); }
.phone-tl-text { font-size: 9px; color: var(--ink); font-weight: 500; line-height: 1.4; }
.phone-tl-text small { display: block; font-weight: 400; color: var(--gray); font-size: 8px; margin-top: 1px; }

@media (max-width: 880px) {
  .app-sec { padding: 80px 24px; }
  .app-grid { grid-template-columns: 1fr; gap: 60px; }
  .app-features { grid-template-columns: 1fr; }
  .phone { transform: rotate(0deg); }
  .phone-wrap { min-height: auto; }
}
@media (max-width: 480px) {
  .app-sec { padding: 64px 16px; }
}

/* ─── CALENDÁRIO ─── */
.calendar {
  background: var(--white);
  padding: 140px 32px;
}
.calendar-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.calendar-text h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}
.calendar-text h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.calendar-text p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
}
.calendar-preview {
  background: var(--paper);
  border-radius: 28px;
  padding: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}
.cal-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cal-preview-head h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.cal-preview-head span {
  font-size: 12px;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cal-months {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cal-month {
  aspect-ratio: 1/1.1;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 10px 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.cal-month:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.cal-month-name {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cal-events { display: flex; flex-direction: column; gap: 4px; }
.cal-event {
  font-size: 8px;
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: 500;
  line-height: 1.2;
}
.cal-event.yellow { background: var(--yellow); color: var(--ink); }
.cal-event.pink { background: var(--pink-soft); color: var(--pink-deep); }
.cal-event.navy { background: var(--navy); color: var(--white); }
.cal-event.gray { background: var(--line); color: var(--ink-soft); }

@media (max-width: 880px) {
  .calendar { padding: 80px 16px; }
  .calendar-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 560px) {
  .cal-months { grid-template-columns: repeat(3, 1fr); }
  .calendar-preview { padding: 20px; }
}

/* ─── DIFERENCIAIS ─── */
.diff {
  background: var(--paper);
  padding: 140px 32px;
  border-top: 1.5px solid var(--line);
}
.diff-head {
  max-width: 1280px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.diff-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.diff-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.diff-head p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 440px;
}
.diff-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-grid:has(> :nth-child(5):last-child) {
  grid-template-columns: repeat(6, 1fr);
}
.diff-grid:has(> :nth-child(5):last-child) > .diff-card:nth-child(-n+3) { grid-column: span 2; }
.diff-grid:has(> :nth-child(5):last-child) > .diff-card:nth-child(4) { grid-column: 2 / span 2; }
.diff-grid:has(> :nth-child(5):last-child) > .diff-card:nth-child(5) { grid-column: 4 / span 2; }
.diff-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.diff-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.diff-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.diff-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 880px) {
  .diff { padding: 80px 16px; }
  .diff-head { grid-template-columns: 1fr; gap: 32px; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-grid:has(> :nth-child(5):last-child) { grid-template-columns: 1fr; }
  .diff-grid:has(> :nth-child(5):last-child) > .diff-card { grid-column: span 1; }
}

/* ─── CTA FINAL ─── */
.cta-final {
  background: var(--yellow);
  padding: 90px 32px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  bottom: -150px; right: -150px;
  width: 500px; height: 500px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(60px);
}
.cta-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-grid h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.cta-grid h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pink-deep);
}
.cta-handwrite {
  font-family: var(--hand);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy-deep);
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: 16px;
}
.cta-right { display: flex; flex-direction: column; gap: 14px; }
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
  padding: 26px 30px;
  border-radius: 100px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.025em;
  transition: transform .2s, background .2s;
}
.cta-btn:hover { background: var(--pink); transform: translateY(-2px); }
.cta-btn-icon {
  width: 36px; height: 36px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-btn-icon svg { width: 16px; height: 16px; }
.cta-btn.wpp { background: #25D366; }
.cta-btn.wpp:hover { background: #1ab94e; }
.cta-btn.wpp .cta-btn-icon { background: var(--white); color: #25D366; }
.cta-btn.email { background: var(--navy); }
.cta-btn.email:hover { background: var(--navy-deep); }
.cta-btn.email .cta-btn-icon { background: var(--yellow); color: var(--navy); }

@media (max-width: 880px) {
  .cta-final { padding: 80px 16px; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-btn { font-size: 15px; padding: 20px 24px; }
}

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 32px 40px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.065em;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}
.footer-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.footer-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--yellow);
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid rgba(255,230,0,0.3);
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.footer-by:hover { background: var(--yellow); color: var(--ink); }
.footer-col h5 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.footer-socials a:hover { background: var(--yellow); color: var(--ink); }
.footer-socials svg { width: 16px; height: 16px; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer { padding: 60px 16px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { font-size: 40px; }
}

/* ─── REVEAL ON SCROLL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Admin bar do WordPress empurra a nav pra baixo */
body.admin-bar .nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}

/* Substitui no .nav original — fundo branco sólido */
.nav {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav.scrolled {
  background: #FFFFFF;
  border-bottom-color: var(--line);
}
/* FIX: diff-grid :has() nth-child rules sobrescrevem o grid-template-columns: 1fr no mobile */
@media (max-width: 880px) {
  .diff-grid,
  .diff-grid:has(> :nth-child(5):last-child) {
    grid-template-columns: 1fr !important;
  }
  .diff-grid > .diff-card,
  .diff-grid:has(> :nth-child(5):last-child) > .diff-card,
  .diff-grid:has(> :nth-child(5):last-child) > .diff-card:nth-child(-n+3),
  .diff-grid:has(> :nth-child(5):last-child) > .diff-card:nth-child(4),
  .diff-grid:has(> :nth-child(5):last-child) > .diff-card:nth-child(5) {
    grid-column: 1 / -1 !important;
  }
}
/* ─── MUDE SIGNATURE BAR ─── */
.mude-bar {
  background: #0A0A0A;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.mude-bar a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color .2s;
}
.mude-bar a:hover { color: rgba(255,255,255,0.7); text-decoration: none; }
.mude-heart { color: #FF1F8F; }

@media (max-width: 560px) {
  .mude-bar { padding: 12px 16px; font-size: 10px; }
}

/* ─── FIX PONTOS QUADRADOS (todos os pseudo-elementos e spans circulares) ─── */
.hero-meta-pulse,
.app-badge .dot,
.hero-tag::before,
.pillar-num::before,
.section-tag::before,
.bm-box::before,
.bm-box::after,
.bm-box .corner-bl,
.bm-box .corner-br {
  display: inline-block !important;
}

/* section-tag é linha (não círculo) — precisa de display:block */
.section-tag::before {
  display: block !important;
  flex-shrink: 0;
}
/* ─── FIX FOOTER: Enfold sobrescreve h5, forçar tamanho correto ─── */
.footer-col h5 {
  font-size: 12px !important;
  font-family: var(--display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--yellow) !important;
  line-height: 1.1 !important;
  margin-bottom: 18px !important;
}

/* Ocultar colunas do footer que não têm links ainda */
.footer-col:has(ul:empty) {
  display: none;
}

/* Mobile: footer-grid 2 colunas apenas para a col principal */
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}
.footer-grid {
  align-items: start;
}
/* ─── DOT REDONDO DO edu.m ─── */
.edum-dot {
  display: inline-block;
  width: 0.085em;
  height: 0.085em;
  background: currentColor;
  border-radius: 50%;
  vertical-align: 0.06em;
  letter-spacing: 0;
}
/* ─── Logo SVG sizing ─── */
.nav-brand svg {
  height: 26px;
  width: auto;
  display: block;
  color: var(--ink);
}

.hero-wordmark svg {
  height: clamp(80px, 11vw, 150px);
  width: auto;
  display: block;
  color: var(--ink);
}

.footer-brand svg {
  height: 40px;
  width: auto;
  display: block;
  color: var(--white);
}