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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #0b2347;
}

.header {
  width: 100%;
  padding: 22px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0b2347;
}

.logo span {
  font-size: 32px;
  color: #c9971a;
}

.logo strong {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
}

.logo small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-badge {
  font-size: 14px;
  font-weight: 600;
  color: #0b2347;
  border: 1px solid #d8b24c;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  min-height: 85vh;
  padding: 50px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background:
    radial-gradient(circle at left, rgba(11, 35, 71, 0.12), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

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

.ebook-cover {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
  transition: 0.4s ease;
}

.ebook-cover:hover {
  transform: translateY(-8px);
}

.tag {
  display: inline-block;
  color: #c9971a;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-content h1 strong {
  color: #c9971a;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #334b6f;
  max-width: 560px;
  margin-bottom: 26px;
}

.form {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form input {
  width: 100%;
  height: 54px;
  border: 1px solid #d8dce3;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
}

.form input:focus {
  border-color: #c9971a;
}

.form button,
.final-button {
  height: 58px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #d8b24c, #b8860b);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form button:hover,
.final-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 25px rgba(184, 134, 11, 0.25);
}

.form small {
  text-align: center;
  color: #43546c;
  font-size: 12px;
}

.benefits,
.audience,
.about,
.final-section {
  padding: 80px 8%;
}

.benefits h2,
.audience h2,
.final-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 45px;
  text-transform: uppercase;
}

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

.card {
  padding: 34px 24px;
  border: 1px solid #edf0f5;
  border-radius: 18px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(11, 35, 71, 0.06);
}

.card span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8b24c;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 18px;
}

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

.card p {
  color: #465a78;
  line-height: 1.6;
}

.audience {
  background: #f8fbff;
}

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

.audience-grid div {
  background: #ffffff;
  padding: 28px 18px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  border-bottom: 4px solid #d8b24c;
  box-shadow: 0 10px 28px rgba(11, 35, 71, 0.06);
}

.about {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 55px;
  align-items: center;
  background: #ffffff;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-photo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 5px solid #d8b24c;
  box-shadow: 0 18px 40px rgba(11, 35, 71, 0.2);
}

.about-text h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #334b6f;
  margin-bottom: 16px;
}

.about-text strong {
  color: #c9971a;
  font-size: 18px;
}

.final-section {
  text-align: center;
  background: linear-gradient(135deg, #071a36, #0b2347);
  color: #ffffff;
}

.final-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.final-section p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #dce6f4;
  line-height: 1.7;
}

.final-button {
  padding: 0 34px;
}

.footer {
  padding: 24px 8%;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  background: #061329;
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 6%;
    text-align: center;
  }

  .ebook-cover {
    max-width: 420px;
  }

  .hero-content p,
  .form {
    margin-left: auto;
    margin-right: auto;
  }

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

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero {
    gap: 35px;
  }

  .ebook-cover {
    max-width: 320px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

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

  .benefits,
  .audience,
  .about,
  .final-section {
    padding: 60px 6%;
  }

  .about-photo img {
    width: 230px;
    height: 230px;
  }
}

/* ===== PÁGINA DE OBRIGADO ===== */

.thankyou-page {
  min-height: 100vh;
  padding: 40px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(216, 178, 76, 0.18), transparent 32%),
    linear-gradient(135deg, #061a36, #0b2347);
}

