:root {
  --bg: #0b0b0f;
  --panel: #0f1117;
  --text: #e6e7eb;
  --muted: #a7abb8;

  --brand: #0057ff;
  --brand-2: #4d8dff;
  --maxw: 1100px;
  --radius: 18px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2 {
  margin: 0 0 1rem;
}

.container {
  display: flex;
  padding: 0 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center !important;
}

.img-principal {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(65, 105, 225, 0.2);
  height: 520px;
 }

.container .logo {
  width: 120px;
  margin: 0 auto;
}


.logo-vdc {
  width: 660px;
  height: 88px;
  margin: 0 auto;
}

.header-textos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-title {
  font-weight: 700;
  font-size: 32px;
  color: #ffff;
  text-shadow: 0 0 8px rgba(0, 87, 255, 0.4);
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(
      1000px 500px at 120% -10%,
      rgba(0, 87, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      800px 400px at -10% 110%,
      rgba(0, 87, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #0b0b10 0%, #090a0e 100%);
}

.hex {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image: linear-gradient(30deg, #fff 12%, transparent 12.5%),
    linear-gradient(150deg, #fff 12%, transparent 12.5%),
    linear-gradient(30deg, #fff 12%, transparent 12.5%),
    linear-gradient(150deg, #fff 12%, transparent 12.5%),
    linear-gradient(90deg, #fff 2%, transparent 0);
  background-size: 32px 56px;
  background-position: 0 0, 0 0, 16px 28px, 16px 28px, 0 0;
  filter: contrast(0.7) brightness(0.8);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #000;
  font-weight: 600;
  box-shadow: var(--shadow), 0 0 8px rgba(0, 87, 255, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow), 0 0 12px rgba(0, 87, 255, 0.6);
}

/* Sections */
.hero {
  padding: 20px 0;
}

.benefits {
  background: var(--panel);
  padding: 60px 24px;
}
.benefits ul {
  list-style: none;
  padding: 0;
}
.benefits li {
  margin: 0.5rem 0;
}

.content,
.pricing {
  padding: 60px 20px;
}

/* Testimonials Carousel */
.testimonials {
  background: var(--panel);
  padding: 80px 20px;
}

.testimonials-container {
  margin: 0 auto;
  text-align: center;
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-carousel .carousel-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  width: 600px;
}

.carousel-item {
  flex: 0 0 250px; /* largura fixa */
  transition: transform 0.4s ease, opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials-carousel .carousel-item {
  flex: 0 0 180px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  display: none;
}

.testimonials-carousel .carousel-item.visible {
  display: block;
}

.testimonials-carousel .carousel-item.active {
  transform: scale(1.2);
  opacity: 1;
}

.testimonials-carousel .carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(77, 141, 255, 0.1);
  border: 1px solid rgba(77, 141, 255, 0.3);
  color: var(--brand-2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(77, 141, 255, 0.2);
  border-color: var(--brand-2);
}

.carousel-btn.prev {
  left: -60px;
}

.carousel-btn.next {
  right: -60px;
}

.benefits-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.benef-list {
  display: flex;
  flex-direction: column;
  text-align: start;
  align-items: center;
}

.description-text {
  font-weight: 700 !important;
}

.benef-img {
  width: 100%;
}

.prado-img {
  max-width: 100%;
  max-height: 10%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(65, 105, 225, 0.2);
}

.value-text {
  font-size: 24px;
}

.true-value {
  font-size: 32px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--brand);
}

footer {
  background: #090a0e;
  padding: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.faq-section {
  padding: 20px;
  text-align: center;
  background: var(--panel);
}

.faq-section .course-title {
  margin-bottom: 24px;
  border-bottom: 2px solid #0057ff;
  width: 30%;
  display: inline-block;
  padding-bottom: 8px;
}

.faq-container {
  text-align: left;
  max-width: 50%;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #333;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #111;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(65, 105, 225, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: #1a1a1a;
  color: #aaa;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: none;
  padding: 12px;
}

/* Carrossel */
.modulos-section {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(135deg, #000 0%, rgba(30, 58, 138, 0.1) 100%);
}

.carousel-auto {
  overflow: hidden;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  display: flex;
  width: calc(250px * 10); /* largura total dos itens */
  animation: scroll 20s linear infinite; /* tempo do loop */
}

.carousel-item {
  min-width: 220px;
  height: 340px;
  margin: 0 10px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #555;
  font-size: 18px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.testimonials-section {
  padding: 40px 0;
  background: var(--panel);
}

.testimonials-container {
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.testimonials-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.testimonials-carousel-slide {
  flex: 0 0 calc(33.333% - 14px);
  transition: transform 0.3s ease;
}

.testimonials-carousel-slide:hover {
  transform: scale(1.13);
}

.testimonials-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(77, 141, 255, 0.1);
  border: 2px solid var(--brand-2);
  color: var(--brand-2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.testimonials-carousel-btn:hover {
  background: var(--brand-2);
  color: #000;
}

.testimonials-carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonials-prev-btn {
  left: 0;
}

.testimonials-next-btn {
  right: 0;
}

/* animação */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.pricing-section {
  padding: 60px 24px;
  background: linear-gradient(135deg, #000 0%, rgba(30, 58, 138, 0.1) 100%);
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* Texto da esquerda */
.pricing-left {
  color: #fff;
  text-align: center;
}

.pricing-left .old-price {
  text-decoration: line-through;
}

.pricing-left p {
  font-size: 1.1rem;
  color: #fff;
}

.pricing-left .highlight {
  color: var(--brand-2, #4d8dff);
  font-weight: 600;
}

/* Box da direita */
.pricing-box {
  background: rgba(15, 17, 23, 0.8);
  border: 2px solid var(--brand-2, #4d8dff);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(77, 141, 255, 0.25);
}

.pricing-mockup {
  max-width: 340px;
  height: 280px;
  margin: 0 auto 20px;
  display: block;
}

.offer-highlight {
  color: var(--brand-2, #4d8dff);
  font-weight: 600;
  margin-bottom: 10px;
}

.old-price-text {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.price {
  margin: 4px 0;
}

.main-price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-2, #4d8dff);
}

.installments {
  font-size: 1rem;
  color: #ccc;
}

.course-name {
  margin: 15px 0;
  font-size: 1rem;
  color: #ddd;
}

/* Botão CTA */
.cta-btn {
  display: inline-block;
  background: var(--brand-2, #4d8dff);
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: var(--brand-2, #4d8dff);
}

.footer {
  background: #0c0c0c;
  padding: 40px 20px;
  border-top: 2px solid var(--brand-2, #4d8dff);
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.footer-left .footer-logo {
  max-width: 100%;
  height: 80px;
}

.footer-right {
  flex-direction: column;
  min-width: 250px;
}

.footer-right .course-title {
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: flex;
  justify-content: flex-start !important;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand-2, #4d8dff);
}

.footer-links img {
  width: 22px;
  height: 22px;
}

/* Estado inicial das seções (invisíveis e deslocadas) */
.section {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* Quando entra na tela */
.section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Animações criativas extras */
.section.fade-left {
  transform: translateX(-60px);
}
.section.fade-left.in-view {
  transform: translateX(0);
}

.section.fade-right {
  transform: translateX(60px);
}
.section.fade-right.in-view {
  transform: translateX(0);
}

.section.zoom-in {
  transform: scale(0.85);
}
.section.zoom-in.in-view {
  transform: scale(1);
}

.section.rotate-in {
  transform: rotateX(20deg);
  transform-origin: top;
}
.section.rotate-in.in-view {
  transform: rotateX(0);
}

/* ============================= */
/* 📱 RESPONSIVIDADE */
/* ============================= */

/* Tablets (até 991px) */
@media (max-width: 991px) {
  .benefits-container {
    flex-direction: column;
    text-align: center;
  }

  .faq-container {
    max-width: 80%;
  }

  .pricing-container {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-left {
    text-align: center;
  }

  .testimonials-carousel .carousel-track {
    /*  width: 100%; */
    gap: 15px;
  }

  .testimonials-carousel .carousel-item {
    flex: 0 0 250px;
    max-width: 250px;
  }

  .carousel-btn.prev {
    left: -30px;
  }
  .carousel-btn.next {
    right: -30px;
  }
}

/* Celulares (até 768px) */
@media (max-width: 768px) {
  .video {
    width: 90%;
  }

  .img-principal {
    width: 100%;
    height: auto;
  }

  .logo-vdc {
    width: 100%;
    height: auto;
  }

  .course-title {
    font-size: 24px;
  }

  .faq-container {
    max-width: 100%;
  }

  .pricing-left p {
    font-size: 1rem;
  }

  .pricing-box {
    width: 100%;
    padding: 20px;
  }

  .pricing-mockup {
    max-width: 100%;
    height: auto;
  }

  .footer-container {
    flex-direction: column !important;
    text-align: center;
    gap: 20px;
  }

  .testimonials-carousel .carousel-track {
    gap: 10px;
  }

  .testimonials-carousel .carousel-item {
    flex: 0 0 80%; /* um card grande centralizado */
    max-width: 80%;
  }

  .testimonials-carousel .carousel-item img {
    max-height: 400px;
    object-fit: contain;
  }

  .carousel-btn.prev {
    left: -15px;
  }
  .carousel-btn.next {
    right: -15px;
  }

  /* 
  .footer-left,
  .footer-right {
    width: 100%;
  } */

  .footer-links a {
    justify-content: center;
  }

  /* .testimonials-carousel .carousel-item {
    flex: 0 0 120px;
  } */

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
  .course-title {
    font-size: 20px;
  }

  .btn,
  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .testimonials-carousel .carousel-item {
    flex: 0 0 100px;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}
/* Mobile testimonials - 1 imagem por vez */
@media (max-width: 768px) {
  .testimonials-carousel-slide {
    flex: 0 0 100%;
  }
  
  .testimonials-carousel-track {
    gap: 0;
  }
  
  .testimonials-carousel-slide img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .testimonials-carousel-slide img {
    max-width: 280px;
  }
}
/* Testimonials mobile com zoom */
@media (max-width: 768px) {
  .testimonials-carousel-slide img {
    max-width: 380px !important;
    transform: scale(1.1) !important;
    transition: transform 0.3s ease;
  }
}

@media (max-width: 480px) {
  .testimonials-carousel-slide img {
    max-width: 340px !important;
    transform: scale(1.15) !important;
  }
}
/* Mobile: apenas 1 imagem centralizada */
@media (max-width: 768px) {
  .testimonials-carousel-wrapper {
    overflow: hidden;
  }
  
  .testimonials-carousel-track {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  
  .testimonials-carousel-slide {
    flex: 0 0 100% !important;
    display: flex;
    justify-content: center;
  }
}
/* Mobile carousel fix - 1 imagem por vez */
@media (max-width: 768px) {
  .testimonials-carousel-wrapper {
    overflow: hidden !important;
    width: 100% !important;
  }
  
  .testimonials-carousel-track {
    display: flex !important;
    width: 1000% !important;
    transition: transform 0.5s ease !important;
  }
  
  .testimonials-carousel-slide {
    flex: 0 0 10% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}
/* Mobile testimonials - sem zoom e sem sobreposição */
@media (max-width: 768px) {
  .testimonials-carousel-slide img {
    max-width: 320px !important;
    transform: none !important;
    transition: none !important;
  }
  
  .testimonials-carousel-track {
    gap: 0 !important;
  }
  
  .testimonials-carousel-slide {
    min-width: 100% !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .testimonials-carousel-slide img {
    max-width: 280px !important;
    transform: none !important;
  }
}
/* Centralizar imagens em mobile */
@media (max-width: 768px) {
  .testimonials-carousel-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .testimonials-carousel-slide img {
    margin: 0 auto !important;
    display: block !important;
  }
}
/* Corrigir centralização mobile */
@media (max-width: 768px) {
  .testimonials-carousel-wrapper {
    padding: 0 !important;
  }
  
  .testimonials-carousel-slide {
    width: 100% !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .testimonials-carousel-slide img {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}
/* Mobile carousel separado */
.mobile-carousel {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.mobile-image-container {
  text-align: center;
  width: 100%;
}

.mobile-image-container img {
  max-width: 350px;
  width: 90%;
  height: auto;
  border-radius: 8px;
}

.mobile-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(77, 141, 255, 0.1);
  border: 2px solid var(--brand-2);
  color: var(--brand-2);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.mobile-arrow:hover {
  background: var(--brand-2);
  color: #000;
}

.mobile-arrow.prev {
  left: 10px;
}

.mobile-arrow.next {
  right: 10px;
}

@media (max-width: 768px) {
  .desktop-carousel {
    display: none !important;
  }
  
  .mobile-carousel {
    display: flex !important;
  }
}
/* Video responsivo */
/* .video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
} */

.intro-video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(65, 105, 225, 0.2);
}

@media (max-width: 768px) {
 /*  .video-container {
    max-width: 100%;
    padding: 0 10px;
  }
   */
  .intro-video {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .intro-video {
    border-radius: 8px;
  }
}
/* Ajuste altura iframe YouTube */
.intro-video {
  height: 450px !important;
}

@media (max-width: 768px) {
  .intro-video {
    height: 250px !important;
  }
}

@media (max-width: 480px) {
  .intro-video {
    height: 200px !important;
  }
}