/* ============================================================
   TREINAMENTO PARA MINISTÉRIO INFANTIL - Sales Page Styles
   Color Palette: Purple/Violet (#7c3aed) + Gold (#fbbf24)
   ============================================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, #0d0a1f 0%, #1a1040 30%, #0d0a1f 100%);
  color: #f0e6ff;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === CONTAINER === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === TYPOGRAPHY === */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.2;
}

.section-title .highlight {
  color: #fbbf24;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #c4b0e0;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* === HERO SECTION === */
.hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #c4b5fd;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.hero-title .gold {
  color: #fbbf24;
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 0.5rem;
}

.hero-description {
  font-size: 1rem;
  color: #b8a6d4;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-benefits {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #ddd0f0;
}

.hero-benefits li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #a78bfa;
  margin-top: 2px;
}

.hero-image {
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(124, 58, 237, 0.35));
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.03);
}

/* === CTA BUTTON === */
.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1a1040;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
  animation: pulse-glow 2.5s ease-in-out infinite;
  text-decoration: none;
  line-height: 1.3;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(251, 191, 36, 0.5);
}

.cta-btn .cta-price {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.cta-btn .cta-old-price {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 0.4rem;
  font-weight: 500;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 25px rgba(251, 191, 36, 0.25); }
  50% { box-shadow: 0 0 45px rgba(251, 191, 36, 0.5); }
}

/* === TRUST BADGES === */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #a89bc4;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: #a78bfa;
}

/* === VALUE PROPOSITION CARDS === */
.value-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

.value-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-card .card-icon svg {
  width: 24px;
  height: 24px;
  color: #c4b5fd;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.92rem;
  color: #b8a6d4;
  line-height: 1.6;
}

/* === FOR WHO SECTION === */
.for-who-section {
  padding: 4rem 0;
}

.for-who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.for-who-card {
  background: rgba(15, 12, 35, 0.7);
  border-radius: 16px;
  padding: 2rem;
}

.for-who-card.for-yes {
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.for-who-card.for-no {
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.for-who-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.for-yes .for-who-title {
  color: #34d399;
}

.for-yes .for-who-title svg {
  width: 24px;
  height: 24px;
  color: #34d399;
}

.for-no .for-who-title {
  color: #f87171;
}

.for-no .for-who-title svg {
  width: 24px;
  height: 24px;
  color: #f87171;
}

.for-who-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.for-who-card li {
  font-size: 0.93rem;
  color: #d4c6eb;
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.5;
}

.for-yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 700;
  font-size: 1rem;
}

.for-no li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
  font-size: 0.95rem;
}

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

/* === CURRICULUM SECTION (Card-Based) === */
.curriculum-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.section-title-icon {
  width: 28px;
  height: 28px;
  color: #60a5fa;
  vertical-align: middle;
  margin-right: 0.4rem;
}

.curriculum-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.curr-card {
  background: rgba(15, 12, 35, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.curr-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Left card: bullet list */
.curr-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.curr-bullet-list li {
  font-size: 0.95rem;
  color: #d4c6eb;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.curr-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #a78bfa;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* Right card: icon list */
.curr-icon-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.curr-icon-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #d4c6eb;
  line-height: 1.4;
}

.curr-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curr-icon svg {
  width: 20px;
  height: 20px;
}

/* Access badge */
.curr-access-badge {
  margin-top: 1.8rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #c4b5fd;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.curr-access-badge span {
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.3);
  text-underline-offset: 3px;
}

.curr-access-badge span:first-child {
  text-decoration-color: rgba(251, 191, 36, 0.4);
  color: #fbbf24;
}

/* Quote box */
.curr-quote-box {
  background: rgba(15, 12, 35, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
}

.curr-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: #c4b5fd;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.curr-quote-box .cta-btn {
  text-transform: none;
  font-size: 1.05rem;
  letter-spacing: 0;
}


/* === TESTIMONIALS === */
.testimonials-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: rgba(167, 139, 250, 0.15);
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.8rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #fbbf24;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: #d4c6eb;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
}

.testimonial-info .t-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.9rem;
}

.testimonial-info .t-role {
  font-size: 0.8rem;
  color: #a89bc4;
}

/* === FINAL CTA — Último Convite === */
.final-cta {
  padding: 4rem 0 3rem;
  text-align: center;
}

.ultimo-convite {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 20px;
  padding: 3rem 2rem;
  background: rgba(10, 8, 25, 0.8);
}

.uc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
  border-radius: 50%;
}

.uc-icon svg {
  width: 28px;
  height: 28px;
  color: #fbbf24;
}

.uc-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
}

.uc-subtitle {
  font-size: 1rem;
  color: #b8a6d4;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.uc-summary-box {
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  display: inline-block;
  text-align: left;
}

.uc-summary-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.uc-summary-box li {
  font-size: 1rem;
  color: #d4c6eb;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.uc-summary-box li strong {
  color: #fbbf24;
}

.uc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a78bfa;
  flex-shrink: 0;
}

.uc-dot.gold {
  background: #fbbf24;
}

.ultimo-convite .cta-btn {
  margin-bottom: 1.5rem;
  text-transform: none;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.uc-verse {
  font-style: italic;
  color: #a89bc4;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 450px;
  margin: 0 auto;
}

/* === FAQ SECTION === */
.faq-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: rgba(15, 12, 35, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.4);
}

.faq-item[open] {
  border-color: rgba(124, 58, 237, 0.35);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-chevron svg {
  width: 18px;
  height: 18px;
  color: #a78bfa;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.3rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #b8a6d4;
  line-height: 1.65;
}

/* === FOOTER === */

/* === DECORATIVE CHILDREN IMAGES === */
.deco-child {
  position: absolute;
  width: 200px;
  height: auto;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 30%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 70% at center, black 30%, transparent 72%);
}

.deco-child.deco-right {
  right: 1rem;
}

.deco-child.deco-left {
  left: 1rem;
}

.deco-child.deco-top {
  top: 2rem;
  transform: none;
}

.deco-child.deco-bottom {
  top: auto;
  bottom: 1rem;
  transform: none;
}

@media (min-width: 1200px) {
  .deco-child {
    display: block;
    width: 180px;
  }
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(124, 58, 237, 0.12);
  text-align: center;
  color: #6b5b8a;
  font-size: 0.8rem;
}

/* === STICKY MOBILE CTA === */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 10, 31, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(124, 58, 237, 0.25);
  padding: 0.8rem 1rem;
  z-index: 100;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .cta-btn {
  width: 100%;
  max-width: 400px;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  animation: none;
}

/* === SCROLL ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* === SEPARATOR === */
.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #fbbf24);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hero .container {
    flex-direction: row;
    text-align: left;
  }

  .hero-content {
    text-align: left;
    flex: 1;
  }

  .hero-benefits {
    margin-left: 0;
  }

  .hero-image {
    max-width: 380px;
  }

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

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

  .final-cta h2 {
    font-size: 2.2rem;
  }
}

/* === GUARANTEE === */
.guarantee-box {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.guarantee-box svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: #a78bfa;
}

.guarantee-box .g-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.guarantee-box .g-text {
  font-size: 0.82rem;
  color: #b8a6d4;
  line-height: 1.5;
}

/* === VIEWERS COUNTER === */
.viewers-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
}

.viewers-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