.thankyou-card {
  width: 100%;
  max-width: 680px;
  padding: 48px;
  background: #ffffff;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.success-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8b24c, #b8860b);
  color: #ffffff;
  font-size: 52px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #c9971a;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.thankyou-card h1 {
  color: #0b2347;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.thankyou-card > p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: #334b6f;
  font-size: 17px;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.step {
  padding: 18px 12px;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  background: #f8fbff;
}

.step span {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #d8b24c;
  color: #ffffff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step p {
  color: #0b2347;
  font-size: 14px;
  font-weight: 700;
}

.step.active {
  border-color: #25d366;
  background: #f0fff6;
}

.step.active span {
  background: #25d366;
}

.email-warning {
  margin: 26px 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff8e5;
  color: #5f4600;
  font-size: 14px;
  line-height: 1.6;
}

.whatsapp-button {
  width: 100%;
  max-width: 320px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 10px;
  background: #25d366;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
}

.back-link {
  display: inline-block;
  color: #64748b;
  font-size: 14px;
  text-decoration: none;
}

.back-link:hover {
  color: #0b2347;
}

@media (max-width: 640px) {
  .thankyou-card {
    padding: 36px 24px;
  }

  .thankyou-card h1 {
    font-size: 32px;
  }

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

/* ===== AJUSTES DE CONVERSÃO - PÁGINA DE CAPTURA ===== */

.header {
  display: none;
}

.hero {
  min-height: 100vh;
}

.ebook-cover {
  max-width: 600px;
}

.hero-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid #d8b24c;
  color: #0b2347;
  font-size: 13px;
  font-weight: 700;
}

/* ===== SEÇÃO VOCÊ SE IDENTIFICA ===== */

.identify {
  padding: 90px 8%;
  background: linear-gradient(135deg, #061a36, #0b2347);
  color: #ffffff;
}

.identify-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.identify h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.identify-list {
  max-width: 680px;
  margin: 0 auto 28px;
  display: grid;
  gap: 14px;
}

.identify-list p {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 17px;
}

.identify strong {
  color: #d8b24c;
  font-size: 20px;
}

/* ===== PRÉVIA DO EBOOK ===== */

.preview {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  background: #ffffff;
}

.preview-text h2 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 30px;
  color: #0b2347;
}

.chapters {
  display: grid;
  gap: 16px;
}

.chapters div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
  background: #f8fbff;
  border-left: 5px solid #d8b24c;
}

.chapters strong {
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0b2347;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chapters p {
  color: #334b6f;
  font-size: 16px;
  line-height: 1.5;
}

.preview-image {
  display: flex;
  justify-content: center;
}

.preview-image img {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,.22));
}

/* ===== CTA FINAL MELHORADO ===== */

.final-section h2 {
  font-size: 42px;
  text-transform: none;
}

.final-button {
  max-width: 320px;
  width: 100%;
}

/* ===== RESPONSIVO ===== */

@media (max-width: 900px) {
  .ebook-cover {
    max-width: 430px;
  }

  .hero-points {
    justify-content: center;
  }

  .preview {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .chapters div {
    text-align: left;
  }

  .identify h2,
  .preview-text h2 {
    font-size: 32px;
  }
}

@media (max-width: 560px) {
  .ebook-cover {
    max-width: 330px;
  }

  .identify,
  .preview {
    padding: 65px 6%;
  }

  .identify h2,
  .preview-text h2,
  .final-section h2 {
    font-size: 28px;
  }

  .chapters div {
    align-items: flex-start;
  }
}

/* ===== ANIMAÇÕES JS ===== */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.ebook-cover {
  animation: floatEbook 4s ease-in-out infinite;
}

@keyframes floatEbook {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.form button.loading {
  opacity: 0.8;
  pointer-events: none;
}

.form button.loading::after {
  content: " ...";
}

/* ===== NOVA ESTRUTURA DA PÁGINA DE CAPTURA ===== */

.header {
  display: none;
}

.hero {
  min-height: 100vh;
}

.ebook-cover {
  max-width: 600px;
}

.hero-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid #d8b24c;
  color: #0b2347;
  font-size: 13px;
  font-weight: 700;
}

/* IDENTIFICAÇÃO */

.identify {
  padding: 90px 8%;
  background: linear-gradient(135deg, #061a36, #0b2347);
  color: #ffffff;
}

.identify-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.identify h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.identify-list {
  max-width: 720px;
  margin: 0 auto 28px;
  display: grid;
  gap: 14px;
}

.identify-list p {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 17px;
}

.identify strong {
  color: #d8b24c;
  font-size: 20px;
}

/* PROBLEMA */

.problem-section {
  padding: 90px 8%;
  background: #ffffff;
}

.problem-section > div {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.problem-section h2 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #0b2347;
}

.problem-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #334b6f;
  margin-bottom: 16px;
}

/* PREVIEW */

.preview {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  background: #f8fbff;
}

.preview-text h2 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 30px;
  color: #0b2347;
}

.chapters {
  display: grid;
  gap: 16px;
}

.chapters div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border-left: 5px solid #d8b24c;
  box-shadow: 0 10px 28px rgba(11, 35, 71, 0.06);
}

.chapters strong {
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0b2347;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chapters p {
  color: #334b6f;
  font-size: 16px;
  line-height: 1.5;
}

.preview-image {
  display: flex;
  justify-content: center;
}

.preview-image img {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,.22));
}

/* BÔNUS */

.bonus-section {
  padding: 90px 8%;
  text-align: center;
  background: #ffffff;
}

.bonus-section h2 {
  font-size: 38px;
  margin-bottom: 45px;
  color: #0b2347;
}

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

