/* Modern High-End Style System for "21 Dias Para Voltar a Amar a Si Mesma" */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Great+Vibes&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --bg-profundo: #1E1208; /* Warmer and slightly lighter than #120B05 */
  --bg-cacau: #3A2311; /* Lighter warm cacao than #2A170A */
  --bg-card-dark: linear-gradient(180deg, #341D0E 0%, #1A0D05 100%); /* Lighter gradient */
  
  --dourado-ambar: #C58A28;
  --mel-luminoso: #E5B75A;
  --creme-ritual: #F3E6CF; /* Cream background for floating cards */
  --bronze-queimado: #8A4F1E;
  --branco-quente: #FFF7E8;
  --cinza-suave: #C7B9AC; /* Brighter gray for better text readability */
  
  --fonte-titulo: 'Cormorant Garamond', serif;
  --fonte-apoio: 'Montserrat', sans-serif;
  --fonte-manuscrita: 'Great Vibes', cursive;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-gold: 0 0 28px rgba(197, 138, 40, 0.15);
  --shadow-gold-hover: 0 0 45px rgba(197, 138, 40, 0.4);
  --border-gold-alpha: 1px solid rgba(197, 138, 40, 0.25);
  --border-gold-premium: 1px solid var(--dourado-ambar);
}

/* Reset and Globals */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-profundo);
  /* Apply the honeycomb background fixed across the entire page for deep textured look */
  background-image: linear-gradient(to bottom, rgba(58, 35, 17, 0.82) 0%, rgba(30, 18, 8, 0.88) 50%, rgba(18, 11, 5, 0.91) 100%), url('honeycomb_bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--branco-quente);
  font-family: var(--fonte-apoio);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography styles */
h1, h2, h3, h4 {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--branco-quente);
}

p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.text-gold {
  color: var(--mel-luminoso);
  background: linear-gradient(135deg, var(--mel-luminoso), var(--dourado-ambar));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-script {
  font-family: var(--fonte-manuscrita);
  font-size: 2.2rem;
  color: var(--mel-luminoso);
  line-height: 1.2;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 0;
}

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

.flex {
  display: flex;
}

.grid {
  display: grid;
}

/* Floating Cream Cards (As seen in reference image for Section 2, Section 4 etc.) */
.floating-cream-card {
  background-color: var(--creme-ritual);
  border: 1px solid var(--dourado-ambar);
  border-radius: 20px;
  padding: 4rem 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  color: var(--bg-cacau);
  margin: 4rem auto;
}

.floating-cream-card h2,
.floating-cream-card h3,
.floating-cream-card h4 {
  color: var(--bg-cacau) !important;
}

.floating-cream-card p {
  color: rgba(42, 23, 10, 0.8) !important;
}

.floating-cream-card .sec-divider::before,
.floating-cream-card .sec-divider::after {
  background: linear-gradient(to right, transparent, rgba(138, 79, 30, 0.4), transparent);
}

.floating-cream-card .sec-divider svg {
  fill: var(--bronze-queimado);
}

/* Circular Badges inside Cream Cards */
.circle-badge-dark {
  width: 80px;
  height: 80px;
  background-color: var(--bg-profundo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border: 1px solid var(--dourado-ambar);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.circle-badge-dark svg {
  width: 36px;
  height: 36px;
  fill: var(--mel-luminoso);
}

/* Circular Badges in Dark Sections */
.circle-badge-gold-outline {
  width: 80px;
  height: 80px;
  background-color: rgba(197, 138, 40, 0.05);
  border: 1px solid var(--dourado-ambar);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition-smooth);
}

.circle-badge-gold-outline svg {
  width: 36px;
  height: 36px;
  fill: var(--mel-luminoso);
}

.card-escuro:hover .circle-badge-gold-outline {
  background-color: var(--dourado-ambar);
}

.card-escuro:hover .circle-badge-gold-outline svg {
  fill: var(--bg-profundo);
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 0;
  z-index: 10;
}

.header-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  fill: var(--mel-luminoso);
}

.logo-text {
  font-family: var(--fonte-titulo);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--branco-quente);
  font-weight: 400;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  /* Glowing flower of life and honeycomb textures mapped to the right */
  background-image: linear-gradient(to right, rgba(30, 18, 8, 0.85) 45%, rgba(30, 18, 8, 0.25) 100%), url('hero_woman.png');
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero-content {
  width: 50%;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--fonte-titulo);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dourado-ambar);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  color: var(--branco-quente);
  font-weight: 300;
  line-height: 1.6;
}

