/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  color:#333;
  background:#fff;
  line-height:1.6;
}

/* NAVBAR */

header{
  position:fixed;
  width:100%;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  z-index:1000;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 8%;
}

.logo{
  font-size:22px;
  font-weight:600;
  color:#e91e63;
}

nav ul{
  list-style:none;
  display:flex;
  gap:25px;
}

nav a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

/* HERO */

.hero{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),
  url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9");
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  padding:20px;
}

.hero h1{
  font-size:42px;
}

.hero p{
  margin:15px 0;
}

.btn{
  background:#e91e63;
  color:white;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
  transition:.3s;
}

.btn:hover{
  background:#c2185b;
}

/* SERVIÇOS */

.services{
  padding:80px 8%;
  text-align:center;
}

.services h2{
  margin-bottom:40px;
  font-size:30px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card{
  background:white;
  padding:25px;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.card h3{
  color:#e91e63;
  margin-bottom:10px;
}

/* LOCALIZAÇÃO */

.location{
  padding:80px 8%;
  text-align:center;
  background:#fafafa;
}

iframe{
  width:100%;
  height:350px;
  border:none;
  border-radius:15px;
}

/* FOOTER */

footer{
  background:#111;
  color:white;
  text-align:center;
  padding:30px;
}

/* WHATSAPP */

.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:white;
  font-size:26px;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  box-shadow:0 4px 15px rgba(0,0,0,.3);
}

/* ===== FEEDBACKS ===== */

.testimonials{
  padding:80px 8%;
  text-align:center;
  background:#fff5f8;
}

.testimonials h2{
  font-size:30px;
  margin-bottom:40px;
}

.testimonial-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.testimonial{
  background:white;
  padding:25px;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:.3s;
}

.testimonial:hover{
  transform:translateY(-6px);
}

.testimonial p{
  font-style:italic;
  margin-bottom:15px;
}

.testimonial h4{
  color:#e91e63;
  font-weight:500;
}

/* RESPONSIVO */

@media(max-width:768px){

  nav ul{
    display:none;
  }

  .hero h1{
    font-size:30px;
  }

}