
/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --background: hsl(45, 20%, 98%);
  --foreground: hsl(30, 10%, 12%);
  --card: hsl(45, 30%, 96%);
  --primary: hsl(38, 92%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(150, 20%, 95%);
  --muted: hsl(45, 15%, 92%);
  --muted-foreground: hsl(30, 8%, 45%);
  --border: hsl(45, 20%, 88%);
  --text-hero: hsl(30, 15%, 8%);
  --text-body: hsl(30, 10%, 25%);
  --text-muted: hsl(30, 8%, 50%);
  --highlight: hsl(38, 100%, 95%);
  --highlight-strong: hsl(38, 100%, 85%);
  --success: hsl(150, 60%, 40%);
  --success-light: hsl(150, 50%, 94%);
  --warning: hsl(38, 92%, 50%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsla(30, 20%, 20%, 0.08);
  --shadow-medium: 0 8px 30px -8px hsla(30, 20%, 20%, 0.12);
  --shadow-strong: 0 12px 40px -12px hsla(30, 20%, 20%, 0.18);
  
  /* Spacing */
  --radius: 0.75rem;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
   position: relative;
}

/* ===== Container ===== */
.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Sections ===== */
.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: var(--card);
}

.section-gradient {
  background: linear-gradient(to bottom, var(--card), var(--background));
}

.hero-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;

  background: linear-gradient(
    to bottom,
    hsla(38, 100%, 95%, 0.5),
    var(--background)
  );

  padding: 0 16px;
}

.offer-section {
  background: linear-gradient(to bottom, var(--background), hsla(38, 100%, 95%, 0.3), var(--background));
}

.final-section {
  background: linear-gradient(to bottom, var(--background), hsla(38, 100%, 95%, 0.5));
}

/* ===== Typography ===== */
.headline {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-hero);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.subheadline {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-hero);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-body);
  text-align: center;
  margin-bottom: 2rem;
}

.section-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.5rem;
}

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

.text-success {
  color: var(--success);
}

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

.text-bold {
  font-weight: 600;
  color: var(--text-hero);
}

.text-center {
  text-align: center;
}

.strikethrough {
  text-decoration: line-through;
  color: var(--text-muted);
}

/* ===== Badge ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--success-light);
  color: var(--success);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ===== CTA Button ===== */
.cta-button {
  display: block;
  max-width: 100%;
  width: 100%;

  margin: 0 auto;

  padding: 16px;

  background: linear-gradient(90deg, #f5a200, #ffb300);
  color: #fff;

  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;

  border-radius: 12px;
  border: none;
  text-decoration: none;

  overflow-wrap: break-word;
  
    position: relative;
  overflow: hidden;
}



.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.25) 50%,
    transparent 70%
  );

  transform: translateX(-120%);
  transition: transform 0.6s ease;

  pointer-events: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.cta-button:hover::before {
  transform: translateX(100%);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button-large {
  font-size: 1.125rem;
  padding: 1.25rem 2rem;
}

.cta-note {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
  text-align: center;
}

.cta-badges {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* ===== Pain Section ===== */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--card);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid hsla(45, 20%, 88%, 0.5);
}

.pain-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pain-item p {
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* ===== Highlight Box ===== */
.highlight-box {
  background-color: var(--highlight);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  margin-top: 2rem;
}

.highlight-text {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-hero);
}

.highlight-tag {
  background-color: var(--highlight-strong);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

/* ===== Text Content ===== */
.text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  line-height: 1.7;
}

.callout {
  background-color: var(--background);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.callout p {
  color: var(--text-hero);
  font-weight: 500;
}

/* ===== Cycle Section ===== */
.cycle-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cycle-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cycle-emoji {
  width: 3rem;
  height: 3rem;
  background-color: var(--highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cycle-content {
  flex: 1;
  background-color: var(--card);
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid hsla(45, 20%, 88%, 0.5);
}

.cycle-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-hero);
}

.cycle-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cycle-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 1rem;
  animation: bounce 1s infinite;
}

/* ===== Ebook Mockup ===== */
.ebook-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ebook-cover {
  width: 160px;
  max-width: 100%;
  height: auto;

  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.ebook-label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
}

.ebook-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin-top: 0.25rem;
}

