/* =========================================================
   Sonia Mazetto — 1ª Gestora de Potencial Humano do Brasil
   Paleta "Essência" — azul-noite & céu.
   Heros escuros em azul-tinta profundo, azul-céu como luz;
   conteúdo em fundos claros e arejados.
   ========================================================= */

:root {
  /* Cor */
  --ink: #0e2433;         /* azul-noite — títulos, hero, rodapé */
  --text: #4f6570;        /* corpo de texto */
  --teal: #327687;        /* petróleo — cor da marca, links, CTAs */
  --sky: #7fc0cf;         /* azul-céu — luz e acentos sobre o escuro */
  --teal-soft: #e8eff2;   /* névoa — lavagem fria para fundos suaves */
  --gold: #327687;        /* acento (kickers) — mantém o petróleo da paleta */
  --bg: #ffffff;
  --bg-soft: #f7f9fa;     /* seções alternadas */
  --line: #dde7ec;        /* fios e bordas */
  --shadow: 0 12px 34px rgba(14, 36, 51, 0.1);
  --shadow-dark: 0 30px 70px rgba(6, 18, 27, 0.45);

  /* Tipo */
  --font-display: "Plus Jakarta Sans", -apple-system, "Segoe UI", sans-serif;
  --font-body: "Figtree", -apple-system, "Segoe UI", sans-serif;

  /* Ritmo */
  --section-y: clamp(88px, 12vw, 150px);
  --container: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 20px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Impede barra horizontal de qualquer animação, sem afetar o header fixo */
main { overflow-x: clip; }

::selection { background: var(--teal); color: #fff; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.015em;
}

h2 { font-size: clamp(30px, 3.8vw, 44px); line-height: 1.15; }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal); text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Texto utilitário ---------- */

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 18px;
}

.lede { font-size: 19px; color: var(--ink); font-weight: 500; }

.grifo {
  color: var(--teal);
}

/* ---------- Botões ---------- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 18px rgba(50, 118, 135, 0.28);
}
.btn-primary:hover { background: #3a879a; }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--bg);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}

.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img { width: 110px; height: auto; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

.site-nav a:hover { color: var(--teal); }

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff !important;
  transition: background-color 0.3s var(--ease);
}
.nav-cta:hover { background: #3a879a; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (escuro — azul-noite) ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 620px at 82% 12%, rgba(127, 192, 207, 0.22), transparent 62%),
    radial-gradient(900px 520px at 6% 96%, rgba(50, 118, 135, 0.30), transparent 58%),
    linear-gradient(165deg, #12304180 0%, transparent 55%),
    var(--ink);
  color: #fff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(60px, 9vw, 128px);
}

.hero .eyebrow { color: var(--sky); }

.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.08;
  margin-bottom: 24px;
  color: #fff;
}

.hero .grifo { color: var(--sky); }

.hero-lead {
  font-size: 18px;
  max-width: 52ch;
  color: #c3d5dd;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* botões no hero escuro */
