*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

header{
  width:90%;
  max-width:1100px;

  padding:12px 25px;

  background:rgba(255,255,255,0.75);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);

  z-index:1000;

  border-radius:50px;

  box-shadow:0 4px 15px rgba(0,0,0,0.08);

  backdrop-filter:blur(10px);
}

.logo{
  font-family:'Playfair Display', serif;
  font-size:1.5rem;
  color:#d63384;
  margin-bottom:5px;
}

nav{
  display:flex;
  gap:15px;
}

nav a{
  text-decoration:none;
  color:#444;
  font-size:0.95rem;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#e63a6b;
}

#texto {

  border-right: 2px solid #fff;

  padding-right: 5px;

  animation: piscar .7s infinite;
}

@keyframes piscar {

  50% {
    border-color: transparent;
  }

}

body{
  background: #f5eded;
}

.hero{
  background:
  linear-gradient(rgba(0,0,0,0.45),
  rgba(0,0,0,0.45)),
  url("img/homepage3.png.jpeg");

  background-position: center 60%;
  background-size: cover;
  background-repeat: no-repeat;

  width: 90%;
  height: 85vh;

  margin: 120px auto 40px auto;

  border-radius: 35px;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay{
  position:auto;
  top:0;
  left:0;

  width:100%;
  height:100%;

  background:rgba(0,0,0,0.45);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;
  color:white;
  padding:20px;
}

.overlay h1{
  font-size:4rem;
  font-family:'Playfair Display', serif;
}

.overlay h2{
  font-size:2rem;
  margin-bottom:15px;
}

.overlay p{
  margin-bottom:25px;
  font-size:1.1rem;
  color:#ffd7e5;
}


.buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  justify-content:center;
}

.buttons button{
  padding:14px 28px;
  border:none;
  border-radius:40px;

  background:linear-gradient(135deg, #ff4f81 0%, #ff6f91 100%);
  color:white;

  font-size:1rem;
  font-weight:600;

  cursor:pointer;
  transition:0.3s;
}

.buttons button:hover{
  background:linear-gradient(135deg, #ff4f81 0%, #ff6f91 100%);
  transform:scale(1.05);
}


.catalogo{
  padding:50px 15px;
  text-align:center;
}

.catalogo h1{
  font-family:'Playfair Display', serif;
  color:#d63384;
  margin-bottom:40px;
  font-size:2.5rem;
}

.carousel-container{
  position:relative;
  width:100%;
  overflow:hidden;
}

.carousel-produtos{
  display:flex;
  gap:25px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:20px;

  scrollbar-width:none;
}

.carousel-produtos::-webkit-scrollbar{
  display:none;
}


.card{
  min-width :300px;
  max-width:300px;

  background:white;

  border-radius:25px;

  overflow:hidden;

  box-shadow:0 10px 25px rgba(0,0,0,0.1);

  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px) scale(1.02);
}

.card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.card h2{
  margin:20px 0 10px;
  color:#d63384;
}

.card p{
  padding:0 20px;
  font-size:14px;
  line-height:1.5;
}

.card span{
  display:block;
  margin:15px 0;
  color:#777;
}

.card strong{
  display:block;
  margin-bottom:20px;
  color:#ff3f6c;
  font-size:1.2rem;
}


.prev,
.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:50px;
  height:50px;

  border:none;
  border-radius:50%;

  background:white;
  color:#d63384;

  font-size:2rem;

  cursor:pointer;

  box-shadow:0 5px 15px rgba(0,0,0,0.15);

  z-index:10;
}

.prev{
  left:10px;
}

.next{
  right:10px;
}

.prev:hover,
.next:hover{
  background:#ff4f81;
  color:white;
}

.localizacao{
  text-align:center;
  padding:40px 20px;
}

.localizacao h2{
  margin-bottom:30px;
  color:linear-gradient(135deg, #ff4f81 0%, #ff6f91 100%);

  font-size:2rem;
  font-family:'Playfair Display', serif;
}

.mapa{
  width:90%;
  max-width:900px;

  margin:auto;

  overflow:hidden;
  border-radius:25px;

  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}


footer{
  margin-top:60px;
  background:linear-gradient(135deg, #ff4f81 0%, #ff6f91 100%);
  color:white;
  text-align:center;
  padding:20px;
}



@media(max-width:768px){
  
  .container {
    flex-direction: column;
    padding: 20px;
  }

  .card {
    width: 100%;
  }

  header{
    width:95%;
    padding:10px 15px;
  }

  .logo{
    font-size:1.2rem;
  }

  nav{
    gap:10px;
  }

  nav a{
    font-size:0.85rem;
  }

  .overlay h1{
    font-size:2.5rem;
  }

  .overlay h2{
    font-size:1.5rem;
  }

  .hero{
    height:70vh;
  }

  .historia{
    width:90%;
    padding:30px;
  }
}