*{
  margin: 0;
  padding: 0;

}
body{
    background-color: #0d0d21;
}
header{
  background-color: red;
}
.bannerimg{
    background-image: url(../image/banner_principal.png);
    background-position: center;
    height: 100vh;
}
.slidearea{
    max-width: 400px;
}
.banner_menu{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 100px;
}
li{
  color: #fff;
  font-size: 13px;
  font-family: monospace;
}
h1{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 50px;
    color: #fff;
    text-align: center;
    font-family: "Fjalla One";
    margin: 0;
}
.slidearea h1{
  text-align: left;
}
.frase_banner{
  text-align: center;
}
h2{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    text-align: center;
    font-family: monospace;
}
p{
  color: #a3a3a3;
}
.text h1 span{
    color: #0c0cd0;
}
.text h2{
    text-transform: uppercase;
    margin-top: 20px;
}
.button{
    margin-top: 30px;
    background-color: rgb(27, 27, 141);
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    display: inline-block;
    font-weight: 600;
    border-radius: 5px;
    font-family: monospace;
}
.badge {
    background: rgb(27, 27, 141);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid #00f;
    font-family: monospace;
}
.carousel-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Container do carrossel */
.cursos {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 20px 10px;
  /*background-image: url(../image/banner_container.png);*/
}

/* Imagens */
.cursos img {
  width: 180px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: 0.3s;
  cursor: pointer;
}

.cursos img:hover {
  transform: scale(1.08);
}

/* Setas */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 28px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
}

.arrow:hover {
  background: rgba(0,0,0,0.8);
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}
/* Proof Section */
.proof {
    text-align: center;
    padding: 60px 20px;
    background-image: url(../image/banner_section.jpeg);
    background-position: center;
    background-size: cover;
}

.proof-grid img {
    max-width: 150px;
    margin: 30px 0;
}
/* Pricing */
.pricing {
    padding: 100px 20px;
    text-align: center;
}

.pricing-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 60px;
    border-radius: 30px;
    border: 3px solid #00f;
    max-width: 600px;
    margin: 0 auto;
}

.old-price {
    text-decoration: line-through;
    color: #f00;
    display: block;
}

.new-price {
    font-size: 3rem;
    font-weight: 900;
    color: #00f;
    display: block;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.benefits-list li::before {
    content: "✓";
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
}

.btn-large {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
}

.countdown {
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 0;
}

/* FAQ */
.faq {
    padding: 80px 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #b0b0b0;
    display: none;
    font-family: monospace;
}
/*BANNER*/
.banner2{
  background-image: url(../image/asset\ 63.jpeg);
  background-position: center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.frase_banner h1{
  text-align: center;
  width: 500px;
  font-size: 60px;
}
.footer {
  padding: 40px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer p {
  color: #616161;
  font-size: 10px;
  font-family: monospace;
}

.footer-pagamentos img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
}

/* Responsivo */
@media (max-width: 768px) {
  .cursos img {
    width: 140px;
  }
  .slidearea h1{
    font-size: 30px;
  }
  .slidearea{
    margin: 0 30px;
  }
  .banner_menu{
    gap: 70px;
  }
  .arrow {
    font-size: 22px;
    padding: 10px 14px;
  }
  .robo_img img{
    width: 280px;
    height: 300px;
  }
}


@media (max-width: 480px){
    .cursos img {
    width: 140px;
  }
  .bannerimg{
    background-image: url(../image/banner_mobile.png);
  }
  .slidearea{
    text-align: center;
  }
  .slidearea h1{
    font-size: 30px;
    text-align: center;
  }
  p{
    font-size: 10px;
  }
  .arrow {
    font-size: 22px;
    padding: 10px 14px;
  }
  h1{
    font-size: 50px;
  }
  .banner_menu{
    flex-direction: column;
    gap: 0px;
  }
  .robo_img img{
    width: 180px;
    height: 200px;
  }
  .new-price{
    font-size: 25px;
  }
  .button{
    font-size: 14px;
  }
  .frase_banner h1{
    text-align: center;
    width: 300px;
    font-size: 40px;
    padding-right: 0;
}
}

@media (max-width: 376px){
  .frase_banner img{
    width: 200px;
  }
  .frase_banner h1{
    width: 200px;
    font-size: 25px;
  }
  .slidearea img{
    width: 200px;
  }
}