* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.banner {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.banner-content {
   padding: 50px 30px;
   background: linear-gradient(135deg, #173675c4, #598aeed8, #c7d3ebcb); 
   border-radius: 15px;
   margin-left: 00px;
 
}

 

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ffffff;
  padding: 2%;

}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffffb4;
  font-weight: 300;

}

.banner-content a {
  display: inline-block;
  padding: 17px 40px 17px 40px;
  width: 250px;
  background: linear-gradient(135deg, #173675c4, #598aeed8, #c7d3ebcb); 
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 400;
  border: 1px solid #ffffff; /* Adiciona a borda amarela */

}

.banner-content a:hover {
  background: linear-gradient(135deg, #263e6ed2, #305aae); 
  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;
  }
}