.hero .btn-primary {
  background: var(--sky);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(127, 192, 207, 0.28);
}
.hero .btn-primary:hover { background: #96ccd9; }

.hero .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.hero .btn-ghost:hover { border-color: #fff; color: #fff; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.hero-chips li {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(127, 192, 207, 0.35);
  border-radius: 999px;
  padding: 7px 16px;
}
/* chips interativos (link ou botão): área clicável cobre a pílula inteira */
.hero-chips li:has(a),
.hero-chips li:has(button) { padding: 0; }
.hero-chips li a,
.hero-chips li button {
  display: block;
  padding: 7px 16px;
  color: inherit;
  text-decoration: none;
  border-radius: 999px;
  background: none;
  border: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}
/* hover só nos chips que realmente fazem algo */
.hero-chips li:has(a):hover,
.hero-chips li:has(button):hover { border-color: var(--sky); color: #fff; transform: translateY(-3px); }
.hero-chips li a:focus-visible,
.hero-chips li button:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

/* ---------- Modal de credenciais ---------- */
.cred-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 18, 27, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.cred-overlay.is-open { opacity: 1; }
.cred-overlay[hidden] { display: none; }

.cred-modal {
  position: relative;
  width: min(480px, 100%);
  background:
    radial-gradient(420px 260px at 85% 0%, rgba(127, 192, 207, 0.16), transparent 60%),
    var(--ink);
  color: #fff;
  border: 1px solid rgba(127, 192, 207, 0.25);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 42px);
  box-shadow: 0 40px 90px rgba(4, 14, 22, 0.6);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.35s var(--ease);
}
.cred-overlay.is-open .cred-modal { transform: none; }

.cred-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 10px;
}
.cred-modal h3 {
  color: #fff;
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 12px;
}
.cred-text { font-size: 15.5px; line-height: 1.65; color: #c3d5dd; margin: 0 0 24px; }
.cred-link.btn {
  background: var(--sky);
  color: var(--ink);
  box-shadow: none;
}
.cred-link.btn:hover { background: #96ccd9; }

.cred-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #cfe0e7;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.cred-close:hover { background: var(--sky); color: var(--ink); }
.cred-close:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

.hero-photo {
  margin: 0;
}

.hero-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}

/* ---------- Seções ---------- */

.section { padding-block: var(--section-y); }

.section-soft { background: var(--bg-soft); }

.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }

.section-head.wide { max-width: 780px; }

.section-head.split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-intro { margin-top: 20px; font-size: 17px; }

/* ---------- Curso (produto principal) ---------- */

.course-card {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: linear-gradient(135deg, var(--teal-soft) 0%, #f2f8f9 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(28px, 4.5vw, 64px);
}

.course-copy h2 { margin-bottom: 18px; }

.course-topics {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.course-topics li {
  position: relative;
  padding-left: 32px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
}

.course-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23327687' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.course-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.course-note { font-size: 14px; color: var(--text); }

.course-photo { margin: 0; }

.course-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Sobre ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.about-photo { margin: 0; }

.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.credentials {
  margin: 44px 0 0;
  border-top: 1px solid var(--line);
}

.credentials > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.credentials dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  padding-top: 3px;
}

.credentials dd {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink);
}

/* ---------- Serviços ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 42px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.service-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: clamp(20px, 2.1vw, 24px);
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-card p:last-of-type { font-size: 15.5px; }

.card-link { font-weight: 600; white-space: nowrap; }

/* ---------- Coral corporativo ---------- */

.coral-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.coral-title {
  font-size: 19px;
  margin-bottom: 18px;
}

.coral-title:not(:first-child) { margin-top: 36px; }

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 34px;
  font-size: 15.5px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23327687' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.check-list strong { color: var(--ink); font-weight: 600; }

.coral-uses { font-size: 15.5px; }

.coral-note {
  margin-top: clamp(36px, 5vw, 56px);
  padding: 22px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 0 14px 14px 0;
}

.coral-note p { font-size: 15px; margin: 0; }

.pull-quote {
  max-width: 800px;
  margin: clamp(44px, 6vw, 72px) auto;
  text-align: center;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}

.coral-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ---------- Palestras ---------- */

.talks-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.talk-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.talk {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
}

.talk:hover {
  transform: translateX(6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.talk h3 { font-size: 19px; margin-bottom: 4px; }

.talk p { font-size: 15px; margin: 0; }

.talks-photos {
  display: grid;
  gap: 22px;
}

.talks-photos figure { margin: 0; }

.talks-photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.talks-photos figcaption {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--text);
}

/* ---------- Projetos ---------- */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}

.project-card {
  background: var(--teal-soft);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
}

.project-card h3 { font-size: 20px; margin-bottom: 10px; }

.project-card p { font-size: 15px; margin: 0; }

/* ---------- Na mídia ---------- */