.bonus-card {
  padding: 34px 26px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid #edf0f5;
  border-bottom: 5px solid #d8b24c;
  box-shadow: 0 12px 35px rgba(11, 35, 71, 0.06);
}

.bonus-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #0b2347;
}

.bonus-card p {
  color: #465a78;
  line-height: 1.6;
}

/* PROVA FUTURA */

.future-section {
  padding: 90px 8%;
  text-align: center;
  background: linear-gradient(135deg, #061a36, #0b2347);
  color: #ffffff;
}

.future-section h2 {
  max-width: 900px;
  margin: 0 auto 22px;
  font-size: 40px;
  line-height: 1.15;
}

.future-section p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #dce6f4;
}

/* CTA FINAL */

.final-section h2 {
  font-size: 42px;
  text-transform: none;
}

.final-button {
  max-width: 340px;
  width: 100%;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .ebook-cover {
    max-width: 430px;
  }

  .hero-points {
    justify-content: center;
  }

  .preview {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .chapters div {
    text-align: left;
  }

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

  .identify h2,
  .problem-section h2,
  .preview-text h2,
  .bonus-section h2,
  .future-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 560px) {
  .ebook-cover {
    max-width: 330px;
  }

  .identify,
  .problem-section,
  .preview,
  .bonus-section,
  .future-section {
    padding: 65px 6%;
  }

  .identify h2,
  .problem-section h2,
  .preview-text h2,
  .bonus-section h2,
  .future-section h2,
  .final-section h2 {
    font-size: 28px;
  }

  .chapters div {
    align-items: flex-start;
  }
}

.inline-icon,
.check-icon,
.x-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  fill: currentColor;
  flex-shrink: 0;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-points span,
.identify-list p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  color: #d8b24c;
}

.x-icon {
  color: #d8b24c;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(216, 178, 76, 0.12);
  border: 1px solid rgba(216, 178, 76, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #d8b24c;
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.icon-box.small {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.icon-box.small svg {
  width: 22px;
  height: 22px;
}

.ebook-cards-section {
  padding: 90px 6%;
  background: #061a36;
  text-align: center;
  overflow: hidden;
}

.ebook-cards-section h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 18px 0;
}

.ebook-cards-section > p {
  max-width: 720px;
  margin: 0 auto 42px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.cards-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 18px 6px 32px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}

.cards-carousel::-webkit-scrollbar {
  display: none;
}

.cards-carousel:active {
  cursor: grabbing;
}

.ebook-slide-card {
  width: min(82vw, 420px);
  flex: 0 0 auto;
  border-radius: 22px;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  border: 1px solid rgba(216, 178, 76, 0.22);
}

.ebook-slide-card:hover {
  transform: translateY(-6px) scale(1.015);
}

.ebook-slide-card.active {
  transform: scale(1.03);
  box-shadow:
    0 0 0 2px rgba(216, 178, 76, 0.7),
    0 0 28px rgba(216, 178, 76, 0.45),
    0 0 70px rgba(216, 178, 76, 0.22);
  filter: brightness(1.08);
}

@media (max-width: 768px) {
  .ebook-cards-section {
    padding: 70px 4%;
  }

  .cards-carousel {
    gap: 16px;
    padding-bottom: 24px;
  }

  .ebook-slide-card {
    width: 86vw;
    border-radius: 18px;
  }
}

.thankyou-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(216, 178, 76, 0.18), transparent 35%),
    #061a36;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 18px;
}

.thankyou-card {
  width: 100%;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 28px;
  padding: 44px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(216, 178, 76, 0.35);
}

.success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8b24c, #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 32px rgba(216, 178, 76, 0.5);
}

.success-icon svg {
  width: 38px;
  height: 38px;
  fill: #fff;
}

.thankyou-tag {
  display: inline-block;
  color: #b8860b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.thankyou-card h1 {
  color: #061a36;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}

.thankyou-intro {
  color: #334b6f;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 34px;
}

.thankyou-steps {
  display: grid;
  gap: 16px;
  margin: 34px 0;
  text-align: left;
}

.thankyou-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #e8eef7;
}

.thankyou-step span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #061a36;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.thankyou-step.active {
  border-color: rgba(216, 178, 76, 0.7);
  box-shadow: 0 0 24px rgba(216, 178, 76, 0.18);
}

