:root {
  --bg: #fcf8ff;
  --surface: #ffffff;
  --surface-soft: #f7f0fc;
  --text: #2a123f;
  --muted: #5a496d;
  --line: #eadcf8;

  --accent: #d91fb5;
  --accent-hover: #b31789;
  --accent-soft: #f4c8eb;

  --purple-deep: #4b216b;
  --purple-main: #8a38d6;
  --purple-soft: #e9dbf8;

  --placeholder: #eadff5;
  --shadow: 0 18px 45px rgba(74, 33, 107, 0.10);
  --shadow-soft: 0 12px 28px rgba(74, 33, 107, 0.08);

  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1400px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  padding-top: 146px;
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.site-shell {
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg);
  box-shadow: none;
}

/* BARRA DE URGÊNCIA */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: linear-gradient(135deg, #fd0c20 0%, #e3172f 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(227, 23, 47, 0.26);
}

.urgency-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 4px 0;
}

.urgency-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.urgency-text strong {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  animation: urgencyPulse 1.8s ease-in-out infinite;
  transform-origin: center;
}

.urgency-timer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-box {
  min-width: 66px;
  padding: 7px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
}

.time-box strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
}

.time-box span {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.topbar {
  position: fixed;
  top: 54px;
  left: 0;
  width: 100%;
  z-index: 998;
  background: rgba(252, 248, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--purple-deep);
}

.brand span {
  color: var(--purple-main);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  font-size: 1.05rem;
}

.nav-links a {
  position: relative;
  color: var(--purple-deep);
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.btn-outline,
.btn-primary {
  transition: 0.25s ease;
  font: inherit;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--purple-deep);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 1rem;
}

.btn-outline:hover {
  border-color: var(--purple-main);
  color: var(--purple-main);
  background: #fff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ea2cbc 0%, #c81d9e 100%);
  color: #fff;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 12px 28px rgba(217, 31, 181, 0.28),
    0 0 0 1px rgba(255,255,255,0.10) inset;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d91fb5 0%, #b31789 100%);
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(217, 31, 181, 0.34),
    0 0 0 1px rgba(255,255,255,0.18) inset;
}

.btn-hero {
  min-width: 390px;
  min-height: 86px;
  padding: 18px 26px;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow:
    0 20px 40px rgba(217, 31, 181, 0.32),
    0 0 0 1px rgba(255,255,255,0.12) inset;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.btn-hero-text {
  white-space: nowrap;
}

.btn-hero-badge {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.20);
  white-space: nowrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid var(--whatsapp);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.menu-toggle {
  display: none;
}

/* HERO */
.hero {
  position: relative;
  padding: 56px 0 34px;
  overflow: hidden;
  background:
  linear-gradient(90deg, #ece1f8 0%, #e4d3f4 22%, #cfafe8 48%, #bf98e0 72%, #d5bceb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.08) 10%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 72% 26%, rgba(154, 92, 231, 0.18) 0%, rgba(154, 92, 231, 0.08) 14%, rgba(154, 92, 231, 0) 34%),
    radial-gradient(circle at 86% 74%, rgba(130, 76, 212, 0.20) 0%, rgba(130, 76, 212, 0.08) 14%, rgba(130, 76, 212, 0) 34%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 18%, rgba(255,255,255,0) 36%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 16%, rgba(255,255,255,0) 36%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
  min-height: 820px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
  color: var(--purple-deep);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.1vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 760px;
  color: var(--purple-deep);
}

.hero-copy {
  max-width: 640px;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-actions-secondary {
  margin-bottom: 0;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c7e8 0%, #dbc5f6 100%);
  border: 3px solid #fff;
  margin-left: -10px;
  box-shadow: var(--shadow-soft);
}

.avatar:first-child {
  margin-left: 0;
}

.social-proof strong {
  display: block;
  font-size: 1.08rem;
  color: var(--purple-deep);
}

.social-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 70, 212, 0.18) 0%, rgba(126, 70, 212, 0.08) 34%, rgba(126, 70, 212, 0) 68%);
  z-index: 0;
  filter: blur(16px);
}

.hero-visual::after {
  display: none;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-book-image {
  width: min(100%, 540px);
  height: auto;
  display: block;
  box-shadow:
    0 30px 60px rgba(74, 33, 107, 0.24),
    0 12px 24px rgba(74, 33, 107, 0.12);
}
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbf5ff;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 36px;
  padding: 16px 0;
  min-width: max-content;
  animation: ticker 22s linear infinite;
  font-weight: 800;
  color: var(--purple-deep);
}

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

@keyframes urgencyPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.96;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}

.section-head h2 {
  position: relative;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 860px;
  color: var(--purple-deep);
  padding-bottom: 14px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d91fb5 0%, #8a38d6 100%);
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.image-box {
  min-height: 460px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f6eefc 0%, #efe4f8 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.image-box::before {
  content: "ÁREA DE IMAGEM";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a5a9e;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-content {
  display: grid;
  gap: 22px;
}

.about-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.stat-card,
.book-card,
.review-card,
.benefit-card,
.newsletter-box {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fcf8ff 100%);
  border: 1px solid rgba(138, 56, 214, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(74, 33, 107, 0.08);
  overflow: hidden;
}

.book-card::before,
.review-card::before,
.benefit-card::before,
.newsletter-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.95) 0%,
    rgba(234,220,248,0.9) 30%,
    rgba(217,31,181,0.18) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.book-card::after,
.benefit-card::after,
.review-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217,31,181,0.45), rgba(138,56,214,0.35));
}

