:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --bg-alt: #efeff2;
  --text: #111111;
  --muted: #5b5b5b;
  --primary: #4a2074;
  --primary-2: #6a2ea8;
  --ring: rgba(74, 32, 116, 0.25);
  --shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 8px 22px rgba(17, 17, 17, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.92rem;
}

.center {
  text-align: center;
}

.img-centered {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.page {
  padding-top: 120px;
}

@media (max-width: 720px) {
  .page {
    padding-top: 110px;
  }
}

.callout {
  margin: 18px 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(74, 32, 116, 0.06);
  border: 1px solid rgba(74, 32, 116, 0.14);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.callout .muted {
  color: rgba(17, 17, 17, 0.78);
}

.callout p {
  margin: 0;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(14px);
}

.header.is-on-hero .header__inner {
  background: rgba(14, 14, 16, 0.38);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.header.is-on-hero .nav__link {
  color: rgba(255, 255, 255, 0.9);
}

.header.is-on-hero .nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}

.header.is-on-hero .nav-toggle__line {
  background: rgba(255, 255, 255, 0.92);
}

.header.is-on-hero .brand img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}
.brand img {
  height: auto;
  width: 190px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  font-weight: 500;
  font-size: 0.98rem;
  color: rgba(17, 17, 17, 0.86);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav__link:hover {
  background: rgba(74, 32, 116, 0.06);
  color: var(--primary);
}

.nav__cta {
  margin-left: 6px;
}

.header .btn.btn--primary.nav__cta {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.header.is-on-hero .btn.btn--primary.nav__cta {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
}

.header:not(.is-on-hero) .btn.btn--primary.nav__cta {
  background: rgba(74, 32, 116, 0.1);
  color: var(--primary);
  border: 1px solid rgba(74, 32, 116, 0.22);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 12px;
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.nav-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(17, 17, 17, 0.85);
  border-radius: 3px;
}

.nav-toggle__line + .nav-toggle__line {
  margin-top: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 16px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.08s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  user-select: none;
  white-space: nowrap;
}

.btn--sm {
  padding: 10px 14px;
  font-size: 0.95rem;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 24px rgba(74, 32, 116, 0.22);
}

.btn--primary:hover {
  background: #3f1b64;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border-color: rgba(74, 32, 116, 0.32);
}

.btn--secondary:hover {
  background: rgba(74, 32, 116, 0.06);
}

.link {
  font-weight: 600;
  color: var(--primary);
  padding: 10px 6px;
}

.link:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 10% 20%, rgba(74, 32, 116, 0.55), rgba(74, 32, 116, 0) 55%),
    linear-gradient(to bottom, rgba(17, 17, 17, 0.65), rgba(17, 17, 17, 0.25));
}

.hero__content {
  position: relative;
  padding: 152px 0 82px;
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.hero__sub {
  margin: 0 0 22px;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.stat__icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
}

.stat__label {
  font-weight: 600;
  font-size: 0.95rem;
}

.section {
  padding: 64px 0;
}

/* ==========================================================================
   SECTION GROUPS
   --------------------------------------------------------------------------
   Conceito: Quando várias seções fazem parte do MESMO FLUXO de conteúdo
   (ex: hero + quote + atuação = tudo sobre a mesma pessoa/tema), usamos
   um .section-group para agrupá-las.
   
   Hierarquia de espaçamentos:
   - Entre GRUPOS diferentes → espaçamento grande (64px) = padding do grupo
   - Entre SEÇÕES dentro do mesmo grupo → espaçamento menor (24px)
   
   Quando usar:
   - Use .section-group para agrupar seções que são "continuação" do mesmo assunto
   - NÃO use para seções que mudam completamente de tema/contexto
   
   Modificadores:
   - .section-group--cta → aplica o gradiente de CTA no grupo todo
   ========================================================================== */

.section-group {
  padding: 64px 0;
}

.section-group > .section,
.section-group > .quote,
.section-group > .page-hero {
  padding: 24px 0;
}

.section-group > :first-child {
  padding-top: 0;
}

.section-group > :last-child {
  padding-bottom: 0;
}

/* Grupo com gradiente de CTA (background se estende pelo grupo todo) */
.section-group--cta {
  background:
    radial-gradient(1000px 480px at 10% 10%, rgba(74, 32, 116, 0.18), rgba(74, 32, 116, 0) 55%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

/* Quando dentro de um grupo com CTA, as sections internas não precisam de background próprio */
.section-group--cta > .section {
  background: transparent;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: rgba(17, 17, 17, 0.78);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.kicker--center {
  justify-content: center;
  width: 100%;
}

.kicker__line {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: rgba(17, 17, 17, 0.2);
}

.accent {
  color: var(--primary);
}


.section--tight {
  padding: 58px 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.section--cta {
  background:
    radial-gradient(1000px 480px at 10% 10%, rgba(74, 32, 116, 0.18), rgba(74, 32, 116, 0) 55%),
    linear-gradient(180deg, var(--bg-soft), #ffffff);
}

.section__title {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0 0 26px;
  color: var(--muted);
  max-width: 70ch;
}

.section__subtitle.center {
  margin-left: auto;
  margin-right: auto;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.logo {
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(17, 17, 17, 0.08);
  display: grid;
  place-items: center;
  color: rgba(17, 17, 17, 0.35);
  font-weight: 600;
}

/* Empresas atendidas — opção 2 (marquee / logos correndo) */
.companies-marquee {
  margin-top: 22px;
}

.companies-marquee__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 16px 0;
}

.companies-marquee__viewport::before,
.companies-marquee__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

.companies-marquee__viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), rgba(255, 255, 255, 0));
}

.companies-marquee__viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), rgba(255, 255, 255, 0));
}

.companies-marquee__track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: companies-marquee 50s linear infinite;
  will-change: transform;
}