.media-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}

.media-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.media-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.media-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.media-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal);
  font-size: 18px;
  padding-left: 4px;
  box-shadow: 0 6px 20px rgba(22, 51, 62, 0.25);
  transition: transform 0.3s var(--ease);
}

.media-card:hover .play-badge { transform: translate(-50%, -50%) scale(1.08); }

.media-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px 26px 28px;
}

.media-card-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.media-card h3 {
  font-size: 19px;
  line-height: 1.35;
  flex-grow: 1;
}

.media-card-cta {
  background: var(--teal);
  border-color: var(--teal);
  justify-content: center;
}

.media-card-cta .media-card-kicker { color: rgba(255, 255, 255, 0.75); }

.media-card-cta h3 { color: #fff; margin-bottom: 22px; flex-grow: 0; }

.media-card-cta .btn-primary {
  background: #fff;
  color: var(--teal);
  box-shadow: none;
  align-self: flex-start;
}

.media-card-cta .media-card-body { justify-content: center; }

.card-more {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}

/* ---------- Artigos ---------- */

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.article-source {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.article-card h3 {
  font-size: 19px;
  line-height: 1.4;
  flex-grow: 1;
}

.article-meta {
  font-size: 13.5px;
  margin: 12px 0 0;
}

/* ---------- Contato ---------- */

.section-contact { background: var(--teal-soft); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact-photo { margin: 0; }

.contact-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Rodapé ---------- */

.site-footer {
  position: relative;
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(127, 192, 207, 0.10), transparent 60%),
    radial-gradient(700px 360px at 10% 100%, rgba(50, 118, 135, 0.16), transparent 60%),
    var(--ink);
  padding: clamp(56px, 7vw, 88px) 0 clamp(28px, 4vw, 40px);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 192, 207, 0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  width: 190px;
  opacity: 0.96;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 14.5px;
  line-height: 1.6;
  color: #a7c0cb;
  max-width: 34ch;
  margin: 0 0 22px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #cfe0e7;
  padding: 9px 16px;
  border: 1px solid rgba(127, 192, 207, 0.3);
  border-radius: 999px;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 18px;
}

.footer-nav { display: flex; flex-direction: column; }
.footer-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: #a7c0cb;
  padding: 6px 0;
  width: fit-content;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-nav a:hover { color: #fff; transform: translateX(4px); }

.footer-cta p:not(.footer-col-title) {
  font-size: 14.5px;
  line-height: 1.6;
  color: #a7c0cb;
  margin: 0 0 20px;
  max-width: 30ch;
}
.footer-cta .btn {
  background: var(--sky);
  color: var(--ink);
  padding: 12px 24px;
}
.footer-cta .btn:hover { background: #96ccd9; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: clamp(22px, 3vw, 30px);
}
.footer-legal { font-size: 12.5px; color: #7f9aa6; margin: 0; }
.footer-made { font-size: 12.5px; color: #5f7c88; margin: 0; }

/* ---------- Página de artigos ---------- */

.page-hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 88% 20%, rgba(127, 192, 207, 0.20), transparent 60%),
    radial-gradient(700px 420px at 4% 100%, rgba(50, 118, 135, 0.28), transparent 58%),
    var(--ink);
  color: #fff;
  padding: clamp(64px, 9vw, 116px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}

.page-hero .eyebrow { color: var(--sky); }

.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
}

.page-hero .grifo { color: var(--sky); }

.page-hero p {
  font-size: 18px;
  max-width: 56ch;
  color: #c3d5dd;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  margin-bottom: clamp(36px, 5vw, 56px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.featured-article:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.featured-article img {
  height: 100%;
  object-fit: cover;
}

.featured-body {
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 16px;
  margin: 0 0 20px;
}

.featured-body h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 14px;
}

/* ---------- Sub-páginas: hero com trilha ---------- */

.breadcrumb {
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 0 0 22px;
  color: #9fb8c2;
}
.breadcrumb a { color: var(--sky); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.6; margin: 0 8px; }

.page-hero .page-hero-lead {
  margin-top: 6px;
}
.page-hero .page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.page-hero .btn-primary {
  background: var(--sky);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(127, 192, 207, 0.28);
}
.page-hero .btn-primary:hover { background: #96ccd9; }
.page-hero .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.page-hero .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---------- Editorial (biografia) ---------- */

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.editorial-photo { margin: 0; }
.editorial-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.editorial-body .lede { margin-bottom: 20px; }
.editorial-body .dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 600;
  float: left;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: var(--teal);
}

/* ---------- Estatísticas ---------- */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 36px);
}
.stat {
  padding: 26px 8px;
  text-align: center;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.stat .label {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

/* ---------- Linha do tempo ---------- */

.timeline {
  position: relative;
  margin-top: clamp(36px, 5vw, 56px);
  padding-left: 34px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--sky), var(--teal-soft));
}
.tl-item {
  position: relative;
  padding-bottom: clamp(28px, 4vw, 42px);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px var(--teal-soft);
}
.tl-phase {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 6px;
}
.tl-item h3 { font-size: clamp(20px, 2.3vw, 26px); margin-bottom: 8px; }
.tl-item p { font-size: 15.5px; margin: 0; max-width: 60ch; }

