:root {
  --brand-purple: rgba(174, 79, 245, 1);
  --brand-gradient: linear-gradient(
    180deg,
    rgba(174, 79, 245, 1) 0%,
    rgba(255, 90, 104, 1) 100%
  );
  --text-gradient: linear-gradient(
    336deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(210, 210, 210, 1) 100%
  );
  --bg-dark: #0c0a16;
  --badge-bg: rgba(227, 86, 152, 0.08);
  --badge-text: #e35698;
}

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

a {
  text-decoration: none;
  color: inherit;
}

body {
  background-color: var(--bg-dark);
  color: white;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

/* Header */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 50;
  background: rgba(14, 13, 23, 0.16);
  backdrop-filter: blur(2px);
  padding: 1.5rem 1rem;
  transition: background-color 0.3s ease;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 32px;
  height: 33px;
}

.logo-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 21.6px;
}

.menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

.menu-button img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Badge */
.badge {
  background-color: var(--badge-bg);
  color: var(--badge-text);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-family: "Exo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  flex-shrink: 0;
  flex-grow: 0;
  width: fit-content;
}

.section-header .badge {
  grid-column: 1;
  flex-shrink: 0;
  flex-grow: 0;
  width: fit-content;
}

.testimonials-header .badge {
  flex-shrink: 0;
  flex-grow: 0;
  width: fit-content;
}

.comparison-header .badge {
  flex-shrink: 0;
  flex-grow: 0;
  width: fit-content;
}

.about-text-content .badge {
  flex-shrink: 0;
  flex-grow: 0;
  width: fit-content;
}

/* Hero Section */
.hero {
  text-align: left;
  background-image: url("/images/background-mobile.png");
  background-size: cover;
  background-position: left;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  height: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 0;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 500px;
  margin: 0;
}

.hero-price {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(98%);
}

.hero-image.desktop {
  display: none;
}

/* Buttons */
.cta-button {
  background: var(--brand-gradient);
  border: none;
  border-radius: 100px;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}

.register-button {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 5px;
  color: rgba(174, 79, 245, 1);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-align: center;
  transition: color 0.3s ease;
}

/* Borda com gradiente */
.register-button {
  position: relative;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Borda gradiente */
.register-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(
    180deg,
    rgba(174, 79, 245, 1) 0%,
    rgba(255, 90, 104, 1) 100%
  );
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Hover: fundo preenchido com o gradiente */
.register-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(174, 79, 245, 1) 0%,
    rgba(255, 90, 104, 1) 100%
  );
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -2;
}

.register-button:hover {
  color: white;
  box-shadow: 0 0 10px rgba(174, 79, 245, 0.3);
}

.register-button:hover::after {
  opacity: 1;
}