.hero-bullet-pill {
  display: inline-flex;
  gap: 1.5rem;
  background: rgba(18, 11, 5, 0.75);
  border: 1px solid rgba(197, 138, 40, 0.35);
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--branco-quente);
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
}

.hero-bullet-pill span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-bullet-pill svg {
  width: 14px;
  height: 14px;
  fill: var(--mel-luminoso);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #B8791C, #E5B75A, #A86416);
  color: #1A0D05 !important;
  border: 1px solid #F3D184;
  border-radius: 6px;
  padding: 1.2rem 2.8rem;
  font-family: var(--fonte-apoio);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(197, 138, 40, 0.35);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 38px rgba(229, 183, 90, 0.6);
  filter: brightness(1.15);
}

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

.btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #1A0D05;
  color: #D8C3A1 !important;
  border: 1px solid rgba(197, 138, 40, 0.35);
  border-radius: 6px;
  padding: 1rem 2rem;
  font-family: var(--fonte-apoio);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(197, 138, 40, 0.1);
  color: var(--branco-quente) !important;
  border-color: var(--mel-luminoso);
}

/* Cards (Dark) */
.card-escuro {
  background: var(--bg-card-dark);
  border: 1px solid rgba(197, 138, 40, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 2.2rem;
  transition: var(--transition-smooth);
}

.card-escuro:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 138, 40, 0.45);
  box-shadow: 0 20px 45px rgba(197, 138, 40, 0.15);
}

/* Section Decorators */
.sec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem auto 2.5rem auto;
  width: 100%;
}

.sec-divider::before, .sec-divider::after {
  content: '';
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197, 138, 40, 0.5), transparent);
  flex-grow: 1;
  max-width: 150px;
}

.sec-divider svg {
  width: 24px;
  height: 24px;
  fill: var(--dourado-ambar);
}

/* Section "O Amanhã" */
.amanha-section {
  position: relative;
}

.section-title-wrapper {
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.amanha-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.amanha-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.amanha-card .icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(197, 138, 40, 0.08);
  border: 1px solid rgba(197, 138, 40, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.amanha-card:hover .icon-wrapper {
  background: rgba(197, 138, 40, 0.2);
  border-color: var(--mel-luminoso);
  transform: scale(1.05);
}

.amanha-card svg {
  width: 28px;
  height: 28px;
  fill: var(--mel-luminoso);
}

.amanha-card h4 {
  font-family: var(--fonte-apoio);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--branco-quente);
}

/* Presentation Section */
.solution-section {
  position: relative;
}

.solution-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.solution-chips {
  display: flex;
  gap: 1rem;
  margin: 1.8rem 0;
  flex-wrap: wrap;
}

.solution-chip {
  background: rgba(197, 138, 40, 0.1);
  border: 1px solid rgba(197, 138, 40, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mel-luminoso);
}

.solution-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.solution-mockup img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(197, 138, 40, 0.25);
  transition: var(--transition-smooth);
}

.solution-mockup img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(197, 138, 40, 0.2);
}

/* Timeline/Repetition Section */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.timeline::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, rgba(197,138,40,0.1), rgba(197,138,40,0.6), rgba(197,138,40,0.1));
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-cacau);
  border: 2px solid var(--dourado-ambar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-titulo);
  font-size: 1.8rem;
  color: var(--mel-luminoso);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-number {
  transform: scale(1.1);
  background: var(--dourado-ambar);
  color: var(--bg-profundo);
  box-shadow: var(--shadow-gold-hover);
}