.companies-marquee__viewport:hover .companies-marquee__track {
  animation-play-state: paused;
}

.company-logo {
  position: relative;
  z-index: 1;
  height: 64px;
  min-width: 180px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.company-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05) opacity(0.78);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.company-logo:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.12);
  border-color: rgba(74, 32, 116, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.company-logo:hover img {
  filter: none;
  transform: scale(1.03);
}

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

@media (max-width: 720px) {
  .companies-marquee__viewport::before,
  .companies-marquee__viewport::after {
    width: 70px;
  }

  .company-logo {
    min-width: 150px;
    height: 60px;
    padding: 10px 14px;
  }

  .companies-marquee__track {
    gap: 16px;
    animation-duration: 40s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .companies-marquee__track {
    animation: none;
  }

  .companies-marquee__viewport {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .companies-marquee__viewport::before,
  .companies-marquee__viewport::after {
    display: none;
  }
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas: "text media";
  gap: 34px;
  align-items: center;
}

.split__text {
  grid-area: text;
}

.split__media {
  grid-area: media;
}

.split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-areas: "media text";
}

.actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--bg);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.media-stack {
  position: relative;
  padding: 10px;
}

.media-stack__main img {
  aspect-ratio: 4 / 3;
}

.media-stack__float {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(44%, 220px);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.14);
  transform: translateX(6px);
}

.media-stack__float img {
  aspect-ratio: 1 / 1;
}

.floating-stat {
  position: absolute;
  left: -6px;
  top: 18px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(10px);
}

.floating-stat__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(74, 32, 116, 0.12);
  margin-bottom: 2px;
}

.floating-stat__label {
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(17, 17, 17, 0.7);
}

.floating-stat__value {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.media-card--video {
  position: relative;
}

.media-card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  font-size: 0.92rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cards--2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease;
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
}

