* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
}

.banner {
  position: relative;
  width: 100%;
  height: 550px;
  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, #ececec, #f9f0f3ea, #ffecf2, #f4ebed9a, #ece3e6 ); 
   border-radius: 10px;
   margin-left: 00px;
   box-shadow: 0px 4px 15px 6px #341c254d;

}

 

.banner-content h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #662e3dc0;
  padding: 2%;
  font-family: 'Julius Sans One', sans-serif;
  font-weight: 600;


}

.banner-content p {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #662e3d;
  font-weight: 400;

}

.banner-content a {
  display: inline-block;
  padding: 17px 40px 17px 40px;
  width: 250px;
background-color: #6e152e;  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 400;
  border: 1px solid #d9a5b400; /* Adiciona a borda amarela */
 

}

.banner-content a:hover {
  background: linear-gradient(135deg, #783044, #6e152e); 
  font-weight: 500;
  color: #f1eadc;


}

@media (max-width: 768px) {
  .banner {
    height: 350px;
    padding: 20px;
   }

  .banner-content h1 {
    font-size: 1.6rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}