/* =====================================================
   CATEQUESE CRISMA - PÁGINA DE VENDAS
   Paleta: Azul Marinho Profundo, Dourado Champagne, Off-white
   Estilo: Premium, Sacro-Moderno, Minimalista
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Cores Primárias */
  --navy-deep: #0a1628;
  --navy-medium: #1a2744;
  --navy-light: #2a3a5c;
  
  /* Dourados */
  --gold-primary: #c9a962;
  --gold-light: #e2cc8e;
  --gold-champagne: #f5e6c4;
  --gold-dark: #a88b44;
  
  /* Neutros */
  --off-white: #faf8f5;
  --cream: #f5f2ec;
  --gray-100: #f7f5f2;
  --gray-200: #e8e5e0;
  --gray-300: #d1cdc6;
  --gray-400: #9c978e;
  --gray-500: #6b665c;
  --gray-600: #4a463e;
  --gray-700: #2e2b26;
  --gray-800: #1a1816;
  
  /* Estados */
  --success: #22c55e;
  --success-dark: #16a34a;
  --error: #ef4444;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(10, 22, 40, 0.1), 0 2px 4px -1px rgba(10, 22, 40, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(10, 22, 40, 0.1), 0 4px 6px -2px rgba(10, 22, 40, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(10, 22, 40, 0.1), 0 10px 10px -5px rgba(10, 22, 40, 0.04);
  --shadow-gold: 0 0 20px rgba(201, 169, 98, 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--off-white);
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-width: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   TIPOGRAFIA
   ===================================================== */

.heading-serif {
  font-family: 'Fredoka', cursive;
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1, h2, h3 {
  font-family: 'Fredoka', cursive;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
  font-size: 1rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Prevenir overflow em elementos filhos */
section {
  overflow-x: hidden;
}

/* =====================================================
   UTILITÁRIOS
   ===================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.text-navy { color: var(--navy-deep); }
.text-gold { color: var(--gold-primary); }
.text-gray { color: var(--gray-500); }

.bg-navy { background-color: var(--navy-deep); }
.bg-navy-medium { background-color: var(--navy-medium); }
.bg-cream { background-color: var(--cream); }
.bg-off-white { background-color: var(--off-white); }

.gradient-gold-text {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-navy-bg {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
}

/* =====================================================
   BOTÕES
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--success), var(--success-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
  border-bottom: 4px solid #15803d;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
  border-bottom-width: 2px;
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  background: var(--gray-200);
  border-color: var(--gray-300);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: white;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.5);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero-section {
  position: relative;
  padding: 3rem 1rem 5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold-champagne) 0%, transparent 70%);
  opacity: 0.4;
  transform: translate(30%, -30%);
  filter: blur(60px);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--navy-deep) 0%, transparent 70%);
  opacity: 0.05;
  transform: translate(-30%, 30%);
  filter: blur(80px);
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-deep));
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(201, 169, 98, 0); }
}

.hero-title {
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Video Container */
.video-container {
  position: relative;
  max-width: 380px;
  margin: 0 auto 2rem;
}

.video-frame {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--navy-deep);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  border-radius: inherit;
  transform: rotate(3deg);
  z-index: -1;
  opacity: 0.15;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
  opacity: 1;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-overlay img {
  width: 94%;
  height: auto;
  opacity: 0.5;
}

.social-proof-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: bounce-subtle 2s infinite;
}

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

.social-proof-badge .icon {
  width: 40px;
  height: 40px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-proof-badge .icon svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.social-proof-badge .text {
  font-size: 0.75rem;
}

.social-proof-badge .number {
  font-weight: 800;
  color: var(--navy-deep);
}

/* =====================================================
   SEÇÃO: IDEAL PARA VOCÊ
   ===================================================== */

.ideal-section {
  padding: 5rem 1rem;
  background: var(--off-white);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  margin: 0 auto 3rem;
  border-radius: 2px;
}

.ideal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .ideal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ideal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ideal-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.ideal-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-champagne);
  transform: translateY(-4px);
}

.ideal-card .icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform var(--transition-base);
}

.ideal-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.ideal-card .icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: var(--gold-light);
}

.ideal-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--navy-deep);
}

.ideal-card p {
  font-size: 0.938rem;
  color: var(--gray-500);
}

/* =====================================================
   SEÇÃO: O QUE VOCÊ RECEBE
   ===================================================== */

.receive-section {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
  position: relative;
  overflow: hidden;
}

.receive-section::before {
  content: '✝';
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 8rem;
  color: var(--gold-primary);
  opacity: 0.03;
}

