html {
  scroll-behavior: smooth;
}

:root {
  --bg-color: #fcf9f2;
  --text-main: #1a1a1a;
  --text-light: #444444;
  --accent-color: #c9884e;
  --accent-soft: #ffe8d1;
  --highlight-color: #d82b00;
  /* vibrant red */
  --btn-primary: #00cc44;
  /* vibrant green */
  --btn-primary-hover: #00aa38;
  --btn-secondary: #c44d2d;
  --border-color: #e6e6e6;

  --font-content: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

.question-text {
  font-size: 1.35rem;
  margin-bottom: 24px !important;
  line-height: 1.4;
  color: var(--text-main);
}

.highlight-color {
  color: var(--highlight-color);
  font-weight: 800;
}

.highlight-underline {
  text-decoration: underline;
  text-decoration-color: var(--highlight-color);
  text-decoration-thickness: 3px;
  font-weight: 700;
}

.text-green {
  color: #00cc44 !important;
}

.content-img {
  width: 100%;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mt-20 {
  margin-top: 20px;
}

.proof-image {
  text-align: center;
  margin-bottom: 24px;
}

.proof-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-content);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ======= LAYOUT CONTAINER ======= */
.post-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  min-height: 100vh;
  padding-bottom: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.02);
}

/* ======= HEADER ======= */
.post-header {
  padding: 30px 20px 15px;
  /* Reduzido para mobile */
  text-align: center;
  background-color: var(--accent-soft);
  border-bottom: 4px solid var(--accent-color);
  margin-bottom: 20px;
}

.category-tag {
  display: none;
}

.main-headline {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  /* Reduzido para mobile para caber tudo na tela */
  line-height: 1.2;
  color: var(--highlight-color);
  margin-bottom: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.sub-headline {
  font-size: 0.95rem;
  /* Ajuste sutil */
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* ======= SOCIAL PROOF 1 ======= */
.social-proof-1 {
  padding: 0 20px 20px;
}

.proof-context {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.proof-card {
  background-color: var(--accent-soft);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 163, 115, 0.2);
}

.proof-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.proof-user .avatar img {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  object-fit: cover;
  border: 2px solid #fff;
}

.proof-user strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.proof-user span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.proof-card p {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
}

/* ======= OFFER ALERT ======= */
.offer-alert {
  background: #fffbea;
  padding: 30px 24px;
  text-align: center;
  border: 4px dashed var(--highlight-color);
  border-radius: 12px;
  margin: 10px 24px 40px;
}

.old-price {
  font-size: 1.2rem;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 4px;
  font-weight: 600;
}

.new-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: #00cc44;
  margin-bottom: 8px;
}

.urgent-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #d9534f;
  animation: pulse 2s infinite;
}

/* ======= POST CONTENT ======= */
.post-content {
  padding: 0 24px 40px;
}

.post-content p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.highlight-text {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 16px;
  margin: 32px 0 !important;
  line-height: 1.4;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.3;
}

.section-title.colored {
  color: var(--highlight-color);
}

.centralize {
  text-align: center;
}

/* ======= SOCIAL PROOF 2 ======= */
.social-proof-2 {
  background-color: #fafafa;
  padding: 40px 24px;
  margin-bottom: 40px;
}

.proof-container {
  columns: 1;
  column-gap: 20px;
}

.proof-image {
  break-inside: avoid;
  margin-bottom: 20px;
}

.proof-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.proof-img:hover {
  transform: scale(1.02);
}

