* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Arial', sans-serif;
  color: white;
  background-color: #000;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: url('fundo.jpg') center center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text h1 span {
  color: #00c3ff;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-button {
  background: #00c3ff;
  color: #000;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}

.hero-button:hover {
  background: #009ccc;
}

.hero-video {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  aspect-ratio: 16/9;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-video {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 20px;
  }

  .hero-button {
    padding: 15px 20px;
    font-size: 1rem;
    width: auto;
  }
}



/* SOBRE O CURSO */
.sobre-curso {
  padding: 80px 20px;
  background-color: #000;
  color: white;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #00c3ff;
  margin-bottom: 50px;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-box {
  background-color: #111;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 30px 20px;
  width: 250px;
  transition: 0.3s;
  cursor: default;
}

.benefit-box:hover {
  background-color: #00c3ff;
  color: #000;
  border-color: #00c3ff;
}

.benefit-box i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00c3ff;
  transition: 0.3s;
}

.benefit-box:hover i {
  color: #000;
}

.benefit-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.benefit-box p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Responsivo */
@media (max-width: 768px) {
  .benefits-container {
    flex-direction: column;
    align-items: center;
  }
}



.section-button {
  margin-top: 40px;
  text-align: center;
}

.btn-cta {
  display: inline-block;
  background-color: #00c3ff;
  color: #000;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background-color: #009ccc;
}









.sobre-trabalho {
  padding: 80px 20px;
  background-color: #000;
  color: white;
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img {
  width: 100%;
  max-width: 300px;
  margin: 0 10px;
  border-radius: 10px;
  flex-shrink: 0;
}

.carousel-btn {
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: #00c3ff;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.contador-box {
  margin: 50px auto;
  padding: 30px;
  border: 1px solid #333;
  max-width: 600px;
  background-color: #111;
  border-radius: 12px;
}

.contador-box p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.contador-box h3 {
  font-size: 3rem;
  color: #00c3ff;
}

.autor {
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.autor-img {
  width: 250px;
  border-radius: 10px;
}

.autor-texto {
  max-width: 600px;
  text-align: left;
}

.autor-texto p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .carousel-track img {
    max-width: 90%;
  }

  .autor {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .autor-texto {
    text-align: center;
  }
}



.para-quem {
  padding: 80px 20px;
  background-color: #000;
  color: white;
  text-align: center;
}

.publico-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.publico-box {
  background-color: #0a2c52;
  padding: 30px 20px;
  border-radius: 20px;
  width: 280px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0, 195, 255, 0.15);
}

.publico-box:hover {
  background-color: #00c3ff;
  color: #000;
}

.publico-box:hover i {
  color: #000;
}

.publico-box i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00c3ff;
  transition: 0.3s;
}

.publico-box h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.publico-box p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 768px) {
  .publico-container {
    flex-direction: column;
    align-items: center;
  }
}




.garantia {
  background-color: #011d3a;
  padding: 60px 20px;
  color: white;
}

.garantia-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.garantia-img {
  max-width: 180px;
  width: 100%;
}

.garantia-texto {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.garantia-texto h2 {
  color: #00c3ff;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.garantia-texto p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 768px) {
  .garantia-container {
    flex-direction: column;
    text-align: center;
  }

  .garantia-texto {
    text-align: center;
  }
}



.bonus {
  background-color: #000;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.bonus-subtitle {
  color: #ccc;
  margin-bottom: 50px;
  font-size: 1rem;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-item {
  background-color: #0a2c52;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 195, 255, 0.15);
}

.bonus-item:hover {
  background-color: #00c3ff;
  color: #000;
}

.bonus-item i {
  font-size: 2.2rem;
  color: #00c3ff;
  margin-bottom: 15px;
  transition: 0.3s;
}

.bonus-item:hover i {
  color: #000;
}

.bonus-item p {
  font-size: 0.95rem;
  line-height: 1.4;
  padding: 0 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .bonus-item {
    width: 90%;
    height: auto;
    border-radius: 20px;
    padding: 25px;
  }

  .bonus-grid {
    flex-direction: column;
    align-items: center;
  }
}



.faq {
  background-color: #000;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #222;
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #00c3ff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 15px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}


.oferta {
  background-color: #000;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.oferta-card {
  background-color: #06355f;
  border-radius: 15px;
  max-width: 400px;
  margin: 0 auto;
  padding: 40px 30px;
  box-shadow: 0 0 15px rgba(0, 195, 255, 0.15);
}

.oferta-card h3 {
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  margin-bottom: 25px;
}

.oferta-card ul {
  list-style: disc;
  text-align: left;
  margin-bottom: 30px;
  padding-left: 20px;
}

.oferta-card ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.preco-antigo {
  color: red;
  text-decoration: line-through;
  font-weight: bold;
  margin-bottom: 10px;
}

.preco-parcelado {
  font-size: 1.4rem;
  color: #00ffcc;
  font-weight: bold;
  margin-bottom: 10px;
}

.preco-vista {
  color: #00ffcc;
  font-weight: bold;
  margin-bottom: 30px;
}

.btn-oferta {
  background-color: #00d84a;
  color: #000;
  padding: 15px 25px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-oferta:hover {
  background-color: #00b53b;
}


.footer {
  background-color: #ffffff;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #333;
  text-align: center;
  border-top: 1px solid #ddd;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}