.book-card,
.benefit-card,
.review-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.book-card:hover,
.benefit-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(74, 33, 107, 0.12);
  border-color: rgba(217, 31, 181, 0.18);
}

.stat-card {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fcf8ff 100%);
  border: 1px solid rgba(138, 56, 214, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(74, 33, 107, 0.08);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.98) 0%,
    rgba(233,219,248,0.95) 25%,
    rgba(217,31,181,0.24) 58%,
    rgba(138,56,214,0.22) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(74, 33, 107, 0.12);
  border-color: rgba(217, 31, 181, 0.18);
}

.stat-card strong {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--purple-deep);
  position: relative;
  z-index: 1;
}

.stat-card span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

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

.book-card {
  padding: 18px;
}

.book-thumb {
  aspect-ratio: 0.73 / 1;
  background: linear-gradient(180deg, #f4eafb 0%, #eadcf8 100%);
  border-radius: 14px;
  margin-bottom: 16px;
  position: relative;
}

.module-1::before,
.module-2::before,
.module-3::before,
.bonus::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a5a9e;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.module-1::before {
  content: "MÓDULO 01";
}

.module-2::before {
  content: "MÓDULO 02";
}

.module-3::before {
  content: "MÓDULO 03";
}

.bonus::before {
  content: "BÔNUS";
}

.book-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--purple-deep);
}

.book-card p {
  font-size: 0.98rem;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.review-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f0e2fa 0%, #e7d6f8 100%);
  flex-shrink: 0;
}

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

.review-text {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 560px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 28px;
  min-height: 220px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3d1ea 0%, #d9baf7 100%);
  box-shadow: 0 10px 20px rgba(138, 56, 214, 0.10);
}

.benefit-card h3 {
  font-size: 1.18rem;
  color: var(--purple-deep);
}

.benefit-card p {
  color: var(--muted);
  font-size: 1rem;
}

.newsletter {
  background: linear-gradient(180deg, #fcf8ff 0%, #f7f0fc 100%);
}

.newsletter-box {
  padding: 38px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, #eadcf8 0%, #ddc8f3 100%);
  border: 1px solid #d2b5ee;
}

.newsletter-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  color: var(--purple-deep);
}

.newsletter-copy p {
  color: var(--muted);
  max-width: 520px;
  font-size: 1.05rem;
}