.proof-comment {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.proof-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.proof-header .avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.proof-header strong {
  font-size: 0.9rem;
}

.proof-header span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.proof-comment p {
  font-size: 0.95rem;
  font-style: italic;
  color: #444;
}

/* ======= BENEFITS ======= */
.benefits-section {
  padding: 0 24px 40px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.benefit-icon {
  width: 45px;
  height: 45px;
  background-color: var(--accent-soft);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.benefit-text p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.more-benefits {
  background-color: #f7fcfa;
  padding: 24px;
  border-radius: 12px;
  margin-top: 32px;
  border: 1px dashed var(--btn-primary);
}

.more-benefits p {
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--btn-primary);
}

.more-benefits ul {
  list-style: none;
}

.more-benefits li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-green {
  color: var(--btn-primary);
}

.special-date-offer {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: #ffeee8;
  border-radius: 8px;
  color: #b5492d;
}

.special-date-offer strong {
  font-size: 1.2rem;
  display: block;
  margin-top: 8px;
}

/* ======= BONUS SECTION ======= */
.bonus-section {
  padding: 40px 24px;
  background-color: #fffaf5;
}

.bonus-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  border: 1px solid var(--accent-color);
}

.bonus-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  /* Circle for a cleaner look */
  flex-shrink: 0;
  border: 4px solid var(--accent-soft);
  margin-bottom: 20px;
}

.bonus-info {
  padding: 0;
  flex-grow: 1;
}

.bonus-info h4 {
  font-size: 1.1rem;
  color: var(--highlight-color);
  margin-bottom: 4px;
  font-weight: 800;
}

.bonus-info span {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 16px;
}

.bonus-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.bonus-value {
  font-size: 0.9rem;
  background: var(--accent-soft);
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}

.bonus-value strike {
  color: #999;
}

.bonus-value strong {
  color: var(--btn-primary);
}

/* ======= PRICING ======= */
.pricing-plans {
  padding: 40px 24px;
}

.plans-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .plans-container {
    flex-direction: row;
    align-items: stretch;
  }

  .plan-card {
    flex: 1;
  }
}

.plan-card {
  border-radius: 12px;
  padding: 40px 24px 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  background: #fff;
  position: relative;
}

.plan-header-pill {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  padding: 8px 32px;
  border-radius: 40px;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.black-pill {
  background-color: #333333;
}

.pink-pill {
  background-color: #ff007f;
}

.best-seller-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #444;
  margin-top: 10px;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.plan-features li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #333;
}

.plan-features i {
  color: #00cc44;
  font-size: 1.1rem;
  margin-top: 4px;
}

.plan-price {
  font-size: 3.2rem;
  font-weight: 900;
  color: #00cc44;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.ebook-mockup-container {
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
}

.ebook-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.scarcity-alert {
  text-align: center;
  font-size: 0.95rem;
  color: #b5492d;
  margin-top: 16px;
  background: #fffbea;
  padding: 12px;
  border-radius: 8px;
  border: 1px dashed #b5492d;
}

.faq-item {
  margin-bottom: 32px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--btn-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-icon-line {
  text-align: right;
  font-size: 1.5rem;
  opacity: 0.8;
  margin-top: 10px;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.basic-plan {
  border: 2px solid #ccc;
}

.complete-plan {
  border: 2px dashed #3065d6;
  /* Dashed line effect from image */
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-block;
  width: 100%;
  padding: 22px 20px;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.btn-primary {
  background-color: var(--btn-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 204, 68, 0.4);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-pulse {
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 204, 68, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 204, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 204, 68, 0);
  }
}

.big-offer-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--highlight-color);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.3;
}

.scarcity-alert {
  text-align: center;
  font-size: 0.95rem;
  color: #b5492d;
  margin-top: 16px;
}

/* ======= SUMMARY & FAQ ======= */
.highlight-box {
  background-color: var(--accent-soft);
  border-radius: 12px;
  margin: 24px;
  padding: 32px 24px;
  border-left: 5px solid var(--accent-color);
}

.colored-subtitle {
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.article-faq {
  padding: 40px 24px;
}

.article-faq h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.reasons-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin: 24px 0;
}

.reasons-box p {
  margin-bottom: 10px !important;
}

.reasons-box p:last-child {
  margin-bottom: 0 !important;
}

