:root {
  --color-primary: #d0ad32;
  --color-primary-dark: #cc7e0a;
  --color-green: #13ea00;
  --color-dark-bg: #0d0d0d;
  --color-light-text: #ffffff;
  --color-grey-text: #bcbcbc;
  --font-family: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-dark-bg);
  color: var(--color-light-text);
  font-family: var(--font-family);
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #0d0d0d;
}
body::-webkit-scrollbar-thumb {
  background-color: #dfad6b;
  border-radius: 10px;
  border: 2px solid #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  text-align: center;
}

h2 {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -2px;
}

p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-grey-text);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.cta-button {
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: -0.9px;
  padding: 1em 5em;
  border-radius: 8px;
  background-image: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  box-shadow: 0 9px 22px 0 rgba(0, 0, 0, 0.34);
  transition: transform 0.3s ease;
  text-align: center;
}

.cta-button:hover,
.news-grid img:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero .logo {
  max-width: 250px;
  margin-bottom: 20px;
}
.hero h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  max-width: 700px;
  margin: 20px auto 30px auto;
  text-align: center;
}
.video-area {
  max-width: 800px;
  margin: 0 auto;
}
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: none;
}
.hero-cta-block {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.viewers-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.viewers-counter p {
  color: #faac05;
  font-weight: 500;
}
.hero-cta-block .cta-button {
  width: 100%;
  max-width: 400px;
}

/* Modules Section */
.modules-section h2 {
  color: #000;
  margin-bottom: 40px;
}
.modules-section {
  background-color: #fff;
}
.swiper-modules {
  width: 100%;
  overflow: hidden;
}
.swiper-modules .swiper-slide {
  width: auto;
}
.swiper-modules img {
  max-width: 300px;
  border-radius: 10px;
}

/* Warning Section */
.warning-section {
  background-color: #feca13;
  border: 2px solid #000;
  border-radius: 15px;
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1000px;
}
.warning-section h2 {
  color: #000;
  font-size: clamp(1.8rem, 4vw, 2.6em);
  line-height: 1.1;
}
.warning-section p {
  color: #000;
  font-weight: 500;
  font-size: clamp(1rem, 3vw, 1.6em);
  letter-spacing: -1.5px;
  margin-top: 20px;
  max-width: 90%;
}

/* Author Section */
.author-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.author-img {
  flex-basis: 40%;
  min-width: 300px;
}
.author-img img {
  max-width: 100%;
  height: auto;
}
.author-text {
  flex-basis: 50%;
  min-width: 300px;
  text-align: left;
}
.author-text h2 {
  color: #eead64;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.author-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: -1px;
  color: #fff;
}

/* Authority Section */
.authority-section p {
  margin-bottom: 30px;
}
.news-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
  background-image: url("https://primeiravenda24hr.com.br/wp-content/uploads/2024/10/ELIPSE-BG_1x-e1716168243463.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.stats-box h2 {
  font-size: clamp(4rem, 10vw, 7.5em);
  letter-spacing: -5px;
  margin: 0;
  line-height: 1;
}
.stats-box .subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.stats-box .subtitle p {
  font-size: 1.5rem;
  color: #d8d8d8;
  font-weight: 500;
}
.stats-box .subtitle img {
  max-height: 35px;
}
.stats-box .channel-img {
  margin-top: 30px;
  max-width: 80%;
  height: auto;
}

/* Students Section */
.students-section {
  background-color: #fff;
  color: #000;
}
.students-section h2 {
  margin-bottom: 20px;
}
.students-section .main-text {
  color: #000;
  margin-bottom: 40px;
}
.students-section .secondary-text {
  border: 3px solid #bebebe;
  border-radius: 20px;
  padding: 2em;
  max-width: 80%;
  margin: 40px auto;
}
.students-section .secondary-text p {
  color: #000;
  font-size: 1.5rem;
  line-height: 1.5;
}
.students-results {
  margin: 40px 0;
}
.swiper-students {
  width: 100%;
}
.swiper-students .swiper-slide {
  width: auto;
}
.swiper-students img {
  max-width: 720px;
  border-radius: 10px;
}

/* Bonus Section */
.bonus-section {
  position: relative;
}
.bonus-section-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  padding: 50px 20px;
  position: relative;
  z-index: 1;
}
.bonus-tag {
  background-color: var(--color-primary);
  padding: 18px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 20px;
}
.bonus-tag h3 {
  color: #000;
  font-weight: 600;
  font-size: 1.5rem;
}
.bonus-section h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}
.bonus-section p {
  max-width: 600px;
}
.bonus-value h2 {
  color: var(--color-primary);
  margin-top: 30px;
}
.bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 20vw, 25em);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px #cda72e;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

/* Pricing Section */
.pricing-section .container {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.pricing-features {
  flex-basis: 45%;
  min-width: 300px;
  text-align: left;
}
.pricing-features ul {
  list-style: none;
}
.pricing-features li {
  color: #e6e6e6;
  font-size: 1.2em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.pricing-features i {
  color: #ccc;
  font-size: 0.5rem;
}
.pricing-card {
  flex-basis: 45%;
  min-width: 450px;
  max-width: 500px;
  border-radius: 25px;
  border: 1px solid #5c5c5c;
  background: rgba(28, 28, 28, 0.45);
  padding: 40px 20px;
  position: relative;
}
.pricing-card::after {
  content: "";
  height: 5px;
  width: 90px;
  position: absolute;
  top: -1px;
  left: 2em;
  background-image: linear-gradient(90deg, #edc679, #e9a41f);
  box-shadow: 0 9px 27px 0 #e9a41f;
}
.pricing-card .logo {
  max-width: 200px;
  margin: 0 auto 20px auto;
}
.price-display {
  display: flex; /* Changed from block to flex for better alignment */
  align-items: flex-end;
  justify-content: center;
  margin: 20px 0;
}
.price-display .term {
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1;
}
.price-display .amount {
  /* Adjusted font size and letter spacing for better display */
  font-size: 8em;
  font-weight: 800;
  letter-spacing: -10px;
  line-height: 0.8;
}
.pricing-card .cta-button {
  background-image: linear-gradient(279deg, #13ea00 0%, #68ed75 100%);
  width: 100%;
  padding: 1em 2em;
  margin-top: 20px;
}
.secure-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--color-grey-text);
}

/* Guarantee Section */
.guarantee-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.guarantee-section img {
  max-width: 150px;
}
.guarantee-section p {
  color: #cfcfcf;
  font-size: 1.3rem;
  max-width: 500px;
  text-align: left;
}

/* FAQ Section */
.faq-item {
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #e9a41f, transparent) 1;
  margin-bottom: 10px;
}
.faq-question {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.faq-question h3 {
  color: #e7c52a;
  font-size: 1.4em;
  font-weight: 600;
}
.faq-question i {
  color: #e7c52a;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  text-align: left;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Footer */
footer {
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #bcbcbc, transparent) 1;
}
footer .logo {
  max-width: 200px;
  margin-bottom: 20px;
}
footer .footer-text {
  text-align: left;
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 15px;
}
footer .copyright-info {
  text-align: center;
  margin-top: 30px;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bonus-subtitle {
  margin-top: 20px;
}
/* Responsive Styles */
@media (max-width: 1024px) {
  .hero {
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .author-text {
    text-align: center;
  }
  .warning-section {
    padding: 30px 15px;
    max-width: 90%;
  }
  .pricing-features {
    display: none;
  }
}