.thankyou-step.active span {
  background: linear-gradient(135deg, #d8b24c, #b8860b);
}

.thankyou-step h3 {
  color: #061a36;
  margin-bottom: 6px;
}

.thankyou-step p {
  color: #52657f;
  margin: 0;
  line-height: 1.5;
}

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

.email-tabs small {
  background: #061a36;
  color: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.important-box {
  background: #fff7df;
  border: 1px solid rgba(216, 178, 76, 0.55);
  border-radius: 18px;
  padding: 20px;
  color: #061a36;
  text-align: left;
  margin-bottom: 28px;
}

.important-box p {
  margin: 8px 0 0;
  color: #334b6f;
  line-height: 1.6;
}

.bonus-thankyou {
  background: #061a36;
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  text-align: left;
  margin-bottom: 24px;
}

.bonus-thankyou span {
  color: #d8b24c;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-thankyou h2 {
  margin: 10px 0 16px;
  color: #fff;
}

.bonus-thankyou ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonus-thankyou li {
  margin: 10px 0;
  color: #dce6f4;
}

.bonus-thankyou li::before {
  content: "✓";
  color: #d8b24c;
  font-weight: 900;
  margin-right: 8px;
}

.dont-leave {
  font-weight: 900;
  color: #061a36;
  text-transform: uppercase;
  margin: 24px 0 18px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff;
  text-decoration: none;
  padding: 17px 30px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(34, 197, 94, 0.45);
}

.group-note {
  display: block;
  margin-top: 12px;
  color: #64748b;
}

.back-link {
  display: block;
  margin-top: 24px;
  color: #061a36;
  text-decoration: none;
  font-weight: 700;
}

.back-link:hover {
  color: #b8860b;
}

@media (max-width: 700px) {
  .thankyou-card {
    padding: 32px 20px;
    border-radius: 22px;
  }

  .thankyou-step {
    padding: 16px;
  }

  .bonus-thankyou {
    padding: 22px;
  }

  .whatsapp-button {
    width: 100%;
    padding: 16px 18px;
    font-size: 0.9rem;
  }
}

/* ===== SEÇÃO PREMIUM DOS CARDS DO EBOOK ===== */

.ebook-cards-section {
  position: relative;
  padding: 110px 6%;
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 178, 76, 0.18), transparent 32%),
    linear-gradient(135deg, #061a36 0%, #0b2347 55%, #061a36 100%);
  text-align: center;
  overflow: hidden;
}

.ebook-cards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.35;
  pointer-events: none;
}

.cards-bg-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(216, 178, 76, 0.18);
  filter: blur(80px);
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ebook-cards-header {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 44px;
}

.ebook-cards-header h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.08;
  margin: 18px 0;
}

.ebook-cards-header p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  font-size: 1.05rem;
}

.cards-carousel-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.cards-carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px 14px 46px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}

.cards-carousel::-webkit-scrollbar {
  display: none;
}

.cards-carousel:active {
  cursor: grabbing;
}

.premium-card-item {
  position: relative;
  flex: 0 0 auto;
  width: min(78vw, 390px);
  padding: 10px;
  border-radius: 30px;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(216, 178, 76, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    filter 0.35s ease;
}

.premium-card-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(216, 178, 76, 0.75),
    transparent 35%,
    rgba(216, 178, 76, 0.28)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.premium-card-item:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(216, 178, 76, 0.5);
}

.premium-card-item.active {
  transform: translateY(-10px) scale(1.045);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(216, 178, 76, 0.82);
  box-shadow:
    0 0 0 1px rgba(216, 178, 76, 0.55),
    0 0 34px rgba(216, 178, 76, 0.38),
    0 26px 70px rgba(0, 0, 0, 0.42);
  filter: brightness(1.05);
}

.premium-card-item.active::before {
  opacity: 1;
}

.ebook-slide-card {
  width: 100%;
  display: block;
  border-radius: 22px;
  pointer-events: none;
}

.card-caption {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 14px auto 0;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(216, 178, 76, 0.26);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.card-caption span {
  display: inline-block;
  color: #d8b24c;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.card-caption h3 {
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.card-caption p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.drag-hint {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .ebook-cards-section {
    padding: 80px 4%;
  }

  .cards-carousel {
    gap: 18px;
    padding: 24px 6px 38px;
  }

  .premium-card-item {
    width: 84vw;
    border-radius: 24px;
  }

  .premium-card-item.active {
    transform: translateY(-6px) scale(1.02);
  }

  .ebook-slide-card {
    border-radius: 18px;
  }

  .card-caption {
    padding: 22px;
  }
}