/* ==========================================================================
   365 CARTAS PARA OS MOMENTOS DA VIDA - LANDING PAGE PREMIUM STYLES
   Posicionamento de Resposta Direta, CRO Mobile-First & Visual Excellence
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-dark-navy: #080d1a;
  --bg-card-navy: #111a2e;
  --bg-card-hover: #18243f;
  --bg-card-border: rgba(243, 156, 18, 0.2);
  
  --gold-primary: #f39c12;
  --gold-light: #fcd34d;
  --gold-bright: #ffe066;
  --gold-dark: #b45309;
  --gold-gradient: linear-gradient(135deg, #ffe066 0%, #f39c12 50%, #d97706 100%);
  --gold-glow: 0 0 30px rgba(243, 156, 18, 0.35);

  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-dark: #0f172a;

  --border-gold: rgba(243, 156, 18, 0.3);
  --border-light: rgba(255, 255, 255, 0.08);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif-accent: 'Cinzel', serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --shadow-btn: 0 8px 25px rgba(243, 156, 18, 0.35);
  --shadow-glow: 0 0 40px rgba(243, 156, 18, 0.15);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-navy);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

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

/* --- Typography Utilities --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: #ffffff;
  font-weight: 700;
}

.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --- Buttons & CTAs --- */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  gap: 10px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--gold-gradient);
  color: #0b1120;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1.15rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-btn);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), filter var(--transition-fast);
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 520px;
  text-align: center;
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(243, 156, 18, 0.55);
  filter: brightness(1.05);
}

.mega-cta {
  font-size: 1.2rem;
  padding: 1.3rem 2.4rem;
}

.microcopy-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

.microcopy-secondary {
  font-size: 0.8rem;
  color: #94a3b8;
  opacity: 0.9;
  text-align: center;
  margin-top: -2px;
}