.timeline-step h4 {
  font-size: 1.4rem;
}

/* Programação Errada Section */
.programacao-errada-section {
  position: relative;
}

.errada-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.errada-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.errada-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.errada-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(26, 13, 5, 0.4);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 10px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.errada-card:hover {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(26, 13, 5, 0.6);
  transform: translateY(-2px);
}

.errada-card span {
  font-size: 1.2rem;
  color: #ef4444;
}

.errada-card p {
  font-size: 0.95rem;
  color: var(--cinza-suave);
  font-weight: 400;
}

.errada-turnaround {
  width: 100%;
  background: linear-gradient(135deg, rgba(197, 138, 40, 0.12), rgba(229, 183, 90, 0.05));
  border: 1px solid rgba(197, 138, 40, 0.3);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.errada-turnaround h3 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.errada-turnaround p {
  color: var(--branco-quente);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Receiver Cream Card Content styles */
.receive-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.receive-intro-col {
  text-align: center;
  padding: 1rem;
}

.receive-intro-col h4 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--bg-cacau);
}

.receive-intro-col p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.temas-subgrid-title {
  font-family: var(--fonte-titulo);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
  color: var(--bg-cacau);
  position: relative;
}

.temas-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tema-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(138, 79, 30, 0.18);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.tema-badge:hover {
  border-color: var(--dourado-ambar);
  background: #FAF6EE;
  transform: translateY(-2px);
}

.tema-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--bronze-queimado);
  flex-shrink: 0;
}

.tema-badge span {
  font-family: var(--fonte-apoio);
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--bg-cacau);
}

/* Desbloquear Section Columns (separated by fine vertical lines as in image) */
.desbloquear-grid-premium {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.desbloquear-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.desbloquear-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(138, 79, 30, 0.25);
}

.desbloquear-col svg {
  width: 42px;
  height: 42px;
  fill: var(--bronze-queimado);
  margin-bottom: 1.2rem;
}

.desbloquear-col span {
  font-family: var(--fonte-titulo);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg-cacau);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.desbloquear-col p {
  font-size: 0.8rem !important;
  line-height: 1.4 !important;
  color: rgba(42, 23, 10, 0.75) !important;
}

/* Diferente Section */
.diferente-section {
  position: relative;
}

.diferente-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.diferente-intro {
  font-size: 1.25rem;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

.diferente-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.diferente-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.diferente-col::after {
  content: '';
  position: absolute;
  right: -1.25rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(197, 138, 40, 0.2);
}

.diferente-col:last-child::after {
  display: none;
}

.diff-no {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cinza-suave);
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.diff-yes {
  font-family: var(--fonte-titulo);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--mel-luminoso);
  line-height: 1.2;
}

/* Bonus Section (With gold outline circles as in image) */
.bonus-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
}

.bonus-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.bonus-info p {
  font-size: 0.9rem;
  color: var(--cinza-suave);
  line-height: 1.5;
}

/* Você Não Precisa Fazer Isso Sozinha Section (Circular portrait + text row as in image) */
.sozinha-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding: 3rem 0;
}

.sozinha-image-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--dourado-ambar);
  box-shadow: var(--shadow-gold-hover);
  flex-shrink: 0;
}

.sozinha-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.sozinha-text {
  font-family: var(--fonte-titulo);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 600px;
}

/* Stack de Valor Section */
.stack-box {
  background: var(--bg-card-dark);
  border: 1px solid rgba(197, 138, 40, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 750px;
  margin: 0 auto;
}

.stack-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(197, 138, 40, 0.1);
  padding-bottom: 0.8rem;
}

.stack-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stack-item-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--fonte-titulo);
  font-size: 1.25rem;
}

.stack-item-title svg {
  width: 20px;
  height: 20px;
  fill: var(--dourado-ambar);
}

