* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

 }

.banner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  
}

.banner-content {
   padding: 50px 200px;
   background: linear-gradient(135deg, #0313a3d1, #0313a3dc, #0313a3d1); 
   border-radius: 5px;
   margin: 30px; 
 
}
@media (max-width: 768px) {
  .banner-content {
    padding: 10px 100px;
    border-radius: 2px;
    margin: 20px; 

  }
}

 

.banner-content h1 {
  font-size: 53px;
  margin-bottom: 19px;
  color: #ffffffbb;
  padding: 2%;
  font-family: 'Gaegu', cursive;
  font-weight: 300;
}


#banner-title {
  font-size: 3em;
}

@media (max-width: 768px) {
  #banner-title {
    font-size: 2.1em;
    color: rgb(255, 255, 255);
    line-height: 30px;
  }
}

.banner-content p {
  margin-bottom: 33px;
  font-weight: 500;

}

#banner-subtitle {
  font-size: 1.5em;
  color: #ffffff; 
}

@media (max-width: 768px) {
  #banner-subtitle {
    font-size: 1.2em;
    color: #ffffff;
  }
}




.banner-content a {
  display: inline-block;
  padding: 17px 50px 17px 50px;
  width: 250px;
  background: linear-gradient(135deg, #f0f0ff, #f7f7ff, #f8f8ff); 
  color: #1324c2;
  text-decoration: none;
  border-radius: 1px;
  transition: background-color 0.3s;
  font-weight: 400;
  border: 1px solid #a8b1ff46; /* Adiciona a borda amarela */

}

.banner-content a:hover {
  background: linear-gradient(135deg, #1324c2, #1324c2); 
  border: 1px solid #f7f8ff; /* Adiciona a borda amarela */

  font-weight: 500;
  color: #fff;


}

@media (max-width: 768px) {
  .banner {
    height: 350px;
    padding: 20px;
   }

  .banner-content h1 {
    font-size: 1.6rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}