/* ---------- Galeria ---------- */

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  flex: 1 1 240px;
  max-width: 300px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  aspect-ratio: 4 / 5;
  transition: transform 0.5s var(--ease);
}
.gallery figure:hover img { transform: scale(1.05); }

/* ---------- Personas / público ---------- */

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}
.persona {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
}
.persona .persona-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 22px;
  margin-bottom: 18px;
}
.persona h3 { font-size: 19px; margin-bottom: 8px; }
.persona p { font-size: 15px; margin: 0; }

/* ---------- Módulos / programa ---------- */

.module-list {
  counter-reset: mod;
  border-top: 1px solid var(--line);
}
.module {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.module::before {
  counter-increment: mod;
  content: counter(mod, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--sky);
}
.module h3 { font-size: 20px; margin-bottom: 6px; }
.module p { font-size: 15px; margin: 0; max-width: 62ch; }

/* ---------- Passos (como funciona) ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  counter-reset: step;
}
.step { position: relative; padding-top: 12px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; margin: 0; }

/* ---------- Formatos ---------- */

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}
.format-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
}
.format-card .format-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.format-card h3 { font-size: 21px; margin-bottom: 10px; }
.format-card p { font-size: 15px; margin: 0; }

/* ---------- FAQ ---------- */

.faq { max-width: 820px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.9vw, 20px);
  font-weight: 600;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 0 24px; font-size: 15.5px; max-width: 70ch; }

/* ---------- Faixa de CTA ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  background:
    radial-gradient(700px 400px at 82% 15%, rgba(127, 192, 207, 0.22), transparent 60%),
    radial-gradient(600px 360px at 8% 100%, rgba(50, 118, 135, 0.32), transparent 58%),
    var(--ink);
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band h2 em { color: var(--sky); font-style: normal; }
.cta-band p { color: #c3d5dd; max-width: 52ch; margin: 0 auto 30px; }
.cta-band .cta-actions { justify-content: center; margin-top: 0; }
.cta-band .btn-primary {
  background: var(--sky);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(127, 192, 207, 0.28);
}
.cta-band .btn-primary:hover { background: #96ccd9; }
.cta-band .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.cta-band .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---------- Formulário de contato ---------- */

.contact-cols {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 44px);
}
.field { display: grid; gap: 7px; }
.field label {
  font-size: 13px; font-weight: 600; color: var(--ink);
  letter-spacing: 0.02em;
}
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text); margin: 4px 0 0; }

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}
.method-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.method-row:hover { border-color: var(--teal); transform: translateX(4px); }
.method-row .method-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--teal-soft); color: var(--teal);
  font-size: 20px;
}
.method-row .method-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.method-row .method-value { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); }