.cta-button img {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

.cta-button:hover {
  opacity: 0.9;
}

/* Instructors Section */
.instructors {
  padding: 6rem 0rem;
  background-image: url("/professores.png");
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.instructors::before {
  content: "";
  position: absolute;
  width: 1076px;
  height: 759px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 538px/379.5px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(172, 81, 244, 0.3) 0%,
    rgba(17, 17, 19, 0) 100%
  );
  z-index: 0;
}

.section-header {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: left;
  padding: 0 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 1.5rem 0;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #d1cde4;
  margin: 0;
}

.instructors-carousel {
  max-width: 1200px;
  margin: 3rem auto 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.instructor-card {
  backdrop-filter: blur(11.57px);
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
  background-image: linear-gradient(rgba(9, 7, 17, 0.75), rgba(9, 7, 17, 0.85)),
    linear-gradient(180deg, #56507440 0%, #998ae6 50%, #56507440 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.instructor-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.instructor-info {
  padding: 1rem;
}

.instructor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.instructor-header h3 {
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(153, 153, 153, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18.7px;
}

.rank {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #131124;
  padding: 5.35px 10.7px;
  border-radius: 8px;
}

.rank img {
  width: 26.7px;
  height: 20.77px;
}

.rank span {
  font-size: 10.7px;
  color: white;
}

hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

.specializations h4 {
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(153, 153, 153, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 13.4px;
  margin-bottom: 0.5rem;
}

.roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10.7px;
}

.role {
  padding: 2.67px 5.35px;
  border-radius: 5.35px;
  border: 0.67px solid #211c37;
  color: white;
  font-size: 10.7px;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  background-image: url("/images/bg-pricing.png");
}

.features h2 {
  max-width: 800px;
  margin: 2rem auto;
  font-size: 2.5rem;
}

.pricing-card {
  position: relative;
  max-width: 500px;
  margin: 3rem auto;
  background: rgba(9, 7, 17, 0.95);
  backdrop-filter: blur(17.3px);
  border-radius: 40px;
  padding: 48px 24px;
  border: double 1px transparent;
  background-image: linear-gradient(rgba(9, 7, 17, 0.95), rgba(9, 7, 17, 0.95)),
    linear-gradient(180deg, #56507440 0%, #998ae6 50%, #56507440 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.pricing-badge {
  width: 200px;
  height: 24px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-purple);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 10;
}

.pricing-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 10px;
}

.price {
  width: 100%;
  text-align: left;
}

.amount {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3.5rem;
  font-weight: 700;
}

.period {
  font-size: 1.5rem;
  color: #d1cde4;
}

.features-list {
  list-style: none;
  text-align: left;
  width: 100%;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #d1cde4;
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.125rem;
}

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("images/sealcheck.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-card .cta-button {
  width: 100%;
  max-width: 400px;
  margin: 2rem auto 0;
  padding: 1.25rem 2rem;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .pricing-card {
    max-width: 90%;
    margin: 2rem auto;
    padding: 2rem 1.5rem 1.5rem;
  }

  .amount {
    font-size: 3rem;
  }

  .period {
    font-size: 1.25rem;
  }

  .features-list li {
    font-size: 1rem;
    padding-left: 2rem;
  }

  .features-list li::before {
    width: 20px;
    height: 20px;
  }

  .pricing-card .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
  }
}

/* Footer */
.footer {
  background: url("/footer.png") center/cover,
    linear-gradient(
      0deg,
      rgba(12, 10, 22, 0.96) 0%,
      rgba(12, 10, 22, 0.96) 100%
    );
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer .logo-img {
  width: 28px;
  height: 29px;
}

.footer .logo-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--brand-purple);
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-links img {
  width: 20px;
  height: 20px;
}

.footer hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: white;
}

.disclaimer {
  font-size: 0.7rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1rem;
  }

  .footer-content {
    padding: 0 1rem;
    gap: 2rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-nav a {
    font-size: 0.875rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-links a {
    width: 36px;
    height: 36px;
  }

  .social-links img {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    gap: 0.75rem;
  }

  .legal-links {
    gap: 0.75rem;
  }

  .disclaimer {
    font-size: 0.65rem;
  }
}

@media (min-width: 769px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 2.5rem;
  }

  .footer .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-nav {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
  }

  .social-links {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-end;
  }

  .footer hr {
    grid-column: 1 / span 3;
    grid-row: 2;
  }

  .footer-bottom {
    grid-column: 1 / span 3;
    grid-row: 3;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .disclaimer {
    grid-column: 1 / span 3;
    grid-row: 4;
    text-align: center;
  }
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.about-text-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #d1cde4;
  margin: 0;
}

.about-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.about-image-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .about-content {
    gap: 3rem;
  }

  .about-text-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 4rem 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-text-content h2 {
    font-size: 1.75rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-highlight {
    font-size: 1.125rem;
  }

  .about-image {
    max-width: 400px;
  }
}

@media (max-width: 425px) {
  .about {
    padding: 3rem 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text-content {
    padding: 0;
  }

  .about-text-content h2 {
    font-size: 1.5rem;
  }

  .about-image-container {
    margin-top: 2rem;
  }

  .about-image {
    max-width: 100%;
    max-height: 300px;
  }
}

/* Comparison Section */
.comparison {
  padding: 6rem 2rem;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.comparison::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/image-background-1.png");
  background-size: cover;
  z-index: 0;
}

.comparison-header {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.comparison-container {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(9, 7, 17, 0.95);
  backdrop-filter: blur(17.3px);
  border: double 1px transparent;
  background-image: linear-gradient(rgba(9, 7, 17, 0.95), rgba(9, 7, 17, 0.95)),
    linear-gradient(180deg, #56507440 0%, #998ae6 50%, #56507440 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.comparison-column {
  flex: 1;
  min-width: 0;
}

.column-header {
  height: 120px;
  background: #171329;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: normal;
  padding: 1.5rem;
  border-bottom: 1px solid #302c47;
}

.invokers-header {
  background: var(--brand-gradient);
  padding: 1rem;
}

.invokers-header .logo {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-item,
.check-item,
.x-item {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid #302c47;
  border-left: 1px solid #302c47;
}

.x-item {
  border-right: 1px solid #302c47;
}

.benefit-item {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: white;
  text-align: center;
  line-height: 1.2;
}

.check-item img,
.x-item img {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.check-item img:hover {
  transform: scale(1.1);
}

.check-item img {
  filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(100deg)
    brightness(118%) contrast(119%);
}

.x-item img {
  filter: invert(27%) sepia(51%) saturate(7404%) hue-rotate(353deg)
    brightness(94%) contrast(110%);
}

@media (max-width: 768px) {
  .comparison {
    padding: 4rem 1rem;
  }

  .comparison-container {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    gap: 0;
    background: transparent;
    padding: 0;
    margin: 0;
  }

  .comparison-column {
    min-width: 200px;
    scroll-snap-align: none;
    background: rgba(9, 7, 17, 0.95);
    backdrop-filter: blur(17.3px);
    margin: 0;
    padding: 0;
  }

  .benefit-column {
    position: sticky;
    left: 0;
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .benefit-column::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 20px;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(9, 7, 17, 0.95) 0%,
      rgba(9, 7, 17, 0) 100%
    );
    pointer-events: none;
  }

  .column-header {
    height: 80px;
    padding: 1rem;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .invokers-header {
    background: var(--brand-gradient);
  }

  .invokers-header .logo {
    height: 40px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .invokers-header .logo img {
    height: 32px;
    width: auto;
  }

  .benefit-item,
  .check-item,
  .x-item {
    height: 80px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
  }

  .benefit-item {
    font-size: 1rem;
    color: white;
    text-align: center;
  }

  .check-item img,
  .x-item img {
    width: 24px;
    height: 24px;
    margin: 0;
  }

  /* Estilização da barra de rolagem */
  .comparison-container::-webkit-scrollbar {
    height: 8px;
  }

  .comparison-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .comparison-container::-webkit-scrollbar-thumb {
    background: var(--brand-purple);
    border-radius: 4px;
  }

  .comparison-container::-webkit-scrollbar-thumb:hover {
    background: var(--brand-gradient);
  }
}

@media (max-width: 425px) {
  .comparison {
    padding: 2rem 0.5rem;
  }

  .comparison-container {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: transparent;
    padding: 0;
    margin: 0;
  }

  .comparison-column {
    min-width: 160px;
    background: rgba(9, 7, 17, 0.95);
    backdrop-filter: blur(17.3px);
  }

  .benefit-column {
    position: sticky;
    left: 0;
    z-index: 2;
  }

  .column-header {
    height: 60px;
    padding: 0.75rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .invokers-header {
    background: var(--brand-gradient);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .invokers-header .logo {
    height: 36px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .invokers-header .logo img {
    height: 28px;
    filter: none;
    -webkit-filter: none;
  }

  .benefit-item,
  .check-item,
  .x-item {
    height: 60px;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .benefit-item {
    font-size: 0.875rem;
  }

  .check-item img,
  .x-item img {
    width: 20px;
    height: 20px;
  }

  .comparison-container::-webkit-scrollbar {
    height: 4px;
  }

  .comparison-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
  }

  .comparison-container::-webkit-scrollbar-thumb {
    background: var(--brand-purple);
  }
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/image-background-1.png");
  background-size: cover;
  z-index: 0;
}

.testimonials-header {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.testimonials-container {
  width: 100%;
  overflow: visible;
  position: relative;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonials-swiper-1,
.testimonials-swiper-2 {
  width: 100%;
  overflow: visible;
  padding: 1rem 0;
  height: auto;
}

.testimonial-card {
  max-width: 480px;
  height: 236px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-content strong {
  color: white;
  font-weight: 600;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-person {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  color: white;
}

.testimonial-location {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    margin: 0.5rem;
  }

  .testimonial-content p {
    font-size: 1rem;
    line-height: 1.5;
    -webkit-line-clamp: 4;
  }

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

  .testimonial-location {
    font-size: 0.875rem;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  .testimonials-swiper-1 {
    padding: 0 1rem;
  }
}

/* Media Queries */
@media (min-width: 769px) {
  .hero {
    background-image: url("/images/background-desktop.png");
    background-size: cover;
    background-position: left;
  }

  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url("/images/mel-desktop.png");
    filter: grayscale(100%);
    z-index: 1;
  }

  .hero-image-container {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-content {
    justify-content: space-between;
  }

  .hero {
    text-align: center;
    padding: 3rem 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.125rem;
    max-width: 100%;
  }

  .hero-image-container {
    height: 400px;
  }

  .hero-image.desktop {
    display: none;
  }

  .hero-image.mobile {
    display: block;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instructor-card {
    flex: 0 0 100%;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .section-header {
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
  }

  .section-header .badge {
    grid-column: 1;
  }

  .section-header h2 {
    grid-column: 1;
    text-align: center;
    font-size: 2rem;
  }

  .section-text {
    grid-column: 1;
    text-align: center;
    font-size: 1rem;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 80%;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(174, 79, 245, 0.6) 0%,
    rgba(174, 79, 245, 0.6) 30%,
    rgba(174, 79, 245, 0.3) 60%,
    rgba(174, 79, 245, 0) 100%
  );
  transform: translateY(-50%);
  z-index: 2;
  filter: blur(50px);
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: translateY(-50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .instructor-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

.main-nav {
  display: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-left: 100px;
}

@media (min-width: 1024px) {
  .main-nav {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
  }

  .main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
  }

  .main-nav a:hover {
    color: var(--brand-purple);
  }

  .menu-button {
    display: none;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-text {
    font-size: 1.125rem;
  }

  .hero-price {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .badge {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .cta-button {
    font-size: 1.125rem;
    padding: 1rem 1.25rem;
  }

  .instructor-card {
    padding: 1.5rem;
  }

  .instructor-header h3 {
    font-size: 1.125rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-content p {
    font-size: 0.875rem;
  }

  .testimonial-name {
    font-size: 0.875rem;
  }

  .testimonial-location {
    font-size: 0.75rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .period {
    font-size: 1.25rem;
  }

  .features-list li {
    font-size: 1rem;
  }
}

.testimonials-swiper-2 {
  opacity: 0;
  pointer-events: none;
  height: 0;
}

@media (min-width: 1024px) {
  .testimonials-swiper-2 {
    opacity: 1;
    pointer-events: auto;
    height: auto;
  }
}

@media (max-width: 425px) {
  .hero {
    padding: 8rem 0rem;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .hero-text-content {
    padding: 0 1rem;
    text-align: center;
  }

  .hero-image-container {
    padding: 0;
    margin: 0;
    margin-top: 10rem;
  }

  .hero-image.mobile {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: grayscale(98%);
    padding: 0;
    margin: 0;
  }

  .instructors-carousel {
    max-width: 100%;
    margin: 2rem auto 0;
    gap: 1rem;
    padding: 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    display: flex;
  }

  .instructor-card {
    width: 280px;
    padding: 1rem;
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .instructor-image {
    height: 140px;
  }

  .instructor-info {
    padding: 0.75rem;
  }

  .instructor-header h3 {
    font-size: 1rem;
  }

  .rank {
    padding: 0.25rem 0.5rem;
  }

  .rank img {
    width: 20px;
    height: 16px;
  }

  .rank span {
    font-size: 0.75rem;
  }

  .specializations h4 {
    font-size: 0.875rem;
  }

  .role {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }

  .features h2 {
    max-width: 100%;
    margin: 3rem auto;
    font-size: 1.25rem;
    text-align: center;
    padding: 0 1rem;
  }
}

@media (max-width: 425px) {
  .section-header {
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  .section-header .badge {
    margin: 0;
  }

  .section-header h2 {
    margin: 0;
    text-align: left;
  }

  .section-text {
    margin: 0;
    text-align: left;
  }

  .instructors-carousel {
    max-width: 100%;
    margin: 3rem auto 0;
    gap: 2rem;
    padding: 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    display: flex;
  }

  .instructor-card {
    width: 280px;
    padding: 1rem;
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

@media (max-width: 425px) {
  .cta-button {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .cta-button img {
    width: 20px;
    height: 20px;
    margin: 0;
  }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: 2.5rem;
  margin: 1.5rem 0;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonials-subtitle {
  font-size: 1.125rem;
  color: #d1cde4;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 425px) {
  .testimonials-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .testimonials-title {
    font-size: 1.5rem;
    margin: 1rem 0;
  }

  .testimonials-subtitle {
    font-size: 1rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  transition: transform 0.3s ease;
  z-index: 1000;
  transform: translateX(-100%);
  visibility: hidden;
}

.drawer.active {
  transform: translateX(0);
  visibility: visible;
}

.drawer-content {
  padding: 6rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  position: relative;
}

.close-button {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.close-button img {
  width: 24px;
  height: 24px;
  display: block;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.drawer-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.5rem 1rem;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.drawer-nav a:hover {
  color: var(--brand-purple);
}

@media (max-width: 768px) {
  .drawer-content {
    padding: 5rem 1.5rem;
  }

  .close-button {
    top: 1.75rem;
    right: 1.75rem;
  }

  .drawer-nav {
    gap: 1.75rem;
  }

  .drawer-nav a {
    font-size: 1.125rem;
    max-width: 250px;
  }
}

@media (max-width: 425px) {
  .drawer-content {
    padding: 4rem 1rem;
  }

  .close-button {
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
  }

  .close-button img {
    width: 20px;
    height: 20px;
  }

  .drawer-nav {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .drawer-nav a {
    font-size: 1rem;
    padding: 0.5rem;
    max-width: 200px;
  }
}