.footer {
  padding: 30px 0;
  background: #fcf8ff;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.98rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  body {
    padding-top: 174px;
  }

  .hero-grid,
  .about-grid,
  .reviews-grid,
  .newsletter-box {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 560px;
  }

  .book-main {
    width: min(100%, 420px);
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 174px;
  }

  .urgency-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
  }

  .urgency-text {
    text-align: center;
    justify-content: center;
  }

  .urgency-text strong {
    font-size: 0.98rem;
  }

  .urgency-timer {
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar {
    top: 82px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--purple-deep);
    border-radius: 2px;
  }

  .nav-links,
  .nav-actions .btn-outline {
    display: none;
  }

  .nav-links.is-open {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .hero {
    padding-top: 28px;
  }

  section {
    padding: 78px 0;
  }

  .btn-hero {
    min-width: 300px;
    min-height: 70px;
    font-size: 1.08rem;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 184px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.7rem);
    line-height: 1.12;
  }

  .books-grid,
  .benefits-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
  }

  .hero-visual,
  .image-box,
  .review-card {
    min-height: 320px;
  }

  .book-main {
    width: min(100%, 340px);
  }

  .btn-hero,
  .btn-whatsapp {
    width: 100%;
    min-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .urgency-inner {
    gap: 8px;
    padding: 8px 0;
  }

  .urgency-text strong {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .time-box {
    min-width: 56px;
    padding: 6px 8px;
  }

  .time-box strong {
    font-size: 0.9rem;
  }

  .topbar {
    top: 92px;
  }
}


.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-visual {
  min-height: 850px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.hero-book-image {
  height: 680px;
  width: auto;
  display: block;
  box-shadow: none !important;
  margin-left: -10px !important;
}
.hero-visual,
.hero-visual::before,
.hero-visual::after {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.book-thumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  width: 100%;
}

.module-label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7a56a7;
  text-transform: uppercase;
  line-height: 1.1;
}

.book-thumb i {
  font-size: 2rem;
  color: #6f3c97;
  line-height: 1;
  flex-shrink: 0;
  display: block;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-profile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.review-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-profile strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 4px;
  color: #2f1852;
}

.review-role {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: #6a4d8f;
}

.review-text {
  margin-top: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4c3b63;
}

.benefit-icon,
.review-avatar {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0;
}

.benefit-icon i,
.review-avatar i {
  font-size: 1.9rem;
  color: #6f3c97;
  line-height: 1;
  display: block;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}


.book-card {
  display: flex;
  flex-direction: column;
}

.book-thumb {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #ddd3e7;
}

.module-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.module-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #793ac5;
  text-transform: uppercase;
  line-height: 1.1;
}

.book-card h3 {
  margin-top: 0;
}

.book-thumb {
  width: 100%;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #ddd3e7;
}

.module-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-thumb .module-label {
  display: none !important;
}

.book-card > .module-label {
  display: inline-block !important;
  position: static !important;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7a56a7;
  text-transform: uppercase;
  line-height: 1.1;
}

.ebook-highlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
  margin-top: 28px;
}

.ebook-highlight-left {
  padding-right: 10px;
}

.ebook-mini-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b13bcf;
}

.ebook-highlight-left h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.15;
  color: #2f1852;
}

.ebook-highlight-left p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #4c3b63;
  max-width: 680px;
}

.ebook-highlight-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ebook-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #dfb8f3;
  border-radius: 18px;
  box-shadow: none;
}

.ebook-point i {
  font-size: 1.4rem;
  color: #6f3c97;
  margin-top: 4px;
  min-width: 24px;
}

.ebook-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #2f1852;
}

.ebook-point span {
  display: block;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #5b4a73;
}

.ebook-actions {
  margin-top: 34px;
}

@media (max-width: 980px) {
  .ebook-highlight {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ebook-highlight-left h3 {
    font-size: 1.7rem;
  }
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 26px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid #e4c9f4;
  border-radius: 22px;
  padding: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #b13bcf;
  font-size: 1rem;
}

.testimonial-text {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: #4c3b63;
}

.testimonial-name {
  font-size: 1rem;
  color: #2f1852;
}

.attendance-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  margin-top: 26px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #e4c9f4;
}

.attendance-content h3 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.15;
  color: #2f1852;
}

.attendance-content p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4c3b63;
  max-width: 700px;
}

.attendance-actions {
  margin-top: 28px;
  justify-content: flex-start;
}

.attendance-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.attendance-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid #e4c9f4;
  border-radius: 18px;
}

.attendance-point i {
  font-size: 1.2rem;
  color: #6f3c97;
  min-width: 22px;
}

