:root {
  --primary-bg: #22052E;
  --secondary-bg: #5A1A82;
  --text-gold: #D4A53A;
  --text-white: #FFFFFF;
  --btn-bg: #F0C75E;
  --btn-text: #22052E;
  --font-main: 'Outfit', 'Inter', sans-serif;
  --transition-speed: 0.3s;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--primary-bg);
  background-image: 
    linear-gradient(135deg, rgba(34, 5, 46, 0.85) 0%, rgba(90, 26, 130, 0.85) 100%),
    url('background.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
}

/* Glassmorphism utility */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

header {
  padding: 2rem 2rem 1rem 2rem;
  text-align: center;
}

.logo {
  max-width: 450px;
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s ease;
}

.hero {
  padding: 1rem 2rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero h1 span.gold {
  color: var(--text-gold);
}

.hero h1 u {
  text-decoration-color: var(--text-gold);
}

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

@media (min-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
}

.hero-text ul {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-text li {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 0;
}

.hero-text li::before {
  content: "✅";
}

.hero-image {
  max-width: 100%;
}

.hero-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.cta-btn {
  display: inline-block;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--transition-speed);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  margin-top: 2rem;
  cursor: pointer;
  border: none;
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(240, 199, 94, 0.4);
}

/* Section Styling */
section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto 5rem auto !important;
  display: block;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--text-white);
}

.section-title u {
  text-decoration-color: var(--text-gold);
}

.section-title.gold {
  color: var(--text-gold);
}

.text-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.2rem;
}

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

.text-block span.highlight {
  color: var(--text-gold);
  font-weight: bold;
}

/* Proof Section */
.proof-section {
  text-align: center;
}

.proof-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.proof-images img {
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform var(--transition-speed);
}

.proof-images img:hover {
  transform: scale(1.05);
}

/* Details Section */
.details-list {
  max-width: 800px;
  margin: 0 auto;
}

.details-list ul {
  list-style: none;
}

.details-list li {
  margin-bottom: 2rem;
  background: rgba(0,0,0,0.2);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 5px solid var(--text-gold);
  text-align: center;
}

.details-list li h3 {
  color: var(--text-gold);
  margin-bottom: 0.5rem;
}

/* Bonus Section */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.bonus-card {
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-speed);
}

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

.bonus-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.bonus-card h3 {
  color: var(--text-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Features List */
.features-list {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
}

.features-list ul {
  list-style: none;
}

.features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.features-list i {
  color: var(--text-gold);
  font-size: 1.5rem;
}

/* Pricing Section */
.pricing-section {
  text-align: center;
  padding: 4rem 2rem;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--text-gold);
  margin: 2rem 0;
}

/* Guarantee Section */
.guarantee-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-section img {
  max-width: 250px;
  margin-bottom: 2rem;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: rgba(0,0,0,0.3);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: rgba(0,0,0,0.5);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: rgba(255,255,255,0.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,0.5);
  font-size: 0.9rem;
  margin-top: 4rem;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .price {
    font-size: 2rem;
  }
}

.preview-carousel {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}
.preview-carousel::-webkit-scrollbar {
  height: 8px;
}
.preview-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.preview-carousel img {
  max-width: 80%;
  border-radius: 10px;
  scroll-snap-align: center;
  flex: 0 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
  .preview-carousel {
    justify-content: center;
  }
  .preview-carousel img {
    max-width: 250px;
  }
}

.evidence-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: inline-block;
  text-align: left;
}
.evidence-section ul li {
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
}
.evidence-section ul li i {
  color: #4CAF50;
  margin-right: 12px;
  font-size: 1.2rem;
}
.evidence-intro {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.6;
}
.evidence-intro u {
  text-decoration-color: var(--text-gold);
}
.evidence-intro b u {
  color: var(--text-gold);
}
.evidence-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.evidence-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  color: var(--text-white);
  font-weight: 400;
  font-size: 1.05rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--text-gold);
  line-height: 1.5;
}
.symptoms-section {
  text-align: center;
}
.symptoms-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  display: inline-block;
}
.symptoms-list li {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
}
.symptoms-list li i {
  color: #4CAF50;
  margin-right: 15px;
  margin-top: 4px;
}
.symptoms-list li b {
  color: var(--text-gold);
  margin-right: 5px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  color: var(--text-white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-speed);
}
.benefit-card:hover {
  transform: translateY(-5px);
}
.benefit-card i {
  font-size: 2.5rem;
  color: var(--text-gold);
  margin-bottom: 1.2rem;
}
.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-gold);
}
.benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
}
.conteudo-completo ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}
.conteudo-completo > ul > li {
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: var(--text-gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}
.conteudo-completo ul ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
  border: none;
}
.conteudo-completo ul ul li {
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  position: relative;
  color: var(--text-white);
  border: none;
  padding-bottom: 0;
}
.conteudo-completo ul ul li:before {
  content: "\f111"; /* FontAwesome circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-size: 0.5rem;
  position: absolute;
  left: -20px;
  top: 8px;
  color: var(--text-gold);
}