.faq-q {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-q i {
  color: var(--accent-color);
}

.faq-a {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ======= GUARANTEE ====== */
.guarantee-section {
  padding: 0 24px 40px;
}

.guarantee-box {
  background-color: #fff;
  border: 2px dashed var(--accent-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.guarantee-badge {
  width: 120px;
  margin-bottom: 20px;
}

.guarantee-text h3 {
  font-family: var(--font-heading);
  color: var(--highlight-color);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.guarantee-text p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ======= AUTHOR BIO ======= */
.author-bio {
  padding: 40px 24px 60px;
  background-color: transparent;
  border-top: 1px solid var(--border-color);
  margin-top: 0;
}

.author-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.author-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  border: 4px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 0;
  margin-bottom: 0;
}

.author-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #333;
}

/* ======= RESPONSIVE REFINEMENTS (DESKTOP) ======= */
@media (min-width: 850px) {
  .post-container {
    max-width: 720px;
    /* Reduzido para ficar mais elegante e menos 'esticado' no PC */
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
  }

  .post-header {
    padding: 50px 24px 30px;
    margin-bottom: 30px;
  }

  .main-headline {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }

  .sub-headline {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  /* Social Proof Grid on Desktop */
  .social-proof-1 {
    padding: 0 24px 40px;
  }

  .proof-container {
    columns: 2;
  }

  /* Bonus Grid on Desktop */
  .bonus-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 60px 40px;
  }

  .bonus-section .section-title {
    grid-column: span 2;
  }

  .bonus-card {
    margin-bottom: 0;
    height: 100%;
    align-items: center;
    text-align: center;
    padding: 30px 24px;
  }

  .bonus-img {
    width: 160px;
    height: 160px;
    margin-bottom: 24px;
  }

  .bonus-info {
    padding-left: 0;
  }

  /* Author Bio on Desktop */
  .author-content {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 40px;
    padding: 60px 40px;
  }

  .author-info-wrapper {
    flex: 1;
  }

  .author-img {
    max-width: 320px;
    margin: 0;
    position: sticky;
    top: 20px;
  }

  .author-bio .section-title {
    text-align: left;
  }

  /* Modal Desktop Width */
  .modal-content {
    max-width: 500px;
  }
}

/* Specific adjustment for very large screens to maintain the "Editorial/Article" feel */
@media (min-width: 1200px) {
  body {
    background: linear-gradient(to right, #fcf9f2 0%, #fcf9f2 100%);
    background-attachment: fixed;
  }

  .post-container {
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 20px;
  }
}

/* ANIMATIONS */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@media (min-width: 601px) {
  body {
    background-color: #e6e6e6;
  }
}

/* ======= UPSELL MODAL ======= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  cursor: pointer;
}

.modal-content {
  background-color: #f4f2ea;
  /* Cor creme/bege do fundo */
  border-radius: 8px;
  max-width: 480px;
  width: 100%;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.3s ease-out;
  cursor: default;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: -10px auto 20px;
}

.modal-headline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #555c65;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 8px;
}

.modal-price {
  font-size: 4rem;
  font-weight: 900;
  color: #0bd851;
  line-height: 1;
  margin-top: 16px;
}

.modal-subprice {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0bd851;
  margin-bottom: 24px;
  margin-top: 8px;
}

.modal-description {
  font-size: 0.8rem;
  font-weight: 800;
  color: #e10750;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.btn-green {
  background-color: #4dd55c;
  color: #fff;
  font-size: 1.25rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(77, 213, 92, 0.4);
  margin-bottom: 12px;
}

.btn-grey {
  background-color: #adadad;
  color: #fff;
  font-size: 1.25rem;
  border-radius: 6px;
  padding: 18px 20px;
}

/* ======= PURCHASE NOTIFICATION ======= */
.purchase-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 5px solid #0bd851;
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  z-index: 10000;
  transform: translateX(-150%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.purchase-notification.show {
  transform: translateX(0);
}

.notif-content-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.notif-content-text strong {
  color: #0bd851;
}

@media (max-width: 600px) {
  .purchase-notification {
    bottom: 20px;
    left: 10px;
    right: auto;
    width: auto;
    max-width: 250px;
    transform: translateX(-150%);
  }

  .purchase-notification.show {
    transform: translateX(0);
  }
}