.receive-card {
  background: white;
  border-radius: 2rem;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.receive-header {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  padding: 1.5rem 2rem;
  text-align: center;
}

.receive-header h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.receive-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.938rem;
}

.receive-content {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .receive-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

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

.receive-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.receive-list li:last-child {
  border-bottom: none;
}

.receive-list .check-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--success), var(--success-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.receive-list .check-icon svg {
  width: 14px;
  height: 14px;
  color: white;
}

.receive-list span {
  font-size: 0.938rem;
  color: var(--gray-600);
}


.receive-mockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.mockup-image {
  max-width: 360px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  border-radius: 1rem;
}

.receive-cta {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

/* =====================================================
   SEÇÃO: BÔNUS
   ===================================================== */

.bonus-section {
  padding: 5rem 1rem;
  background: var(--off-white);
}

.bonus-section .section-subtitle {
  text-align: center;
  color: var(--success);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.bonus-section .section-description {
  text-align: center;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

@media (min-width: 640px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-100);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-champagne);
  transform: translateY(-6px);
}

.bonus-card .image-wrapper {
  background: var(--gray-100);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/10;
}

.bonus-card .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.bonus-card .content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bonus-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.bonus-card .original-price {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.bonus-card .free-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--success), var(--success-dark));
  color: white;
  font-size: 0.688rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.bonus-total-card {
  background: var(--navy-deep);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bonus-total-card svg {
  width: 40px;
  height: 40px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.bonus-total-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.bonus-total-card .original {
  color: var(--gray-400);
  text-decoration: line-through;
}

.bonus-total-card .free {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--success);
  margin-top: 0.5rem;
}

.bonus-total-card .note {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
}

/* =====================================================
   SEÇÃO: DEPOIMENTOS
   ===================================================== */

.testimonials-section {
  padding: 5rem 1rem;
  background: var(--cream);
  overflow: hidden;
}

.testimonials-carousel {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.testimonials-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.testimonials-viewport:active {
  cursor: grabbing;
}

.testimonials-viewport::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 1rem 0;
}

.testimonial-card {
  flex: 0 0 300px;
  min-width: 0;
  scroll-snap-align: start;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Text-based testimonials */
.testimonial-card.testimonial-text {
  flex: 0 0 320px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 220px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card.testimonial-text:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 0.75rem;
}

.author-name {
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 0.9rem;
}

.author-parish {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-btn:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: white;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.testimonials-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 1.5rem;
}

/* =====================================================
   SEÇÃO: PRICING
   ===================================================== */

.pricing-section {
  padding: 5rem 1rem;
  background: var(--cream);
  position: relative;
}

.pricing-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.pricing-urgency svg {
  width: 24px;
  height: 24px;
  color: var(--error);
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pricing-urgency .timer-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--error);
  text-transform: uppercase;
}

.pricing-urgency .timer {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-deep);
  font-variant-numeric: tabular-nums;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.pricing-card.basic {
  opacity: 0.9;
}

.pricing-card.basic:hover {
  opacity: 1;
}

.pricing-card.premium {
  border-color: var(--gold-primary);
  position: relative;
  transform: scale(1.02);
}

.pricing-card.premium::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem;
  border-radius: 1.5rem 1.5rem 0 0;
  letter-spacing: 0.1em;
}

.pricing-card.premium {
  padding-top: 3rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

.pricing-card .social-count {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.pricing-card .original-price {
  font-size: 1rem;
  color: var(--error);
  text-decoration: line-through;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy-deep);
}

.pricing-card.premium .price {
  color: var(--gold-primary);
}

.pricing-card .payment-note {
  font-size: 0.688rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features li.no svg {
  color: var(--gray-300);
}

.pricing-bonus {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--gray-200);
}

.pricing-bonus-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.688rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
}

.pricing-bonus-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--gold-primary);
  stroke-width: 2.5;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card .security-note {
  text-align: center;
  font-size: 0.625rem;
  color: var(--gray-400);
  margin-top: 1rem;
}

/* =====================================================
   SEÇÃO: AUTOR
   ===================================================== */

.author-section {
  padding: 5rem 1rem;
  background: var(--off-white);
}

.author-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .author-content {
    flex-direction: row;
  }
}

.author-image {
  position: relative;
  width: 100%;
  max-width: 280px;
}

.author-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-champagne);
  border-radius: 50%;
  transform: translate(12px, 12px);
}

.author-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
}

.author-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .author-text {
    text-align: left;
  }
}

.author-text .label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.author-text p {
  color: var(--gray-500);
  margin-bottom: 1rem;
  font-size: 0.938rem;
}