.stack-item-price {
  font-family: var(--fonte-apoio);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cinza-suave);
}

.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(197, 138, 40, 0.2);
}

.stack-total-title {
  font-family: var(--fonte-titulo);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mel-luminoso);
}

.stack-total-price {
  font-family: var(--fonte-apoio);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: line-through;
  color: #ef4444;
}

/* Premium Checkout Card (Replicates the bottom card in ChatGPT Image 1) */
.checkout-section {
  position: relative;
  background-image: linear-gradient(to bottom, rgba(18, 11, 5, 0.98) 30%, rgba(18, 11, 5, 0.92) 100%), url('bg_cta.png');
  background-size: cover;
  background-position: center top;
}

.checkout-card-premium {
  background: linear-gradient(180deg, #201106 0%, #0c0703 100%);
  border: 1px solid var(--dourado-ambar);
  border-radius: 16px;
  padding: 3.5rem;
  box-shadow: var(--shadow-gold-hover);
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.checkout-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--dourado-ambar), var(--mel-luminoso), var(--dourado-ambar));
}

.checkout-left {
  display: flex;
  flex-direction: column;
}

.checkout-left h5 {
  font-family: var(--fonte-apoio);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cinza-suave);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.checkout-left .checkout-price-large {
  font-family: var(--fonte-titulo);
  font-size: 5rem;
  font-weight: 700;
  color: var(--mel-luminoso);
  line-height: 1;
}

.checkout-left .checkout-price-large span {
  font-size: 2.2rem;
  font-weight: 500;
  vertical-align: super;
}

.checkout-left p {
  font-size: 0.85rem;
  color: var(--cinza-suave);
  line-height: 1.4;
  margin-top: 0.5rem;
}

.checkout-middle {
  border-left: 1px solid rgba(197, 138, 40, 0.2);
  border-right: 1px solid rgba(197, 138, 40, 0.2);
  padding: 0 2rem;
}

.checkout-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.checkout-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--branco-quente);
}

.checkout-list svg {
  width: 18px;
  height: 18px;
  fill: #10b981;
  flex-shrink: 0;
}

/* Beautiful Scalloped Circular Guarantee Seal */
.seal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.seal-badge {
  width: 105px;
  height: 105px;
  background: radial-gradient(circle, #E5B75A 30%, #B8791C 100%);
  border: 1px dashed var(--branco-quente);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(197, 138, 40, 0.35);
  color: #1A0D05;
  font-weight: 700;
}

.seal-badge .number {
  font-size: 2.4rem;
  font-family: var(--fonte-titulo);
  line-height: 1;
}

.seal-badge .days {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.seal-title {
  margin-top: 1rem;
  font-family: var(--fonte-titulo);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mel-luminoso);
}

.seal-subtitle {
  font-size: 0.75rem;
  color: var(--cinza-suave);
}

/* Checkout Button flanked by glowing lotus icons */
.checkout-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.5rem;
  gap: 1.5rem;
}

.checkout-btn-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}

.checkout-btn-row .btn-primary {
  width: 100%;
  max-width: 540px;
}

.checkout-btn-row svg {
  width: 45px;
  height: 45px;
  fill: var(--dourado-ambar);
  opacity: 0.6;
  animation: pulse-lotus 2s infinite ease-in-out;
}

.checkout-btn-row svg:last-child {
  animation-delay: 1s;
}

@keyframes pulse-lotus {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.85; }
}

.security-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--cinza-suave);
}

.security-info svg {
  width: 14px;
  height: 14px;
  fill: var(--cinza-suave);
}

/* Escolha Simples (Alternating inside cream card) */
.escolha-grid {
  grid-template-columns: 1fr 80px 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 3.5rem;
}