.guarantee-micro {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

/* --- Top Announcement Bar --- */
.top-bar {
  background: linear-gradient(90deg, #92400e, #d97706, #f39c12, #d97706, #92400e);
  color: #0b1120;
  padding: 9px 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.badge-price {
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

/* --- Layout Sections --- */
.section {
  padding: 85px 0;
  position: relative;
}

.section-header {
  margin-bottom: 45px;
}

.section-tag {
  font-family: var(--font-serif-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

/* --- SEÇÃO 1: HERO --- */
.hero {
  padding: 80px 0 75px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #152238 0%, #080d1a 75%);
}

.hero-bg-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.85rem;
  margin-bottom: 18px;
  font-weight: 800;
  line-height: 1.18;
}

.hero-title-sub {
  display: inline-block;
  font-size: 0.92em;
  font-weight: 700;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: #f1f5f9;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.6;
}

.hero-situations-line {
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.hero-mechanism-lead {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.65;
}

.hero-highlight-box {
  background: rgba(17, 26, 46, 0.85);
  border-left: 4px solid var(--gold-primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
  font-size: 0.96rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.hero-highlight-box strong {
  color: #ffffff;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-mockup-stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
}

.hero-mockup-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(243, 156, 18, 0.18) 0%, rgba(30, 58, 138, 0.25) 50%, transparent 72%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

.hero-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.65)) drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-normal);
}

.hero-img:hover {
  transform: translateY(-4px) scale(1.01);
}

.hero-badges-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.floating-badge {
  position: absolute;
  pointer-events: auto;
  background: rgba(11, 17, 32, 0.88);
  border: 1px solid rgba(243, 156, 18, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #f1f5f9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-1 { top: 6%; left: -8px; animation-delay: 0s; }
.badge-2 { bottom: 6%; left: -6px; animation-delay: 1.6s; }
.badge-3 { top: 38%; right: -12px; animation-delay: 0.8s; }

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

/* --- SEÇÃO 2: IDENTIFICAÇÃO ("O que você está vivendo hoje?") --- */
.identification-section {
  background: #0b1120;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.feelings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.feeling-card {
  background: var(--bg-card-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feeling-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  box-shadow: var(--gold-glow);
}

.feeling-quote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-primary);
  opacity: 0.4;
  margin-bottom: 6px;
}

.feeling-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.45;
}

.feeling-match {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
}

.solution-callout {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(243, 156, 18, 0.08);
  border: 1px solid var(--border-gold);
  padding: 24px;
  border-radius: var(--radius-md);
}

.callout-lead {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.callout-highlight {
  font-size: 1.2rem;
  color: var(--gold-bright);
}

/* --- SEÇÃO 3: DEMONSTRAÇÃO E ESTRUTURA DA CARTA --- */
.demo-section {
  background: radial-gradient(circle at center, #10192e 0%, #080d1a 100%);
}

.card-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.pillar-box {
  background: var(--bg-card-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: transform var(--transition-fast);
}

.pillar-box:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.pillar-number {
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  color: #0b1120;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.pillar-title {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 3D Flip Card Demo */
.flip-card-wrapper {
  max-width: 520px;
  width: 100%;
  margin: 0 auto 30px;
  perspective: 1200px;
}

.flip-instructions {
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--gold-light);
}

.card-flipper-container {
  width: 100%;
  min-height: 470px;
  cursor: pointer;
  position: relative;
}

.card-3d-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 470px;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.card-flipper-container.flipped .card-3d-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--gold-glow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-sizing: border-box;
}

/* Front Face */
.card-front {
  background: linear-gradient(145deg, #131c31 0%, #0d1424 100%);
  border: 2px solid var(--border-gold);
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(243, 156, 18, 0.25);
  padding-bottom: 10px;
}

.card-badge-num {
  font-family: var(--font-serif-accent);
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.card-badge-cat {
  background: rgba(243, 156, 18, 0.15);
  color: var(--gold-light);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}

.card-topic-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
  margin: 10px 0 16px;
}

.card-verse-block {
  background: rgba(8, 13, 26, 0.85);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border-left: 3px solid var(--gold-primary);
  margin-bottom: 14px;
}

.verse-ref-tag {
  font-family: var(--font-serif-accent);
  color: var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.verse-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: #f1f5f9;
  line-height: 1.5;
}

.card-click-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gold-light);
  background: rgba(243, 156, 18, 0.1);
  border: 1px solid rgba(243, 156, 18, 0.2);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-top: auto;
}

/* Back Face */
.card-back {
  background: linear-gradient(145deg, #16223b 0%, #0d1527 100%);
  border: 2px solid var(--border-gold);
  transform: rotateY(180deg);
}

.gold-mode .card-badge-num {
  color: var(--gold-light);
}

.back-blocks-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 10px;
}

.back-block {
  background: rgba(8, 13, 26, 0.7);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-primary);
}

.back-block-title {
  font-size: 0.82rem;
  font-family: var(--font-serif-accent);
  color: var(--gold-light);
  margin-bottom: 3px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.back-block p {
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.42;
}

/* --- SEÇÃO 4: O MECANISMO --- */
.mechanism-section {
  background: #0b1120;
  border-top: 1px solid var(--border-light);
}

.mechanism-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.step-card {
  background: var(--bg-card-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
  transition: transform var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.step-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: #0b1120;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.step-heading {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.experience-quote {
  background: rgba(243, 156, 18, 0.07);
  border: 1px dashed var(--border-gold);
  padding: 20px;
  border-radius: var(--radius-md);
  max-width: 760px;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
}

.quote-arrow {
  color: #ffffff;
  margin: 0 8px;
}

/* --- SEÇÃO 5: AS 12 ÁREAS DA VIDA --- */
.categories-section {
  background: radial-gradient(circle at 50% 10%, #131c31 0%, #080d1a 80%);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.cat-card {
  background: var(--bg-card-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.cat-emoji {
  font-size: 2rem;
}

.cat-title-group h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.cat-count {
  font-size: 0.8rem;
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.cat-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.total-banner {
  background: rgba(17, 26, 46, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 26px;
  max-width: 680px;
  margin: 0 auto;
}

.total-badge {
  background: var(--gold-gradient);
  color: #0b1120;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 10px;
}

.total-heading {
  font-size: 1.35rem;
  color: #ffffff;
}

/* --- SEÇÃO 6 & 7: ÍNDICE INTERATIVO & GUIA --- */
.index-section {
  background: #0b1120;
  border-top: 1px solid var(--border-light);
}

.tools-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.tool-card {
  background: var(--bg-card-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.tool-icon {
  font-size: 2.2rem;
}

.tool-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.tool-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tools-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 35px;
}

.section-cta-mid {
  margin-top: 15px;
}

/* --- SEÇÃO 8: TRANSIÇÃO PARA COLEÇÕES ESPECIAIS --- */
.transition-collections-section {
  padding-bottom: 20px;
}

.special-gold-tag {
  background: rgba(243, 156, 18, 0.15);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

/* --- ESTILOS DAS 4 COLEÇÕES ESPECIAIS --- */
.collection-detail-section {
  padding: 40px 0;
}

.collection-container-box {
  background: var(--bg-card-navy);
  border-radius: var(--radius-xl);
  padding: 48px 40px 40px;
  border: 1px solid var(--border-gold);
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.collection-badge-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #0b1120;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 22px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
  z-index: 5;
}

.collection-header-group {
  margin-bottom: 28px;
  text-align: center;
}

.collection-count-tag {
  font-family: var(--font-serif-accent);
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 6px;
}

.collection-main-title {
  font-size: 2.1rem;
  margin-bottom: 8px;
}

.collection-main-subtitle {
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 600;
  max-width: 680px;
  margin: 0 auto;
}

.collection-body-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.pain-scenarios {
  border-left: 2px solid rgba(243, 156, 18, 0.4);
  padding-left: 16px;
  margin-bottom: 20px;
}

.pain-scenarios p {
  font-size: 0.98rem;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.collection-narrative {
  font-size: 1.05rem;
  color: #e2e8f0;
  margin-bottom: 22px;
  line-height: 1.65;
}

.collection-mechanism-box {
  background: rgba(8, 13, 26, 0.7);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}

.mech-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.mech-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mech-step {
  background: rgba(243, 156, 18, 0.18);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.mech-arrow {
  color: var(--gold-primary);
  font-weight: 700;
}

.highlight-quote-card {
  background: rgba(243, 156, 18, 0.08);
  border-left: 3px solid var(--gold-primary);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
}

/* Mockup Coleção 1: Quando Tudo Aperta (Horizontal Urgent Card) */
.horizontal-card-preview {
  background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
  border: 2px solid #f39c12;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.h-card-tag {
  font-family: var(--font-serif-accent);
  font-size: 0.75rem;
  color: #f39c12;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.h-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.h-card-verse {
  background: rgba(0, 0, 0, 0.4);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: #fef08a;
  margin-bottom: 12px;
  border-left: 3px solid #f39c12;
}

.h-card-action, .h-card-prayer {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #e2e8f0;
}

/* Coleção 2: Quando Faltam Palavras (Estética Celestial & Delicada) */
.celestial-box {
  background: linear-gradient(145deg, #152238 0%, #0e1726 100%);
  border: 1px solid rgba(226, 232, 240, 0.3);
}

.celestial-pill {
  background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
  color: #0f172a;
}

.celestial-tag {
  color: #e2e8f0;
}

.celestial-title {
  color: #ffffff;
}

.celestial-sub {
  color: #cbd5e1;
}

.celestial-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.celestial-punch {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 16px;
}

.celestial-quote {
  border-left-color: #cbd5e1;
  color: #f8fafc;
}

.celestial-card-preview {
  background: linear-gradient(135deg, #faf7f2 0%, #f1ebe1 100%);
  border: 2px solid #d4af37;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  color: #1e293b;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.c-card-header {
  font-family: var(--font-serif-accent);
  font-size: 0.8rem;
  color: #92400e;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.c-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 18px;
}

.c-card-prayer-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  background: rgba(255, 255, 255, 0.7);
  padding: 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.c-card-footer {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

/* Coleção 3: Antes Que o Dia Te Engula (Estética Amanhecer) */
.sunrise-box {
  background: linear-gradient(145deg, #241410 0%, #140d12 100%);
  border: 1px solid rgba(251, 146, 60, 0.35);
}

.sunrise-pill {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  color: #ffffff;
}

.sunrise-tag {
  color: #fdba74;
}

.sunrise-sub {
  color: #fed7aa;
}

.sunrise-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.sunrise-quote {
  border-left-color: #f97316;
  color: #fed7aa;
}

.sunrise-card-preview {
  background: linear-gradient(135deg, #2c1a16 0%, #180e0c 100%);
  border: 2px solid #f97316;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.s-card-badge {
  font-family: var(--font-serif-accent);
  font-size: 0.8rem;
  color: #fb923c;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.s-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.s-card-text {
  font-size: 0.98rem;
  color: #fed7aa;
  line-height: 1.6;
  margin-bottom: 16px;
}

.s-card-action-box {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 600;
}

/* Coleção 4: Quando o Corpo Deita (Estética Noite Serena) */
.midnight-box {
  background: linear-gradient(145deg, #0d1326 0%, #070913 100%);
  border: 1px solid rgba(99, 102, 241, 0.35);
}

.midnight-pill {
  background: linear-gradient(135deg, #818cf8 0%, #4f46e5 100%);
  color: #ffffff;
}

.midnight-tag {
  color: #a5b4fc;
}

.midnight-sub {
  color: #c7d2fe;
}

.midnight-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.midnight-mech .mech-step {
  background: rgba(99, 102, 241, 0.2);
  color: #c7d2fe;
  border-color: rgba(99, 102, 241, 0.4);
}

.midnight-quote {
  border-left-color: #818cf8;
  color: #c7d2fe;
}

.midnight-card-preview {
  background: linear-gradient(135deg, #101735 0%, #080c1d 100%);
  border: 2px solid #6366f1;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.m-card-badge {
  font-family: var(--font-serif-accent);
  font-size: 0.8rem;
  color: #a5b4fc;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.m-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.m-card-block {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.m-card-prayer {
  background: rgba(99, 102, 241, 0.15);
  border-left: 3px solid #818cf8;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: #e0e7ff;
  margin-top: 12px;
}

/* --- SEÇÃO 13: VISÃO GERAL DO VOLUME (471 CARTAS) --- */
.total-collection-overview {
  background: radial-gradient(circle at 50% 30%, #152238 0%, #080d1a 80%);
}

.overview-box {
  background: rgba(17, 26, 46, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 50px 30px;
}

.summary-count-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin: 35px 0;
}

.count-card {
  background: #080d1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  transition: transform var(--transition-fast);
}

.count-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.big-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 6px;
}

.count-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

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

.total-math-banner {
  background: var(--gold-gradient);
  color: #0b1120;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 35px;
}

.math-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: block;
}

.math-result {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  margin: 4px 0 6px;
}

.math-sub {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.95;
}

.bonus-mockup-wrapper {
  max-width: 800px;
  margin: 0 auto 35px;
}

.bonus-img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
}

/* --- SEÇÃO 14: DIGITAL + IMPRESSÃO --- */
.formats-section {
  background: #0b1120;
  border-top: 1px solid var(--border-light);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.format-card {
  background: var(--bg-card-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform var(--transition-fast);
}

.format-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.format-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.format-title {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.format-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.format-bullets {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.format-bullets li {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.format-bullets li::before {
  content: "✓";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* --- SEÇÃO 15: COMO VOCÊ PODE USAR --- */
.how-to-use-section {
  background: radial-gradient(circle at center, #111a2e 0%, #080d1a 100%);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.use-case-card {
  background: var(--bg-card-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}

.use-num {
  font-family: var(--font-serif-accent);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.use-case-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.use-case-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- SEÇÃO 16: PARA QUEM É --- */
.target-audience-section {
  background: #0b1120;
  border-top: 1px solid var(--border-light);
}

.target-box {
  background: var(--bg-card-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(8, 13, 26, 0.6);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.check-icon {
  width: 26px;
  height: 26px;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.check-item p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* --- SEÇÃO 17: TRANSPARÊNCIA --- */
.transparency-section {
  background: #080d1a;
}

.transparency-card {
  background: var(--bg-card-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.transparency-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.info-icon {
  font-size: 2rem;
}

.transparency-header h2 {
  font-size: 1.35rem;
}

.transparency-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.green-title {
  color: #10b981;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.red-title {
  color: #f87171;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.clean-list {
  list-style: none;
}

.clean-list li {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* --- SEÇÃO 18: OFERTA & PREÇO --- */
.offer-section {
  background: radial-gradient(circle at 50% 20%, #1c2b4a 0%, #080d1a 80%);
  padding: 95px 0;
}

.offer-card {
  background: linear-gradient(145deg, #131d33 0%, #0b1120 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-xl);
  padding: 55px 40px;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.offer-badge-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #0b1120;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 24px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.offer-headline {
  font-size: 2.2rem;
  text-align: center;
  margin: 10px 0 12px;
}

.offer-sub {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.offer-summary-recap {
  background: rgba(8, 13, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 30px;
}

.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.recap-row:last-child {
  border-bottom: none;
}

.recap-check {
  color: #10b981;
  font-weight: 800;
}

.price-box {
  margin-bottom: 30px;
}

.price-prefix {
  font-size: 1.05rem;
  color: #cbd5e1;
  display: block;
  margin-bottom: 8px;
}

.price-main {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 10px;
}

.currency {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 10px;
  margin-right: 4px;
  color: var(--gold-light);
}

.amount {
  font-family: var(--font-heading);
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.cents {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 10px;
  color: var(--gold-light);
}

.price-terms span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.offer-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.checkout-affirmation {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-light);
  text-align: center;
}

.trust-icons-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

/* --- SEÇÃO 19: GARANTIA --- */
.guarantee-section {
  background: #0b1120;
}

.guarantee-box {
  background: var(--bg-card-navy);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 45px;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 35px;
  align-items: center;
}

.guarantee-badge-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.guarantee-seal-img {
  width: 155px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(243, 156, 18, 0.25));
  transition: transform var(--transition-normal);
}

.guarantee-seal-img:hover {
  transform: scale(1.04);
}

.guarantee-title {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.guarantee-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* --- SEÇÃO 20: FAQ --- */
.faq-section {
  background: radial-gradient(circle at center, #10192e 0%, #080d1a 100%);
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-primary);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  background: rgba(8, 13, 26, 0.5);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* --- SEÇÃO 21: FECHAMENTO & FOOTER --- */
.closing-section {
  background: #080d1a;
  border-top: 1px solid var(--border-light);
  padding: 85px 0 60px;
}

.closing-box {
  max-width: 800px;
  margin: 0 auto;
}

.closing-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.closing-text p {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 14px;
}

.highlight-gold {
  color: var(--gold-light) !important;
  font-weight: 600;
}

.closing-callout {
  font-size: 1.35rem !important;
  color: #ffffff !important;
  margin-bottom: 35px !important;
}

.final-offer-card {
  background: var(--bg-card-navy);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-brand {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.final-bullets {
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.final-price-tag {
  margin-bottom: 20px;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1;
}

.price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.legal-footer p {
  margin-bottom: 6px;
}

/* --- RESPONSIVE MEDIA QUERIES (MOBILE FIRST CRO) --- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 35px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-highlight-box {
    text-align: left;
  }

  .hero-visual {
    max-width: 540px;
    margin: 0 auto;
  }

  .collection-body-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .transparency-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 100%;
  }

  /* Oculta o banner de anúncio no mobile para priorizar a headline e a promessa central */
  .top-bar {
    display: none;
  }

  .hero {
    padding: 30px 0 40px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* Desestrutura .hero-text para que seus filhos sejam ordenados diretamente pelo flex container */
  .hero-text {
    display: contents;
  }

  /* 1. Badge / Tag (Centralizado) */
  .tag-pill {
    order: 1;
    align-self: center;
    margin: 0 auto 16px;
    font-size: 0.82rem;
    padding: 6px 16px;
    text-align: center;
  }

  /* 2. Headline (Centralizada e com bom respiro) */
  .hero-title {
    order: 2;
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 0;
    text-align: center;
  }

  .hero-title-sub {
    font-size: 0.9em;
  }

  /* 3. MOCKUP PRINCIPAL DO PRODUTO (IMEDIATAMENTE APÓS A HEADLINE) */
  .hero-visual {
    order: 3;
    width: 100%;
    margin: 22px auto 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 100%;
  }

  .hero-mockup-stage {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-mockup-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, rgba(30, 58, 138, 0.2) 50%, transparent 70%);
    filter: blur(35px);
    pointer-events: none;
  }

  .hero-img {
    width: 100%;
    max-width: 480px;
    max-height: 440px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.6));
    border-radius: 0;
  }

  /* REMOVE COMPLETAMENTE AS TAGS/CHIPS NO MOBILE */
  .hero-badges-wrapper,
  .floating-badge {
    display: none !important;
  }

  /* 4. Subheadline (Com respiro generoso) */
  .hero-subheadline {
    order: 4;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
  }

  /* 5. Linha de Situações (Com respiro generoso) */
  .hero-situations-line {
    order: 5;
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
  }

  /* 6. Mecanismo (Com respiro generoso) */
  .hero-mechanism-lead {
    order: 6;
    font-size: 0.96rem;
    margin-bottom: 24px;
    line-height: 1.65;
    text-align: left;
  }

  /* 7. Bloco de Posicionamento (Com respiro generoso) */
  .hero-highlight-box {
    order: 7;
    padding: 16px 18px;
    margin-bottom: 26px;
    font-size: 0.94rem;
    text-align: left;
    line-height: 1.65;
  }

  /* 8. CTA e Microcopys */
  .cta-wrapper {
    order: 8;
    margin-top: 6px;
    gap: 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    font-size: 1.05rem;
    padding: 1.05rem 1.4rem;
    width: 100%;
    max-width: 100%;
  }

  .microcopy-subtext {
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: center;
  }

  .microcopy-secondary {
    font-size: 0.78rem;
    margin-top: -2px;
    text-align: center;
  }

  .guarantee-micro {
    font-size: 0.8rem;
    margin-top: 2px;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .collection-container-box {
    padding: 40px 18px 26px;
    border-radius: var(--radius-lg);
  }

  .collection-badge-pill {
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    padding: 5px 16px;
  }

  .collection-main-title {
    font-size: 1.6rem;
  }

  .amount {
    font-size: 4.2rem;
  }

  .currency, .cents {
    font-size: 1.8rem;
  }

  .target-box {
    padding: 36px 20px;
    border-radius: var(--radius-lg);
    width: 100%;
    box-sizing: border-box;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .check-item {
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .transparency-card {
    padding: 35px 20px;
    border-radius: var(--radius-lg);
    width: 100%;
    box-sizing: border-box;
  }

  .guarantee-box {
    padding: 35px 20px;
    border-radius: var(--radius-lg);
    width: 100%;
    box-sizing: border-box;
  }

  .overview-box {
    padding: 35px 18px;
    border-radius: var(--radius-lg);
    width: 100%;
    box-sizing: border-box;
  }

  .formats-grid,
  .use-cases-grid,
  .tools-showcase-grid,
  .mechanism-steps-grid,
  .card-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .format-card,
  .tool-card,
  .step-card,
  .pillar-box {
    width: 100%;
    box-sizing: border-box;
  }

  .offer-card {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
    width: 100%;
  }

  .hero {
    padding: 22px 0 34px;
  }

  .tag-pill {
    align-self: center;
    margin: 0 auto 12px;
    font-size: 0.78rem;
    padding: 5px 14px;
    text-align: center;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.24;
    margin-bottom: 0;
    text-align: center;
  }

  .hero-title-sub {
    font-size: 0.9em;
  }

  .hero-visual {
    margin: 18px auto 24px;
  }

  .hero-img {
    max-width: 100%;
    max-height: 380px;
  }

  .hero-subheadline {
    font-size: 0.98rem;
    margin-bottom: 16px;
    line-height: 1.55;
  }

  .hero-situations-line {
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.55;
  }

  .hero-mechanism-lead {
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.58;
  }

  .hero-highlight-box {
    padding: 14px 16px;
    margin-bottom: 22px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .cta-btn {
    font-size: 0.98rem;
    padding: 0.95rem 1.2rem;
  }

  .microcopy-subtext {
    font-size: 0.78rem;
  }

  .microcopy-secondary {
    font-size: 0.74rem;
  }

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

  .summary-count-grid {
    grid-template-columns: 1fr 1fr;
  }

  .big-num {
    font-size: 1.8rem;
  }

  /* Card Flipper Mobile Styles */
  .flip-card-wrapper {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .card-flipper-container,
  .card-3d-inner {
    min-height: 440px;
  }

  .card-face {
    padding: 16px 14px;
    border-radius: var(--radius-md);
  }

  .card-top-row {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  .card-badge-num {
    font-size: 0.78rem;
  }

  .card-badge-cat {
    font-size: 0.72rem;
    padding: 2px 8px;
  }

  .card-topic-title {
    font-size: 1.12rem;
    margin: 6px 0 10px;
  }

  .card-verse-block {
    padding: 12px 14px;
    margin-bottom: 10px;
  }

  .verse-ref-tag {
    font-size: 0.76rem;
    margin-bottom: 5px;
  }

  .verse-quote-text {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .back-blocks-container {
    gap: 6px;
    margin: 2px 0 8px;
  }

  .back-block {
    padding: 8px 10px;
  }

  .back-block-title {
    font-size: 0.76rem;
    margin-bottom: 2px;
  }

  .back-block p {
    font-size: 0.82rem;
    line-height: 1.36;
  }

  .card-click-hint {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  /* Preview Cards das Coleções Especiais no Mobile */
  .horizontal-card-preview,
  .celestial-card-preview,
  .sunrise-card-preview,
  .midnight-card-preview {
    padding: 20px 15px;
    border-radius: var(--radius-md);
  }

  .h-card-title,
  .c-card-title,
  .s-card-title,
  .m-card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .c-card-prayer-text {
    font-size: 0.95rem;
    padding: 14px 12px;
  }

  /* Seção Para Quem É em Telas Pequenas */
  .target-box {
    padding: 28px 14px;
    border-radius: var(--radius-md);
  }

  .check-item {
    padding: 12px 12px;
    gap: 10px;
  }

  .check-item p {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .check-icon {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .card-flipper-container,
  .card-3d-inner {
    min-height: 455px;
  }

  .card-face {
    padding: 14px 10px;
  }

  .card-topic-title {
    font-size: 1.02rem;
  }

  .back-block {
    padding: 6px 8px;
  }

  .back-block p {
    font-size: 0.78rem;
    line-height: 1.32;
  }
}