.author-quote {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.author-quote p {
  margin-bottom: 0.5rem;
}

.author-quote .highlight {
  font-weight: 700;
  color: var(--navy-deep);
}

/* =====================================================
   SEÇÃO: FAQ
   ===================================================== */

.faq-section {
  padding: 5rem 1rem;
  background: var(--cream);
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.938rem;
  color: var(--navy-deep);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* =====================================================
   SEÇÃO: GARANTIA
   ===================================================== */

.guarantee-section {
  padding: 5rem 1rem;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  text-align: center;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--success);
}

.guarantee-section h2 {
  margin-bottom: 1rem;
}

.guarantee-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--gray-500);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: var(--navy-deep);
  color: white;
  padding: 3rem 1rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Fredoka', cursive;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* =====================================================
   TOAST DE PROVA SOCIAL (estilo página original)
   ===================================================== */

.social-proof-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  max-width: 340px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              opacity 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-proof-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.toast-icon svg {
  width: 26px;
  height: 26px;
  color: white;
  stroke-width: 2.5;
}

.toast-content {
  flex: 1;
  min-width: 0;
}

.toast-name {
  font-weight: 700;
  font-size: 0.95rem;
    font-size: 0.85rem;
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-action {
  font-size: 0.825rem;
  color: var(--gray-600);
  margin: 0 0 2px 0;
}

.toast-action strong {
  color: var(--gold-primary);
}

.toast-time {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin: 0;
}

.toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.toast-close:hover {
  opacity: 1;
  color: var(--gray-600);
}

/* =====================================================
   MODAL DE UPGRADE / DESCONTO
   ===================================================== */

.upgrade-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.upgrade-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.upgrade-modal {
  background: linear-gradient(145deg, #1a0a28 0%, #2d1345 50%, #4a1d6e 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(201, 169, 98, 0.3);
  margin: auto;
}

.upgrade-modal-overlay.show .upgrade-modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.75rem;
    font-size: 0.85rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: white;
}

.modal-wait {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 0.75rem 0;
  animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

.modal-header h3 {
  font-family: var(--font-heading-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  text-transform: none;
}

.modal-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0.25rem 0;
}

.discount-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--navy-deep);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.modal-price {
  margin: 1.5rem 0;
}

.modal-price .old-price {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.modal-price .old-price s {
  color: #ef4444;
}

.modal-price .new-price {
  display: block;
  font-family: var(--font-heading-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: #22c55e;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.modal-price .new-price sup {
  font-size: 1.5rem;
  vertical-align: super;
  margin-left: 2px;
}

.modal-price .savings {
  display: block;
  color: #22c55e;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.modal-benefits {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  text-align: left;
}

.modal-benefits .benefits-title {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
}

.modal-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-benefits li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  padding: 0.375rem 0;
}

.modal-benefits li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.btn-upgrade {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.1rem 2rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-upgrade:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(34, 197, 94, 0.5);
}

.btn-no-thanks {
  display: block;
  width: 100%;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.875rem;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.btn-no-thanks:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.modal-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 1rem 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-urgency svg {
  animation: pulse-icon 1.5s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

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

/* Tablets e telas médias */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pricing-card.premium {
    transform: none;
  }
  
  .receive-content {
    flex-direction: column;
  }
  
  .receive-mockup {
    max-width: 400px;
    margin: 2rem auto 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  
  .container {
    padding: 0 1rem;
  }

  p {
    font-size: 1.05rem;
    line-height: 1.75;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 2.5rem 0 3.5rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .video-container {
    max-width: 100%;
    padding: 0;
  }
  
  .video-frame {
    border-radius: 1rem;
    padding: 0.5rem;
  }
  
  .social-proof-badge {
    position: relative;
    bottom: auto;
    right: auto;
    transform: none;
    margin-top: 1rem;
    justify-content: center;
  }
  
  /* Section titles */
  .section-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  
  .section-description {
    font-size: 1.05rem;
  }
  
  /* Ideal Section */
  .ideal-section {
    padding: 3.5rem 0;
  }
  
  .ideal-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .ideal-card {
    padding: 1.5rem;
  }
  
  .ideal-card h3 {
    font-size: 1.25rem;
  }
  
  .ideal-card p {
    font-size: 1rem;
  }
  
  /* Receive Section */
  .receive-section {
    padding: 3.5rem 0;
  }
  
  .receive-card {
    padding: 0;
  }
  
  .receive-header h2 {
    font-size: 1.75rem;
  }

  .receive-header p {
    font-size: 1rem;
  }
  
  .receive-list li {
    font-size: 1rem;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .receive-list span {
    font-size: 1rem;
  }
  
  .receive-list .check-icon {
    min-width: 28px;
    width: 28px;
    height: 28px;
    margin-top: 2px;
  }
  
  .receive-mockup {
    max-width: 100%;
    width: 100%;
    margin: 2rem auto 0;
    align-items: center;
  }

  .mockup-image {
    display: block;
    margin: 0 auto;
  }

  .receive-cta {
    margin: 0 auto;
  }
  
  /* Bonus Section */
  .bonus-section {
    padding: 3.5rem 0;
  }

  .bonus-section .section-subtitle {
    font-size: 0.95rem;
  }

  .bonus-section .section-description {
    font-size: 1.05rem;
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .bonus-card {
    flex-direction: column;
    text-align: center;
  }
  
  .bonus-card .image-wrapper {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .bonus-card .content h4 {
    font-size: 1.1rem;
  }

  .bonus-card .original-price {
    font-size: 0.85rem;
  }

  .bonus-card .free-tag {
    font-size: 0.8rem;
  }
  
  .bonus-total-card {
    padding: 1.5rem;
  }
  
  /* Testimonials */
  .testimonials-section {
    padding: 3.5rem 0;
  }
  
  .testimonial-card.testimonial-text {
    flex: 0 0 280px;
    padding: 1.25rem;
    min-height: 200px;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
  
  .testimonials-note {
    font-size: 0.95rem;
  }
  
  /* Pricing Section */
  .pricing-section {
    padding: 3.5rem 0;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 1.75rem;
  }
  
  .pricing-card h3 {
    font-size: 1.6rem;
  }
  
  .pricing-card .price {
    font-size: 2.75rem;
  }

  .pricing-card .payment-note {
    font-size: 0.75rem;
  }
  
  .pricing-features li {
    font-size: 0.95rem;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .pricing-features li svg {
    min-width: 20px;
    margin-top: 2px;
  }
  
  .pricing-bonus-item {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
  
  .pricing-urgency {
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .pricing-urgency .timer {
    font-size: 1.4rem;
  }

  .pricing-card .security-note {
    font-size: 0.75rem;
  }
  
  /* Author Section */
  .author-section {
    padding: 3.5rem 0;
  }
  
  .author-content {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image {
    max-width: 200px;
    margin: 0 auto 1.5rem;
  }
  
  .author-text {
    text-align: left;
  }
  
  .author-text p {
    font-size: 1.05rem;
  }
  
  .author-quote {
    padding: 1rem;
    font-size: 1rem;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-parish {
    font-size: 0.9rem;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 3.5rem 0;
  }
  
  .faq-question {
    font-size: 1.05rem;
    padding: 1rem;
    text-align: left;
  }
  
  .faq-answer {
    padding: 0;
  }
  
  .faq-answer p {
    font-size: 1rem;
    padding: 0 1rem 1rem;
  }
  
  /* Guarantee Section */
  .guarantee-section {
    padding: 3.5rem 0;
  }
  
  .guarantee-section h2 {
    font-size: 1.65rem;
  }
  
  .guarantee-section p {
    font-size: 1.05rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-logo {
    font-size: 1.25rem;
  }
  
  .footer-disclaimer {
    font-size: 0.85rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }
  
  /* Buttons */
  .btn {
    display: flex;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
  }
  
  .btn-xl {
    padding: 1.25rem 2.25rem;
    font-size: 1.1rem;
  }
  
  /* Toast */
  .social-proof-toast {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
  
  /* Modal */
  .upgrade-modal {
    padding: 1.5rem 1.25rem;
    margin: 1rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .modal-header h3 {
    font-size: 1rem;
  }
  
  .modal-wait {
    font-size: 1.25rem;
  }
  
  .modal-price .new-price {
    font-size: 2.75rem;
  }
  
  .modal-benefits {
    padding: 0.875rem 1rem;
  }
  
  .modal-benefits li {
    font-size: 0.85rem;
  }
  
  .btn-upgrade {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .hero-section,
  .ideal-section,
  .receive-section,
  .bonus-section,
  .testimonials-section,
  .pricing-section,
  .author-section,
  .faq-section,
  .guarantee-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 1.85rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .pricing-card .price {
    font-size: 2.5rem;
  }
  
  .ideal-card {
    padding: 1rem;
  }
  
  .receive-card {
    padding: 0;
  }
  
  .receive-header h2 {
    font-size: 1.55rem;
  }
  
  .bonus-card {
    padding: 1rem;
  }
  
  .testimonial-card {
    min-width: 260px;
  }
  
  .modal-price .new-price {
    font-size: 2.5rem;
  }
  
  .carousel-nav {
    gap: 0.5rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