/* ---------- Página de vendas: preços ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
  max-width: 880px;
  margin-inline: auto;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(30px, 4vw, 46px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 20px 50px rgba(14, 36, 51, 0.12);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}
.price-card h3 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 8px; }
.price-desc { font-size: 14.5px; color: var(--text); margin: 0 0 24px; }
.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.price .amount {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 50px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price .currency { font-size: 20px; font-weight: 600; color: var(--ink); }
.price .period { font-size: 15px; color: var(--text); }
.price .installment { flex-basis: 100%; font-size: 14px; color: var(--text); margin-top: 4px; }
.price-old { font-size: 15px; color: var(--text); text-decoration: line-through; opacity: 0.7; margin: 0 0 4px; }
.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-grow: 1;
  display: grid;
  gap: 12px;
}
.price-features li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--ink);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23327687' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.price-features li.muted { color: var(--text); }
.price-features li.muted::before { background-color: #eef2f3; filter: grayscale(1); opacity: 0.6; }
.price-card .btn { width: 100%; text-align: center; padding: 16px 24px; }
.price-note { font-size: 12.5px; color: var(--text); text-align: center; margin: 14px 0 0; }

/* ---------- Vendas: foto ao lado dos planos ---------- */
.plans-lead {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.plans-photo { position: relative; margin: 0; }
.plans-photo .main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.plans-photo .mini {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 44%;
  border-radius: 16px;
  border: 6px solid var(--bg-soft);
  box-shadow: var(--shadow);
}
.plans-photo .photo-seal {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(14, 36, 51, 0.25);
}
.plans-lead-copy h2 { margin-bottom: 14px; }
.plans-trust {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.plans-trust li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--ink);
}
.plans-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23327687' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}