.card h3 {
  margin: 10px 0 6px;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0 0 14px;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(74, 32, 116, 0.08);
  color: var(--primary);
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card__cta {
  margin-top: auto;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card__cta::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card__cta:hover::after {
  transform: translateX(2px);
}

.card--service {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 18px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.card--service .muted {
  transition: color 0.2s ease;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-card__tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: rgba(17, 17, 17, 0.72);
  background: rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.service-card__arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.8);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

/* ícone removido dos cards de Soluções (mantemos os cards mais limpos, como na referência) */

.service-card__media {
  margin-top: 1em;
  margin-left: -18px;
  margin-right: -18px;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.3);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.card--service:hover {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
  color: rgba(255, 255, 255, 0.98);
}

.card--service:hover .muted {
  color: rgba(255, 255, 255, 0.82);
}

.card--service:hover .service-card__tag {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.card--service:hover .service-card__arrow {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(2px);
}

.card--service:hover .service-card__media img {
  transform: scale(1.08);
}

.card--service:hover .card__cta {
  color: rgba(255, 255, 255, 0.95);
}

.card--service:hover .card__cta::after {
  transform: translateX(4px);
}

.card--service-featured {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.98);
}

.card--service-featured .muted {
  color: rgba(255, 255, 255, 0.82);
}

.card--service-featured .service-card__tag {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.card--service-featured .service-card__arrow {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
}

.card--service-featured .card__icon {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.card--service-featured .card__cta {
  color: rgba(255, 255, 255, 0.95);
}

.card--book {
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(74, 32, 116, 0.12), rgba(74, 32, 116, 0) 58%),
    rgba(255, 255, 255, 0.9);
}

/* Conteúdos (cards com imagem, estilo "blog") */
.card--content {
  padding: 14px;
  min-height: unset;
}

.content-card__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.04);
}

.content-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.content-card__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  color: rgba(17, 17, 17, 0.78);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(10px);
}

.card--content h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.card--content p {
  margin-bottom: 14px;
}

.content-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

.content-actions {
  display: flex;
  justify-content: center;
  margin-top: 3em;
}

/* Livros (destaque estrutural) */
.books-feature {
  margin: 20px 0 18px;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.96);
  background:
    radial-gradient(900px 380px at 18% 20%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 60%),
    linear-gradient(125deg, #3f1b64 0%, var(--primary) 45%, var(--primary-2) 100%);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  padding: 60px 22px;
}

.books-feature__covers {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: end center;
  padding: 18px 0 12px;
}

.book-cover {
  position: absolute;
  width: min(220px, 80%);
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(500px 220px at 20% 20%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.58)),
    var(--book-cover-image, none),
    rgba(0, 0, 0, 0.22);
  background-size: auto, auto, cover, auto;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  transform-origin: 50% 80%;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    filter 0.45s ease;
  opacity: 0.68;
  filter: saturate(0.9) contrast(1.02);
}

.book-cover:nth-child(1) {
  transform: translate(-48px, 10px) rotate(-8deg) scale(0.96);
}
.book-cover:nth-child(2) {
  transform: translate(32px, -6px) rotate(6deg) scale(0.94);
}
.book-cover:nth-child(3) {
  transform: translate(0px, 26px) rotate(1deg) scale(0.92);
}

.book-cover.is-active {
  opacity: 1;
  filter: none;
  transform: translate(0px, -10px) rotate(0deg) scale(1.02);
  z-index: 3;
}

.book-cover__pill {
  display: inlistyles.css  do nossone-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.book-cover__title {
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: 1.1rem;
  margin-top: 4px;
}

.book-cover__subtitle {
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.books-feature__content {
  display: grid;
  align-content: center;
  gap: 12px;
  padding-right: 6px;
}

.books-feature__eyebrow {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

.books-feature__title {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.books-feature__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 64ch;
}

.books-feature__actions {
  margin-top: 6px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.books-feature .btn.btn--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #3f1b64;
  border-color: rgba(255, 255, 255, 0.22);
}

.books-feature .btn.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.98);
}

.books-feature.is-paused .book-cover {
  transition-duration: 0.2s;
}

@media (max-width: 980px) {
  .books-feature {
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }

  .books-feature__covers {
    min-height: 300px;
    padding: 16px 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .book-cover {
    transition: none;
  }
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.step__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(74, 32, 116, 0.22);
  box-shadow: 0 0 0 7px rgba(74, 32, 116, 0.1);
}

.step__toggle {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: var(--radius);
}

.step__toggle:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.step__title {
  font-weight: 700;
  font-size: 1.02rem;
  color: rgba(17, 17, 17, 0.9);
}

.step__arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.78);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.step__arrow svg {
  width: 18px;
  height: 18px;
}

.step__panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 18px;
  transition:
    max-height 0.32s ease,
    opacity 0.22s ease,
    padding 0.22s ease;
}

.step__panel p {
  margin: 0;
  padding-bottom: 16px;
  padding-left: 32px;
}

.step.is-open {
  border-color: rgba(74, 32, 116, 0.24);
  background: var(--primary);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.step.is-open .step__dot {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.14);
}

.step.is-open .step__title {
  color: rgba(255, 255, 255, 0.98);
}

.step.is-open .step__arrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.96);
  transform: rotate(90deg);
}

.step.is-open .step__panel {
  opacity: 1;
  padding-top: 2px;
}