.escolha-card {
  padding: 3rem 2.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.escolha-card.left {
  background: rgba(42, 23, 10, 0.03);
  border: 1px solid rgba(42, 23, 10, 0.1);
  border-radius: 12px;
}

.escolha-card.right {
  background: #FFFFFF;
  border: 1px solid var(--dourado-ambar);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(197, 138, 40, 0.05);
}

.escolha-card p {
  font-size: 1.15rem;
  line-height: 1.6;
}

.escolha-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.escolha-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--bronze-queimado);
  color: var(--bronze-queimado);
  font-family: var(--fonte-titulo);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(42, 23, 10, 0.08);
  z-index: 2;
}

.escolha-divider::after {
  content: '';
  position: absolute;
  top: -100px;
  bottom: -100px;
  left: 50%;
  width: 1px;
  background: rgba(138, 79, 30, 0.15);
  z-index: 1;
}

.escolha-footer {
  text-align: center;
  max-width: 700px;
  margin: 3.5rem auto 0 auto;
  font-family: var(--fonte-titulo);
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--bronze-queimado);
}

/* CTA Final Section */
.cta-final-section {
  position: relative;
  background-image: linear-gradient(to top, rgba(18, 11, 5, 0.98) 30%, rgba(18, 11, 5, 0.85) 100%), url('bg_cta.png');
  background-size: cover;
  background-position: center bottom;
  padding: 6rem 0 4rem 0;
  text-align: center;
}

.cta-final-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-final-text {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-final-text p {
  margin-bottom: 1rem;
}

.cta-final-highlights {
  font-family: var(--fonte-titulo);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--mel-luminoso);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2rem 0;
}

.cta-final-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.cta-final-buttons .btn-primary {
  width: 100%;
  max-width: 580px;
}

.cta-final-footer-text {
  font-size: 0.85rem;
  color: var(--cinza-suave);
  margin-top: 1rem;
}

/* Footer style */
footer {
  border-top: 1px solid rgba(197, 138, 40, 0.15);
  background: #0b0703;
  padding: 3.5rem 0;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--dourado-ambar);
}

.footer-logo span {
  font-family: var(--fonte-titulo);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--branco-quente);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--cinza-suave);
  letter-spacing: 0.05em;
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-section {
    background-image: linear-gradient(180deg, rgba(18, 11, 5, 0.96) 0%, rgba(18, 11, 5, 0.8) 50%, rgba(18, 11, 5, 0.96) 100%), url('hero_woman.png');
    background-position: center;
    padding-top: 8rem;
    min-height: auto;
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .hero-bullet-pill {
    margin-bottom: 2rem;
  }
  
  .amanha-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .solution-chips {
    justify-content: center;
  }
  
  .receive-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .timeline {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .timeline::after {
    display: none;
  }
  
  .errada-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .temas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .desbloquear-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .desbloquear-col:not(:last-child)::after {
    display: none;
  }
  
  .diferente-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .diferente-col::after {
    display: none;
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sozinha-section {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .checkout-card-premium {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.8rem;
  }
  .checkout-middle {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(197, 138, 40, 0.2);
    border-bottom: 1px solid rgba(197, 138, 40, 0.2);
    padding: 2rem 0;
  }
  
  .escolha-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .escolha-circle {
    margin: 0 auto;
  }
  .escolha-divider::after {
    display: none;
  }
}

@media (max-width: 580px) {
  .container {
    padding: 3rem 0;
  }
  
  .floating-cream-card {
    padding: 2.5rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-bullet-pill {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    border-radius: 12px;
  }
  
  .amanha-grid {
    grid-template-columns: 1fr;
  }
  
  .errada-grid {
    grid-template-columns: 1fr;
  }
  
  .temas-grid {
    grid-template-columns: 1fr;
  }
  
  .desbloquear-grid-premium {
    grid-template-columns: 1fr;
  }
  
  .checkout-price-large {
    font-size: 3.8rem;
  }
  
  .checkout-btn-row {
    flex-direction: column;
    gap: 1rem;
  }
  .checkout-btn-row svg {
    display: none; /* Hide flanking lotuses on small mobile to save space */
  }
  
  .escolha-card {
    padding: 2rem 1.2rem;
  }
}
