* {
  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, #efefef, #e3dfdb, #fff5ee, #ece8e3, #f4efeb7c, #ece3e6); 
  border-radius: 16px;
  margin-left: 0;
  box-shadow: 0px 4px 15px 6px #341c2538;
  width: 65vw;
}

.banner-content h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #614732e3;
  padding: 2%;
  font-family: 'Julius Sans One', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}

.banner-content p {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #686664e9;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 35px;
  width: 80%;
  margin-left: 7%;
}

.banner-content a {
  display: inline-block;
  padding: 7px 40px 10px 40px;
  width: 250px;
  background-color: #886950;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 400;
  border: 1px solid #d9a5b400;
}

.banner-content a:hover {
  background: linear-gradient(135deg, #846347, #6e5743); 
  font-weight: 500;
  color: #f1eadc;
}

/* Regras para tablet: até 1024px */
@media (max-width: 1024px) {
  .banner-content p {
    font-size: 19px;
    line-height: 25px;
  }
}

/* Regras para mobile: até 768px */
@media (max-width: 768px) {
  .banner {
    height: 350px;
    padding: 20px;
        line-height: 25px;

  }

  .banner-content h1 {
    font-size: 1.6rem;
  }

  .banner-content p {
    font-size: 19px;
  }
}