.step.is-open .muted {
  color: rgba(255, 255, 255, 0.86);
}

@media (prefers-reduced-motion: reduce) {
  .step__panel {
    transition: none;
  }

  .step__arrow {
    transition: none;
  }
}

.cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.cta h2 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 12px;
}

.contact__card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.contact__card--info {
  background:
    radial-gradient(800px 300px at 10% 0%, rgba(74, 32, 116, 0.11), rgba(74, 32, 116, 0) 55%),
    rgba(255, 255, 255, 0.88);
}

.contact__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.chip {
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(74, 32, 116, 0.06);
  border: 1px solid rgba(74, 32, 116, 0.16);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.92rem;
}

.contact__list {
  margin: 10px 0 10px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact__label {
  display: inline-block;
  min-width: 84px;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.86);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(1000px 500px at 15% 10%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #3f1b64 0%, var(--primary) 55%, var(--primary-2) 100%);
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.92);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__meta {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.84);
}

.footer__link {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.9;
}

.footer__link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  transition:
    transform 0.12s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.social-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.footer__to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    transform 0.12s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.footer__to-top:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
}

.footer__to-top:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "media";
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .cta__actions {
    justify-content: flex-start;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
  }

  .footer__left,
  .footer__right {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 160px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .header.is-on-hero .nav {
    background: rgba(14, 14, 16, 0.72);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .header.is-on-hero .nav__link {
    color: rgba(255, 255, 255, 0.92);
  }

  .header.is-on-hero .nav__link:hover {
    background: rgba(255, 255, 255, 0.1);
  }

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

  .nav__link {
    padding: 12px 12px;
  }

  .nav__cta {
    width: 100%;
    margin-left: 0;
  }

  .cards,
  .cards--2,
  .cards--3 {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding: 98px 0 56px;
  }

  .media-stack__float {
    right: 8px;
    bottom: -14px;
    width: min(46%, 190px);
    transform: none;
  }

  .floating-stat {
    left: 6px;
  }

  .media-stack--single-mobile .media-stack__float {
    display: none;
  }
}

/* ==========================================================================
   COMPONENTES REUTILIZÁVEIS PARA PÁGINAS INTERNAS
   ========================================================================== */

/* Hero interno (páginas institucionais) */
.page-hero {
  position: relative;
  padding: 140px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(900px 450px at 80% 20%, rgba(74, 32, 116, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.page-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-hero__text {
  max-width: 540px;
}

.page-hero__title {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-hero__lead {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
}

.page-hero__lead--highlight {
  font-size: 1.25rem;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-hero__lead--highlight em {
  font-style: italic;
}

.page-hero__text .muted {
  margin: 0 0 14px;
}

.page-hero__text .muted:last-of-type {
  margin-bottom: 0;
}

.page-hero__media {
  position: relative;
}

.page-hero__media .media-card {
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
}

.page-hero__media .media-card img {
  aspect-ratio: 4 / 5;
}

@media (max-width: 980px) {
  .page-hero {
    padding: 120px 0 56px;
  }

  .page-hero__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero__media {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Citação/Quote elegante */
.quote {
  position: relative;
  padding: 28px 0;
}

.quote__inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 40px;
  border-radius: var(--radius);
  background:
    radial-gradient(600px 300px at 10% 20%, rgba(74, 32, 116, 0.06), transparent 50%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 32, 116, 0.12);
  box-shadow: 0 16px 48px rgba(74, 32, 116, 0.08);
}

.quote__mark {
  position: absolute;
  top: -18px;
  left: 32px;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  pointer-events: none;
}

.quote__text {
  margin: 0;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
}

.quote__author {
  margin: 16px 0 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

@media (max-width: 720px) {
  .quote__inner {
    padding: 28px 24px;
  }

  .quote__mark {
    font-size: 3.5rem;
    top: -12px;
    left: 20px;
  }

  .quote__text {
    font-size: 1.05rem;
  }
}

/* Grid de destaques/números */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.highlights--3 {
  grid-template-columns: repeat(3, 1fr);
}

.highlight {
  padding: 28px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}

.highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
}

.highlight__number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1.1;
}

.highlight__label {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

@media (max-width: 980px) {
  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .highlights {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .highlight {
    padding: 22px 16px;
  }

  .highlight__number {
    font-size: 1.8rem;
  }
}

/* Stat flutuante para page-hero */
.page-hero__stat {
  position: absolute;
  left: -20px;
  bottom: 40px;
  display: grid;
  gap: 2px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(10px);
}

.page-hero__stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.page-hero__stat-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .page-hero__stat {
    left: auto;
    right: 10px;
    bottom: 20px;
    padding: 12px 16px;
  }

  .page-hero__stat-number {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   PÁGINA DE SOLUÇÕES
   ========================================================================== */

/* Page Hero Compacto */
.page-hero--compact {
  padding: 140px 0 48px;
}

.page-hero__intro {
  max-width: 720px;
  margin-bottom: 40px;
}

.page-hero--compact .page-hero__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 14px;
}

.page-hero--compact .page-hero__lead {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Navegação por âncoras */
.solutions-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.solutions-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.solutions-nav__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
  border-color: rgba(74, 32, 116, 0.2);
  background: rgba(255, 255, 255, 1);
}

.solutions-nav__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(74, 32, 116, 0.08);
  color: var(--primary);
  transition: background 0.2s ease, transform 0.2s ease;
}

.solutions-nav__icon svg {
  width: 24px;
  height: 24px;
}

.solutions-nav__item:hover .solutions-nav__icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.solutions-nav__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

@media (max-width: 980px) {
  .solutions-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .page-hero--compact {
    padding: 120px 0 32px;
  }

  .solutions-nav {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .solutions-nav__item {
    padding: 18px 12px;
  }

  .solutions-nav__icon {
    width: 40px;
    height: 40px;
  }

  .solutions-nav__icon svg {
    width: 20px;
    height: 20px;
  }

  .solutions-nav__label {
    font-size: 0.85rem;
  }
}

/* Section Header com CTA */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.section-header__text {
  flex: 1;
}

.section-header__text .section__subtitle {
  margin-bottom: 0;
}

.section-header__cta {
  flex-shrink: 0;
  padding-top: 8px;
}

@media (max-width: 720px) {
  .section-header {
    flex-direction: column;
    gap: 16px;
  }

  .section-header__cta {
    padding-top: 0;
  }
}

/* Section Footer */
.section-footer {
  margin-top: 48px;
  padding: 24px 28px;
  background: rgba(74, 32, 116, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(74, 32, 116, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.section-footer .muted {
  margin: 0;
}

@media (max-width: 720px) {
  .section-footer {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }
}

/* Theme Grid (Cards de Temas/Palestras) */
.theme-grid {
  display: grid;
  gap: 14px;
}

/* Theme Card */
.theme-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.theme-card:hover {
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
}

.theme-card.is-open {
  border-color: rgba(74, 32, 116, 0.2);
  box-shadow: 0 18px 46px rgba(74, 32, 116, 0.12);
}

.theme-card__header {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.theme-card__header:hover {
  background: rgba(74, 32, 116, 0.03);
}

.theme-card__header:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: -3px;
}

.theme-card__number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(74, 32, 116, 0.08);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.theme-card.is-open .theme-card__number {
  background: var(--primary);
  color: white;
}

.theme-card__info {
  min-width: 0;
}

.theme-card__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.theme-card__subtitle {
  margin: 4px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.theme-card__arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.05);
  color: var(--muted);
  transition:
    transform 0.25s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.theme-card__arrow svg {
  width: 18px;
  height: 18px;
}

.theme-card.is-open .theme-card__arrow {
  transform: rotate(180deg);
  background: rgba(74, 32, 116, 0.1);
  color: var(--primary);
}

/* Theme Card Content (Expansível) */
.theme-card__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.theme-card__body {
  padding: 0 24px 24px;
  padding-left: 86px;
}

.theme-card__body p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.theme-card__body p:last-child {
  margin-bottom: 0;
}

.theme-card__highlight {
  margin: 18px 0;
  padding: 18px 20px;
  border-radius: 14px;
  background:
    radial-gradient(600px 200px at 10% 20%, rgba(74, 32, 116, 0.08), transparent 50%),
    rgba(74, 32, 116, 0.04);
  border: 1px solid rgba(74, 32, 116, 0.1);
}

.theme-card__highlight p {
  margin: 0;
  font-size: 1.02rem;
}

.theme-card__list {
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.theme-card__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.theme-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.6;
}

.theme-card__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .theme-card__header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 16px 18px;
  }

  .theme-card__number {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .theme-card__title {
    font-size: 1rem;
  }

  .theme-card__subtitle {
    font-size: 0.85rem;
  }

  .theme-card__body {
    padding: 0 18px 20px;
    padding-left: 18px;
  }

  .theme-card__arrow {
    width: 32px;
    height: 32px;
  }

  .theme-card__arrow svg {
    width: 16px;
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-card__content {
    transition: none;
  }

  .theme-card__arrow {
    transition: none;
  }
}

/* Feature Cards (Programas, Team Buildings) */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.feature-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(74, 32, 116, 0.08);
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.feature-card .muted {
  margin: 0;
}

@media (max-width: 980px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
}

/* Check List (Mentoria) */
.check-list {
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(74, 32, 116, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a2074' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.check-list li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   PROGRAMAS E TREINAMENTOS
   ========================================================================== */

/* Intro com destaque */
.programs-intro {
  margin-bottom: 32px;
}

.programs-intro__highlight {
  padding: 24px 28px;
  border-radius: var(--radius);
  background:
    radial-gradient(800px 300px at 10% 20%, rgba(74, 32, 116, 0.08), transparent 50%),
    rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(74, 32, 116, 0.12);
  box-shadow: 0 12px 32px rgba(74, 32, 116, 0.06);
}

.programs-intro__highlight p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Grid de Temas */
.programs-themes {
  margin-top: 32px;
}

.programs-themes__title {
  margin: 0 0 18px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.programs-themes__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.04);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.program-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(74, 32, 116, 0.1);
  border-color: rgba(74, 32, 116, 0.2);
  background: rgba(255, 255, 255, 1);
  color: var(--primary);
}

@media (max-width: 540px) {
  .programs-themes__grid {
    gap: 8px;
  }

  .program-tag {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   TEAM BUILDINGS
   ========================================================================== */

/* Grid de Objetivos */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.objective-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.objective-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
  border-color: rgba(74, 32, 116, 0.15);
}

.objective-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(74, 32, 116, 0.08);
  color: var(--primary);
  transition: background 0.2s ease, color 0.2s ease;
}

.objective-card__icon svg {
  width: 24px;
  height: 24px;
}

.objective-card:hover .objective-card__icon {
  background: var(--primary);
  color: white;
}

.objective-card__content h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.objective-card__content .muted {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .objectives-grid {
    grid-template-columns: 1fr;
  }

  .objective-card {
    padding: 20px;
  }
}

/* Informações do TB */
.tb-info {
  margin-bottom: 32px;
}

.tb-info__text {
  padding: 24px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
}

.tb-info__text p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.tb-info__text p:last-child {
  margin-bottom: 0;
}

/* Processo do TB (com imagem) */
.tb-process {
  margin-top: 40px;
}

.tb-process__title {
  margin: 0 0 20px;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
}

.tb-process__image {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 20px 24px;
}

.tb-process__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

.tb-process .callout {
  margin-top: 20px;
}

/* ================================================
   MENTORIA
   ================================================ */

/* Intro da Mentoria */
.mentoria-intro {
  margin-bottom: 32px;
}

.mentoria-intro__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 800px;
}

/* Grid de Competências */
.competencias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.competencia-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.competencia-card:hover {
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
  transform: translateY(-2px);
  border-color: rgba(74, 32, 116, 0.12);
}

.competencia-card__number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(74, 32, 116, 0.08);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: -0.02em;
}

.competencia-card__content h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.competencia-card__content .muted {
  margin: 0;
  font-size: 0.9rem;
}

/* Conceito de Liderança Integral */
.mentoria-conceito {
  margin-bottom: 48px;
}

.mentoria-conceito__highlight {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(74, 32, 116, 0.06) 0%, rgba(74, 32, 116, 0.02) 100%);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin-bottom: 28px;
}

.mentoria-conceito__highlight p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
}

.mentoria-conceito__text {
}

.mentoria-conceito__text p {
  margin-bottom: 12px;
}

.mentoria-conceito__text p:last-child {
  margin-bottom: 0;
}

/* Processo da Mentoria (6As) */
.mentoria-process {
  margin-top: 40px;
}

.mentoria-process__title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
}

.mentoria-process__image {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
  margin: 24px 0 20px;
  padding: 20px 24px;
}

.mentoria-process__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

/* Callout centralizado */
.callout--center {
  text-align: center;
}

.callout--center p {
  margin: 0;
}

/* Helper para texto centralizado */
.center {
  text-align: center;
}

/* Responsivo Mentoria */
@media (max-width: 720px) {
  .competencias-grid {
    grid-template-columns: 1fr;
  }

  .mentoria-conceito__highlight {
    padding: 22px 24px;
  }

  .mentoria-process__image {
    padding: 16px 18px;
  }
}

/* =========================================
   PÁGINA DE CONTATO
   ========================================= */

/* Page Hero compacto para contato */
.page-hero--compact {
  padding: 120px 0 40px;
  background: var(--bg);
}

.page-hero__content--center {
  display: block;
  text-align: center;
}

.page-hero__text--center {
  max-width: 640px;
  margin: 0 auto;
}

.page-hero__text--center .page-hero__title {
  margin-bottom: 16px;
}

.page-hero__text--center .page-hero__lead {
  color: var(--muted);
}

/* Grid de contato */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Formulário wrapper */
.contact-form-wrapper {
  background: var(--bg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-soft);
}

/* Formulário */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.form-group label .required {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--ring);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235b5b5b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group--submit {
  margin-top: 8px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}

.form-note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note a:hover {
  text-decoration: none;
}

/* Informações de contato (sidebar) */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__card {
  background: var(--bg-soft);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-info__card h2,
.contact-info__card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.contact-info__card > p {
  margin: 0 0 20px;
}

.contact-info__card--highlight {
  background: linear-gradient(135deg, rgba(74, 32, 116, 0.06) 0%, rgba(106, 46, 168, 0.04) 100%);
  border-color: rgba(74, 32, 116, 0.12);
}

/* Lista de contatos */
.contact-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-info__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-info__value:hover {
  color: var(--primary);
}

/* Chips de soluções */
.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.chip {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(74, 32, 116, 0.08);
  border-radius: 999px;
}

/* Social na página de contato */
.contact-info__social {
  text-align: center;
  padding-top: 8px;
}

.contact-info__social p {
  margin: 0 0 14px;
  font-size: 0.92rem;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-btn--outline {
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--muted);
}

.social-btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(74, 32, 116, 0.04);
}

/* Responsivo - Contato */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    order: -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-info__social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .page-hero--compact {
    padding: 100px 0 32px;
  }

  .contact-form-wrapper {
    padding: 28px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-info__card {
    padding: 22px;
  }
}

@media (max-width: 540px) {
  .page-hero--compact {
    padding: 90px 0 24px;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }
}

/* Página de Obrigado (confirmação de envio) */
.thank-you-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
}

.thank-you-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, rgba(74, 32, 116, 0.1) 0%, rgba(106, 46, 168, 0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.thank-you-content h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.thank-you-lead {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.6;
}

.thank-you-content .muted {
  margin: 0 0 32px;
}

.thank-you-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 540px) {
  .thank-you-page {
    padding: 100px 0 60px;
  }

  .thank-you-icon {
    width: 68px;
    height: 68px;
  }

  .thank-you-icon svg {
    width: 34px;
    height: 34px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   PÁGINA DE LIVROS
   ========================================================================== */

/* Page Hero Centered */
.page-hero__intro--centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-hero__intro--centered .page-hero__lead {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

/* Book Showcase */
.book-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.book-showcase--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.book-showcase--reverse .book-showcase__visual {
  order: 1;
}

.book-showcase--reverse .book-showcase__content {
  order: 0;
}

.book-showcase__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* Book Card - Efeito simples com inclinação suave */
.book-card {
  position: relative;
  width: 240px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
}

.book-card img {
  width: 100%;
  height: auto;
  display: block;
}

.book-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.book-showcase:hover .book-card {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.2),
    0 15px 30px rgba(0, 0, 0, 0.15);
}

.book-showcase:hover .book-card::after {
  opacity: 1;
}

.book-showcase--reverse:hover .book-card {
  transform: translateY(-8px) rotate(2deg);
}

/* Book Showcase Badge */
.book-showcase__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(74, 32, 116, 0.3);
  animation: badge-float 3s ease-in-out infinite;
}

.book-showcase__badge--alt {
  background: linear-gradient(135deg, #1a8754 0%, #20a663 100%);
  box-shadow: 0 8px 24px rgba(26, 135, 84, 0.3);
}

.book-showcase__badge-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-showcase__badge-icon svg {
  width: 16px;
  height: 16px;
}

@keyframes badge-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Book Showcase Content */
.book-showcase__content {
  padding: 20px 0;
}

.book-showcase__tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(74, 32, 116, 0.08);
  border: 1px solid rgba(74, 32, 116, 0.12);
  margin-bottom: 14px;
}

.book-showcase__title {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.book-showcase__subtitle {
  margin: 0 0 20px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary);
}

.book-showcase__description {
  margin-bottom: 20px;
}

.book-showcase__description p {
  margin: 0 0 12px;
  line-height: 1.7;
}

.book-showcase__description p:last-child {
  margin-bottom: 0;
}

.book-showcase__highlight {
  margin: 24px 0;
  padding: 20px 24px;
  border-radius: 16px;
  background:
    radial-gradient(600px 200px at 10% 20%, rgba(74, 32, 116, 0.08), transparent 50%),
    rgba(74, 32, 116, 0.04);
  border: 1px solid rgba(74, 32, 116, 0.12);
}

.book-showcase__highlight p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Dimensions Grid (O Fator Confiança) */
.book-showcase__dimensions {
  margin: 24px 0;
}

.book-showcase__dimensions-title {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dimension-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.dimension-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dimension-item__number {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
}

.dimension-item__label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

/* Book Showcase Actions */
.book-showcase__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Ebook Feature */
.ebook-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(900px 400px at 20% 20%, rgba(74, 32, 116, 0.12), transparent 60%),
    linear-gradient(135deg, #3f1b64 0%, var(--primary) 50%, var(--primary-2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(74, 32, 116, 0.25);
  color: white;
}

.ebook-feature__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.ebook-mockup {
  position: relative;
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ebook-feature:hover .ebook-mockup {
  transform: translateY(-10px) scale(1.02);
}

.ebook-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.ebook-mockup__glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.ebook-feature:hover .ebook-mockup__glow {
  opacity: 1;
}

.ebook-feature__free-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  animation: badge-float 3s ease-in-out infinite;
}

.ebook-feature__content {
  padding: 10px 0;
}

.ebook-feature__tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 14px;
}

.ebook-feature__title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.ebook-feature__subtitle {
  margin: 0 0 18px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.ebook-feature__description {
  margin-bottom: 24px;
}

.ebook-feature__description .muted {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

.ebook-feature__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn--lg {
  padding: 18px 28px;
  font-size: 1.05rem;
}

.btn--lg svg {
  width: 20px;
  height: 20px;
}

.ebook-feature .btn--primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ebook-feature .btn--primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.ebook-feature__link-hint {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.ebook-feature__link-hint a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ebook-feature__link-hint a:hover {
  color: white;
}

/* Responsivo - Livros */
@media (max-width: 980px) {
  .book-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .book-showcase--reverse .book-showcase__visual,
  .book-showcase--reverse .book-showcase__content {
    order: unset;
  }

  .book-showcase__visual {
    padding: 30px 20px;
  }

  .book-card {
    width: 200px;
  }

  .ebook-feature {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px;
  }

  .ebook-feature__visual {
    order: -1;
    padding: 20px;
  }

  .ebook-mockup {
    width: 180px;
  }
}

@media (max-width: 720px) {
  .book-showcase__visual {
    padding: 20px 10px;
  }

  .book-card {
    width: 180px;
  }

  .book-showcase__badge {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .book-showcase__title {
    font-size: 1.6rem;
  }

  .book-showcase__subtitle {
    font-size: 1.05rem;
  }

  .dimensions-grid {
    grid-template-columns: 1fr;
  }

  .ebook-feature {
    padding: 28px 22px;
  }

  .ebook-feature__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 540px) {
  .book-card {
    width: 160px;
  }

  .book-showcase__actions {
    flex-direction: column;
    width: 100%;
  }

  .book-showcase__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .ebook-feature__actions {
    width: 100%;
  }

  .ebook-feature__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .book-card {
    transition: none;
  }

  .book-showcase:hover .book-card {
    transform: none;
  }

  .book-showcase__badge,
  .ebook-feature__free-badge {
    animation: none;
  }

  .ebook-mockup {
    transition: none;
  }

  .ebook-feature:hover .ebook-mockup {
    transform: none;
  }
}