.attendance-point span {
  font-size: 1rem;
  line-height: 1.5;
  color: #4c3b63;
}

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

  .attendance-box {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .attendance-content h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  /* ===== FAIXA VERMELHA ===== */
  body {
    padding-top: 100px !important;
  }

  .urgency-inner {
    min-height: 44px;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    flex-wrap: nowrap;
  }

  .urgency-text {
    flex: 0 1 auto;
  }

  .urgency-text strong {
    font-size: 0 !important;
    line-height: 1;
    animation: none;
  }

  .urgency-text strong::after {
    content: "OFERTA LIMITADA!!";
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
  }

  .urgency-timer {
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .urgency-timer .time-box:first-child {
    display: none !important;
  }

  .time-box {
    min-width: 40px;
    padding: 4px 3px;
    border-radius: 10px;
  }

  .time-box strong {
    font-size: 0.72rem;
  }

  .time-box span {
    font-size: 0.48rem;
    margin-top: 2px;
  }

  /* ===== HEADER MOBILE ===== */
  .topbar {
    top: 44px !important;
  }

  .nav {
    min-height: 62px;
    gap: 10px;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions .btn-outline {
    display: none !important;
  }

  .nav-actions .btn-primary {
    min-width: auto !important;
    width: auto !important;
    padding: 9px 15px !important;
    font-size: 0 !important;
    line-height: 1 !important;
    white-space: nowrap;
    border-radius: 999px;
  }

  .nav-actions .btn-primary::after {
    content: "Quero receber o e-book";
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1;
  }

  /* ===== HERO MOBILE ===== */
  .site-shell,
  main,
  .hero {
    margin-top: 0 !important;
  }

  .hero {
    padding: 0 0 24px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 22px;
    min-height: auto;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: auto !important;
    padding-top: 0;
  }

  .hero-book-image {
    width: min(100%, 320px) !important;
    height: auto !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  .eyebrow {
    display: none !important;
  }

  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.05;
    margin-bottom: 16px;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
  }

  .btn-hero,
  .btn-whatsapp {
    width: 100% !important;
    min-width: 100% !important;
  }

  .btn-hero {
    min-height: 66px;
    padding: 14px 16px;
    font-size: 0.96rem;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .btn-hero-text {
    white-space: normal;
  }

  .btn-whatsapp {
    min-height: 54px;
    font-size: 0.94rem;
  }

  .social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* ===== SEGUNDA IMAGEM: CARDS +10 / 100% / 1º PASSO ===== */
  .stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stat-card {
    padding: 18px;
    text-align: center;
  }

  .stat-card strong,
  .stat-card span {
    text-align: center;
  }

  .stat-card strong {
    font-size: 1.7rem;
    margin-bottom: 8px;
  }

  /* ===== TERCEIRA IMAGEM: SEÇÃO E-BOOK ===== */
  .section-head {
    gap: 14px;
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head h2 {
    font-size: 1.95rem;
    line-height: 1.02;
    max-width: 100%;
    padding-bottom: 10px;
  }

  .section-head h2::after {
    width: 64px;
    height: 3px;
  }

  .section-head p {
    font-size: 0.96rem;
    max-width: 100%;
  }

  .ebook-highlight {
    grid-template-columns: 1fr !important;
    gap: 22px;
    margin-top: 18px;
  }

  .ebook-highlight-left {
    padding-right: 0;
  }

  .ebook-mini-label {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }

  .ebook-highlight-left h3 {
    font-size: 1.45rem;
    line-height: 1.1;
    margin-bottom: 12px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .ebook-highlight-left p {
    font-size: 0.98rem;
    line-height: 1.75;
    max-width: 100%;
  }

  .ebook-highlight-right {
    gap: 12px;
  }

  .ebook-point {
    padding: 14px;
    gap: 12px;
    border-radius: 14px;
  }

  .ebook-point i {
    font-size: 1.05rem;
    min-width: 18px;
  }

  .ebook-point strong {
    font-size: 0.96rem;
  }

  .ebook-point span {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .ebook-actions {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  /* ===== QUARTA IMAGEM: NEWSLETTER / BOX ROXA ===== */
  .newsletter-box {
    grid-template-columns: 1fr !important;
    padding: 20px;
    gap: 16px;
  }

  .newsletter-copy h2 {
    font-size: 1.55rem;
    line-height: 1.05;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .newsletter-copy p {
    font-size: 0.96rem;
    line-height: 1.7;
    max-width: 100%;
  }

  .newsletter .hero-actions,
  .hero-actions-secondary {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* ===== GERAL MOBILE ===== */
  .container {
    width: min(100% - 20px, var(--container));
  }

  section {
    padding: 58px 0;
  }

  .about-grid,
  .books-grid,
  .benefits-grid,
  .testimonials-grid,
  .attendance-box {
    grid-template-columns: 1fr;
  }

  .book-card,
  .benefit-card,
  .testimonial-card {
    padding: 18px;
  }

  .book-thumb {
    height: 220px;
  }

  .attendance-content h3 {
    font-size: 1.45rem;
    line-height: 1.1;
  }

  .attendance-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-book-image {
    width: min(100%, 290px) !important;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .nav-actions .btn-primary::after {
    font-size: 0.8rem;
  }

  .section-head h2 {
    font-size: 1.8rem;
  }

  .ebook-highlight-left h3,
  .newsletter-copy h2,
  .attendance-content h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .hero-book-image {
    width: min(100%, 380px) !important;
    height: auto !important;
    margin: 0 auto !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .hero-book-image {
    width: min(100%, 345px) !important;
  }
}

.avatar:nth-child(1) {
  background: url("1.png") center/cover no-repeat;
}

.avatar:nth-child(2) {
  background: url("2.png") center/cover no-repeat;
}

.avatar:nth-child(3) {
  background: url("3.png") center/cover no-repeat;
}

.avatar:nth-child(4) {
  background: url("4.png") center/cover no-repeat;
}


.image-box {
  min-height: 460px;
  height: 460px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f6eefc 0%, #efe4f8 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box::before {
  display: none;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 75px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .nav-actions .btn-primary {
    padding: 13px 24px !important;
    min-height: 46px;
  }

  .nav-actions .btn-primary::after {
    font-size: 0.94rem;
  }
}


#sobre,
#ebook,
#atendimentos {
  background: #fcf8ff;
}

#areas,
#autoridade,

#avaliacoes
 {
  background: #f5f2f7;
}



/* ===== CORREÇÃO DO HEADER ===== */

/* Remove qualquer espaço no topo da página */
html,
body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Remove qualquer resquício da faixa antiga */
.urgency-bar {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/* Garante que o site comece no topo */
.site-shell {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Header normal: fica no topo, mas NÃO fica preso ao rolar */
.topbar {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 10 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  transform: none !important;
}

/* Ajuste interno do header */
.nav {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Remove qualquer compensação antiga no hero */
.hero {
  margin-top: 0 !important;
}

/* ===== HEADER FIXO ACOMPANHANDO O SCROLL ===== */

/* Remove qualquer espaço antigo no topo */
html,
body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.urgency-bar {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.site-shell {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Header fixo no topo da tela */
.topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9998 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: rgba(255, 250, 255, 0.96) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 26px rgba(63, 36, 111, 0.08);
  transform: none !important;
}

/* Altura interna do header */
.nav {
  height: 78px !important;
  min-height: 78px !important;
  display: flex !important;
  align-items: center !important;
}

/* Compensa o espaço do header fixo para o conteúdo não ficar escondido */
main {
  padding-top: 78px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    height: 74px !important;
    min-height: 74px !important;
  }

  main {
    padding-top: 74px !important;
  }
}


.instagram-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin: 10px 0 30px;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b00d4 0%, #d61ccf 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(142, 0, 212, 0.26);
  transition: all 0.25s ease;
}

.instagram-about-btn i {
  font-size: 20px;
  color: #ffffff;
}

.instagram-about-btn .instagram-arrow {
  font-size: 14px;
  margin-left: 4px;
}

.instagram-about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(142, 0, 212, 0.36);
}

@media (max-width: 768px) {
  .instagram-about-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
  }
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-instagram i {
  font-size: 16px;
}

.footer-instagram:hover {
  color: #d61ccf;
}