/* ===== Cards ===== */
.card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid hsla(45, 20%, 88%, 0.5);
  margin-bottom: 1.25rem;
}

.card-success {
  background-color: var(--success-light);
  border-color: hsla(150, 60%, 40%, 0.2);
}

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

.card-title {
  font-weight: 700;
  color: var(--text-hero);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-title span {
  font-size: 1.25rem;
}

/* ===== Lists ===== */
.list-muted {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.list-muted li {
  color: var(--text-body);
}

.list-success {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.list-success li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.check {
  color: var(--success);
  flex-shrink: 0;
}

/* ===== Benefits Section ===== */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--card);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid hsla(45, 20%, 88%, 0.5);
}

.benefit-number {
  width: 2rem;
  height: 2rem;
  background-color: hsla(38, 92%, 50%, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-hero);
  margin-bottom: 0.25rem;
}

.benefit-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== Differentials Section ===== */
.differentials-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.differential-item {
  background-color: var(--background);
  padding: 1.25rem;
  border-radius: var(--radius);
}

.differential-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.differential-icon {
  font-size: 1.5rem;
}

.differential-header h3 {
  font-weight: 700;
  color: var(--text-hero);
}

.differential-item p {
  font-size: 0.9375rem;
  padding-left: 2.5rem;
  line-height: 1.6;
}

/* ===== Included Section ===== */
.included-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--background);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid hsla(45, 20%, 88%, 0.5);
}

.included-main {
  background: linear-gradient(to right, hsla(38, 92%, 50%, 0.05), var(--highlight));
  border-color: hsla(38, 92%, 50%, 0.3);
}

.included-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.included-content {
  flex: 1;
}

.included-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.included-header h3 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-hero);
}

.included-value {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
  flex-shrink: 0;
}

.included-content > p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bonus-tag {
  display: inline-block;
  background-color: hsla(38, 92%, 50%, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-top: 0.5rem;
}

.total-value {
  background-color: var(--highlight);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  margin-top: 1.5rem;
}

.total-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-hero);
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* ===== Price Card ===== */
.price-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-strong);
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-anchor {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.price-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-hero);
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-hero);
}

.price-installments {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.value-comparison {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid hsla(45, 20%, 88%, 0.5);
  text-align: center;
  font-size: 0.875rem;
}

/* ===== Guarantee Section ===== */
.guarantee-card {
  background-color: var(--success-light);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsla(150, 60%, 40%, 0.2);
  text-align: center;
}

.guarantee-icon {
  width: 4rem;
  height: 4rem;
  background-color: hsla(150, 60%, 40%, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.875rem;
}

.guarantee-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-hero);
  margin-bottom: 0.75rem;
}

.guarantee-card > p {
  font-size: 0.9375rem;
  max-width: 24rem;
  margin: 0 auto 0.75rem;
}

.guarantee-footer {
  border-top: 1px solid hsla(150, 60%, 40%, 0.2);
  padding-top: 1rem;
  margin-top: 1rem;
}

.guarantee-footer p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--success);
}

/* ===== Future Section ===== */
.future-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.future-option {
  border-radius: 1rem;
  padding: 1.25rem;
}

.future-option-sad {
  background-color: var(--muted);
  border: 1px solid hsla(45, 20%, 88%, 0.5);
}

.future-option-happy {
  background: linear-gradient(135deg, var(--success-light), var(--highlight));
  border: 1px solid hsla(150, 60%, 40%, 0.3);
}

.future-option h3 {
  font-weight: 700;
  color: var(--text-hero);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.future-option h3 span {
  font-size: 1.25rem;
}

.future-option ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.future-option-sad ul li {
  color: var(--text-muted);
}

.future-option-happy ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* ===== Final Section ===== */
.final-text {
  max-width: 24rem;
  margin: 0 auto 2rem;
}

.quote-box {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid hsla(45, 20%, 88%, 0.5);
}

.quote {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.quote-footer {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.quote-footer strong {
  color: var(--text-hero);
}

.footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== Animations ===== */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* ===== Media Queries ===== */
@media (min-width: 640px) {
  .headline {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (hover: none) {
  .cta-button:hover {
    transform: none;
    box-shadow: none;
  }

  .cta-button:hover::before {
    transform: translateX(-120%);
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
