/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variáveis de cores e design system */
:root {
  --background: hsl(245, 20%, 95%);
  --foreground: hsl(258, 30%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(258, 30%, 20%);
  --primary: hsl(258, 85%, 65%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(280, 15%, 85%);
  --secondary-foreground: hsl(258, 30%, 20%);
  --muted: hsl(280, 15%, 92%);
  --muted-foreground: hsl(258, 20%, 50%);
  --accent: hsl(45, 90%, 70%);
  --accent-foreground: hsl(258, 30%, 20%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --border: hsl(280, 15%, 88%);
  --radius: 0.75rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}


/* Padding lateral apenas nos textos do hero em telas pequenas */
@media (max-width: 767px) {
  .hero-text {
    padding: 0 1.5rem; /* 👈 adiciona espaçamento lateral */
  }

  .hero-title,
  .hero-subtitle,
  .hero-description {
    text-align: center;
  }
}



/* Responsividade aprimorada */
@media (max-width: 767px) {
  /* Todas as grades empilham verticalmente */
  .grid,
  .grid-2,
  .grid-3,
  .hero-grid,
  .author-grid {
    grid-template-columns: 1fr !important;
  }

  /* Centraliza os textos e botões */
  .hero-text,
  .section-title,
  .author-content,
  .price-container {
    text-align: center !important;
  }

  /* Ajusta imagens para não ficarem lado a lado */
  .hero-image-wrapper,
  .author-image {
    margin: 0 auto;
    display: block;
  }

  /* Dá espaçamento entre os blocos empilhados */
  .grid > * {
    margin-bottom: 1.5rem;
  }

  /* Corrige alinhamento dos cartões */
  .benefit-card,
  .target-card,
  .bonus-card,
  .testimonial-card,
  .pricing-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Reduz o padding para mobile */
  .section {
    padding: 3rem 1rem;
  }
}


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


}
/* Utility classes */
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.italic { font-style: italic; }

/* Gradients */
.gradient-mystical {
  background: linear-gradient(135deg, hsl(258, 85%, 65%), hsl(280, 70%, 55%));
}

.gradient-golden {
  background: linear-gradient(135deg, hsl(45, 90%, 70%), hsl(35, 85%, 65%));
}

.gradient-hero {
  background: linear-gradient(135deg, hsl(258, 85%, 65%) 0%, hsl(280, 70%, 55%) 50%, hsl(45, 90%, 70%) 100%);
}

.gradient-card {
  background: linear-gradient(145deg, hsl(0, 0%, 100%) 0%, hsl(280, 15%, 98%) 100%);
}

/* Shadows */
.shadow-mystical {
  box-shadow: 0 10px 40px -10px hsla(258, 85%, 65%, 0.3);
}

.shadow-golden {
  box-shadow: 0 8px 32px -8px hsla(45, 90%, 70%, 0.4);
}

.shadow-card {
  box-shadow: 0 4px 20px -4px hsla(258, 30%, 20%, 0.1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title .accent-text {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-foreground);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--primary-foreground);
  opacity: 0.8;
  max-width: 48rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  transition: transform 0.5s;
}

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

/* Button styles */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-hero {
  background: hsla(0, 0%, 100%, 0.1);
  color: var(--primary-foreground);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  animation: pulse 2s infinite;
}

.btn-hero:hover {
  background: hsla(0, 0%, 100%, 0.2);
  animation: none;
}

.btn-mystical {
  background: linear-gradient(135deg, hsl(258, 85%, 65%), hsl(280, 70%, 55%));
  color: var(--primary-foreground);
}

.btn-mystical:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -10px hsla(258, 85%, 65%, 0.5);
}

.btn-golden {
  background: linear-gradient(135deg, hsl(45, 90%, 70%), hsl(35, 85%, 65%));
  color: var(--accent-foreground);
}

.btn-golden:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px -8px hsla(45, 90%, 70%, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

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

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

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

/* Card styles */
.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.3s;
}

.card-hover:hover {
  transform: translateY(-8px);
}

/* Section styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.section-bg-secondary {
  background: linear-gradient(to bottom right, hsla(280, 15%, 85%, 0.5), hsla(280, 15%, 92%, 0.3));
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

/* Benefits Section */
.benefit-card {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  background: linear-gradient(135deg, hsl(258, 85%, 65%), hsl(280, 70%, 55%));
  padding: 0.75rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--muted-foreground);
}

/* Testimonials */
.testimonial-card {
  padding: 1.5rem;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-text {
  color: var(--foreground);
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--primary);
}

.author-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Pricing */
.pricing-card {
  padding: 2rem;
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  white-space: nowrap;
}

.price-container {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-large {
  font-size: 3rem;
}

.price-strikethrough {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 1.125rem;
}

.price-feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Target Audience */
.target-card {
  padding: 1.5rem;
}

.target-icon-wrapper {
  background: linear-gradient(135deg, hsl(258, 85%, 65%), hsl(280, 70%, 55%));
  padding: 0.75rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.not-for-card {
  padding: 1.5rem;
  background: linear-gradient(to bottom right, hsla(0, 84.2%, 60.2%, 0.1), hsla(0, 84.2%, 60.2%, 0.05));
  border: 1px solid hsla(0, 84.2%, 60.2%, 0.2);
}

.x-icon {
  color: var(--destructive);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Bonus Section */
.bonus-card {
  padding: 2rem;
  text-align: center;
}

.bonus-icon-wrapper {
  background: hsla(258, 30%, 20%, 0.1);
  border-radius: 9999px;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.bonus-icon {
  width: 2rem;
  height: 2rem;
  color: var(--accent-foreground);
}

.bonus-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-foreground);
  margin-bottom: 1rem;
}

.bonus-description {
  color: var(--accent-foreground);
  opacity: 0.8;
}

/* About Author */
.author-image {
  width: 16rem;
  height: 16rem;
  object-fit: cover;
  border-radius: 9999px;
  margin: 0 auto;
  transition: transform 0.3s;
}

.author-image:hover {
  transform: scale(1.05);
}

.author-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.author-name-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.author-bio {
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.7;
}

/* FAQ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.accordion-trigger:hover {
  color: var(--primary);
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  display: none;
}

.accordion-content.active {
  display: block;
}

.accordion-icon {
  transition: transform 0.2s;
}

.accordion-icon.active {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  padding: 3rem 0;
}

.footer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-description {
  color: var(--primary-foreground);
  opacity: 0.8;
  max-width: 48rem;
  margin: 0 auto;
}

.footer-divider {
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-credits {
  color: var(--primary-foreground);
  opacity: 0.6;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.heart-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  fill: var(--accent);
}

/* Responsive design */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-text {
    text-align: left;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .author-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Image with overlay */
.image-wrapper {
  width: 100%;
  max-width: 64rem;
  margin: 2rem auto 3rem;
}

.section-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Spacing utilities */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.gap-4 { gap: 1rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Max widths */
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }

/* Positioning */
.relative { position: relative; 

background:linear-gradient(135deg, rgb(135, 90, 242) 0%, rgb(167, 60, 221) 50%, rgb(247, 213, 110) 100%);
}

/* Colors */
.text-primary { color: var(--primary); }
.text-foreground { color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }
.text-destructive { color: var(--destructive); }