/* ---------- Garantia ---------- */
.guarantee {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
  max-width: 760px;
  margin-inline: auto;
  background: var(--teal-soft);
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 40px);
}
.guarantee-badge {
  flex-shrink: 0;
  width: 96px; height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--teal);
  color: var(--teal);
  line-height: 1.1;
}
.guarantee-badge strong { font-family: var(--font-display); font-size: 26px; display: block; }
.guarantee-badge span { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.guarantee h3 { font-size: 20px; margin-bottom: 6px; }
.guarantee p { font-size: 15px; margin: 0; }

/* ---------- Comparativo de trilhas ---------- */
.track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}
.track-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 42px);
}
.track-card.is-pro { background: var(--ink); color: #fff; border-color: transparent; }
.track-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
  background: var(--teal-soft); color: var(--teal);
}
.track-card.is-pro .track-tag { background: rgba(127,192,207,0.2); color: var(--sky); }
.track-card h3 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 10px; }
.track-card.is-pro h3 { color: #fff; }
.track-card > p { font-size: 15px; color: var(--text); }
.track-card.is-pro > p { color: #c3d5dd; }
.track-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.track-list li { position: relative; padding-left: 26px; font-size: 14.5px; }
.track-list li::before { content: "→"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.track-card.is-pro .track-list li::before { color: var(--sky); }

/* ---------- Empresas atendidas ---------- */
.logo-wall{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
  margin-top:8px;
}
.logo-wall span{
  display:flex; align-items:center; justify-content:center; text-align:center;
  min-height:66px; padding:12px 14px;
  background:var(--bg); border:1px solid var(--line); border-radius:14px;
  font-family:var(--font-display); font-weight:600; font-size:13.5px; line-height:1.2; color:var(--ink);
  transition:border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-wall span:hover{ border-color:var(--teal); transform:translateY(-3px); box-shadow:var(--shadow); }
.trusted-note{ text-align:center; font-size:13.5px; color:var(--text); margin-top:24px; }

/* ---------- Logo cloud estilo SaaS (marcas passando) ---------- */
.logo-marquee{
  position:relative; overflow:hidden; display:grid; gap:14px;
  margin-top:clamp(26px,4vw,44px);
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.lm-row{ display:flex; width:max-content; will-change:transform; }
.lm-row.r1{ animation:lm-scroll 52s linear infinite; }
.lm-row.r2{ animation:lm-scroll 46s linear infinite reverse; }
.logo-marquee:hover .lm-row{ animation-play-state:paused; }
.lm-item{
  flex:0 0 auto; display:inline-flex; align-items:center; gap:9px;
  height:56px; padding:0 clamp(18px,2.5vw,36px);
  font-family:var(--font-display); font-weight:600; font-size:clamp(14.5px,1.5vw,18px);
  letter-spacing:-.01em; white-space:nowrap; color:#94a7ae;
  transition:color .3s var(--ease);
}
.lm-item::before{ content:""; width:8px; height:8px; border-radius:50%; background:currentColor; opacity:.4; flex:0 0 auto; }
.lm-item:hover{ color:var(--teal); }
.lm-item .lm-logo{
  height:30px; width:auto; max-width:82px; object-fit:contain; display:block; flex:0 0 auto;
  filter:grayscale(1); opacity:.62; transition:filter .3s var(--ease), opacity .3s var(--ease);
}
.lm-item.has-logo{ color:var(--ink); }
.lm-item.has-logo::before{ display:none; }
.lm-item.has-logo:hover .lm-logo{ filter:none; opacity:1; }
@keyframes lm-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- Faixa animada (marquee) ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2.2vw, 26px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee.on-dark {
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.1);
}
.marquee.on-soft { background: var(--teal-soft); border-color: transparent; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 48px);
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: clamp(26px, 4vw, 48px);
  font-family: var(--font-display);
  font-size: clamp(17px, 2.3vw, 27px);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.marquee.on-dark .marquee-item { color: #fff; }
.marquee-item::after {
  content: "✦";
  font-family: var(--font-body);
  font-size: 0.5em;
  color: var(--teal);
  transform: translateY(-2px);
}
.marquee.on-dark .marquee-item::after { color: var(--sky); }

@keyframes marquee { to { transform: translateX(calc(-50% - clamp(13px, 2vw, 24px))); } }

/* ---------- Tira de números em destaque ---------- */
.figure-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 40px);
  text-align: center;
}
.figure-band .fb-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}
.figure-band .fb-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* ---------- Citação grande com destaque ---------- */
.quote-feature {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.quote-feature .q-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--teal-soft);
  display: block;
  margin-bottom: 10px;
}
.quote-feature p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
}
.quote-feature cite {
  display: block;
  margin-top: 22px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ---------- Zoom leve ligado ao scroll (progressive enhancement) ---------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .scroll-zoom img, img.scroll-zoom {
      animation: szoom linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 45%;
    }
    @keyframes szoom {
      from { transform: scale(1.12); }
      to   { transform: scale(1); }
    }
  }
}

/* ---------- Revelação ao rolar ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease), filter 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* ---------- Barra de progresso de scroll ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--teal), var(--sky));
  box-shadow: 0 0 10px rgba(127, 192, 207, 0.6);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ---------- Revelação de imagens (wipe + zoom) ---------- */
.img-reveal { overflow: hidden; }
.img-reveal img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
  transition: clip-path 1.1s var(--ease), transform 1.4s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.img-reveal:not(.is-visible) img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.12);
}

/* variações direcionais */
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-scale { transform: scale(0.94); }
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible { transform: none; }

