*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background: #111;
  color: white;
}

header{
  width: 100%;
  padding: 20px 8%;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1000;
}

.logo{
  font-size: 28px;
  font-weight: bold;
  color: #ffb6d9;
}

nav{
  display: flex;
  gap: 20px;
}

nav a{
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover{
  color: #ff69b4;
}

.banner{
  width: 100%;
  height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1600');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.conteudo-banner{
  position: relative;
  text-align: center;
  z-index: 2;
}

.conteudo-banner h1{
  font-size: 60px;
  margin-bottom: 20px;
}

.conteudo-banner p{
  font-size: 20px;
  margin-bottom: 30px;
}

.conteudo-banner button{
  padding: 15px 35px;
  border: none;
  background: #ff69b4;
  color: white;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.conteudo-banner button:hover{
  transform: scale(1.05);
}

.container{
  padding: 100px 8%;
}

.container h2,
.avaliacao h2,
.galeria h2{
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}

form{
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form input,
form select{
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

form button{
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #ff69b4;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.avaliacao{
  padding: 100px 8%;
  background: #1c1c1c;
}

.cards{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card{
  background: #222;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  text-align: center;
  transition: 0.3s;
}

.card:hover{
  transform: translateY(-10px);
}

.card h3{
  margin-bottom: 15px;
  color: #ff69b4;
}

.beneficio{
  padding: 100px 8%;
  background: linear-gradient(45deg,#ff69b4,#ff1493);
  text-align: center;
}

.beneficio-box h2{
  font-size: 45px;
  margin-bottom: 20px;
}

.beneficio-box h3{
  margin-top: 20px;
  font-size: 30px;
}

.promocao span{
  display: block;
  margin-top: 20px;
  font-size: 25px;
  color: #ff69b4;
  font-weight: bold;
}

.galeria{
  padding: 100px 8%;
}

.fotos{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.fotos img{
  width: 320px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
}

.fotos img:hover{
  transform: scale(1.05);
}

footer{
  background: #000;
  text-align: center;
  padding: 40px;
}

footer h3{
  color: #ff69b4;
  margin-bottom: 10px;
}

@media(max-width: 768px){

  header{
    flex-direction: column;
    gap: 20px;
  }

  .conteudo-banner h1{
    font-size: 40px;
  }

  nav{
    flex-wrap: wrap;
    justify-content: center;
  }

}