/* ---------- Entrada do hero (no load) ---------- */

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes riseImg {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.hero-copy > * { animation: rise 0.8s var(--ease) both; }
.hero-copy > .eyebrow      { animation-delay: 0.05s; }
.hero-copy > h1            { animation-delay: 0.15s; }
.hero-copy > .hero-lead    { animation-delay: 0.28s; }
.hero-copy > .hero-actions { animation-delay: 0.40s; }
.hero-copy > .hero-chips   { animation-delay: 0.52s; }
.hero-photo { animation: riseImg 1s var(--ease) 0.3s both; }

.page-hero > .container > * { animation: rise 0.7s var(--ease) both; }
.page-hero .breadcrumb { animation-delay: 0.02s; }
.page-hero h1          { animation-delay: 0.12s; }
.page-hero .page-hero-lead,
.page-hero p           { animation-delay: 0.24s; }
.page-hero .page-hero-actions { animation-delay: 0.36s; }

/* ---------- Gradientes vivos (heros + faixas escuras) ---------- */

@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(3%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
.hero::before,
.page-hero::before,
.cta-band::before,
.section-contact-dark::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 380px at 20% 30%, rgba(127, 192, 207, 0.16), transparent 60%),
    radial-gradient(520px 320px at 80% 70%, rgba(50, 118, 135, 0.20), transparent 60%);
  animation: drift 16s ease-in-out infinite;
}
.hero > .container,
.page-hero > .container,
.cta-band > * { position: relative; z-index: 1; }

/* ---------- Foto do hero: flutuar suave ---------- */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-photo img { animation: float 7s ease-in-out infinite; }
@media (hover: none) { .hero-photo img { animation: none; } }

/* ---------- Botões: brilho + elevação ---------- */

.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 130%; }

/* ---------- Links de navegação: sublinhado animado ---------- */

.site-nav ul a:not(.nav-cta) {
  position: relative;
}
.site-nav ul a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav ul a:not(.nav-cta):hover::after,
.site-nav ul a[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Contagem / número (biografia) ---------- */
.stat .num { transition: color 0.3s var(--ease); }
.stat:hover { border-color: var(--teal); }

/* ---------- Chips: leve pulsar ao aparecer ---------- */
.hero-chips li { transition: transform 0.3s var(--ease), border-color 0.3s var(--ease); }
.hero-chips li:hover { transform: translateY(-3px); border-color: var(--sky); }

/* ---------- Responsivo ---------- */

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .talks-grid,
  .coral-grid,
  .contact-grid,
  .course-card,
  .editorial,
  .contact-cols,
  .featured-article { grid-template-columns: 1fr; }

  .course-photo { max-width: 400px; }
  .course-topics { grid-template-columns: 1fr; }

  .hero-photo { max-width: 440px; }

  .service-grid,
  .article-grid,
  .media-cards,
  .project-grid,
  .persona-grid,
  .format-grid,
  .steps { grid-template-columns: 1fr; }

  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .gallery figure { flex-basis: 150px; max-width: 260px; }
  .editorial-photo { max-width: 460px; }

  /* sem deslocamento horizontal no mobile (evita overflow lateral) */
  .reveal-left, .reveal-right { transform: translateY(30px); }
  .reveal-left.is-visible, .reveal-right.is-visible { transform: none; }

  /* rodapé em coluna única */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .figure-band { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .logo-wall span { min-height:56px; font-size:12.5px; }

  /* vendas em coluna única */
  .pricing-grid, .track-grid, .plans-lead { grid-template-columns: 1fr; }
  .guarantee { flex-direction: column; text-align: center; }
  .plans-photo { max-width: 440px; margin-inline: auto; }
  .plans-photo .mini { right: 10px; bottom: 10px; }

  .contact-photo { max-width: 420px; }

  .nav-toggle { display: flex; }

  .site-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px var(--gutter) 26px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .site-nav ul.is-open { display: flex; }

  .site-nav ul a {
    display: block;
    padding: 13px 0;
    font-size: 17px;
  }

  .nav-cta { margin-top: 12px; }
}

/* ---------- Movimento reduzido ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .img-reveal img { clip-path: none; transform: none; }
  .scroll-progress { display: none; }
  .marquee-track { animation: none; }
  .lm-row { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
