* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f8f8;
  color: #333;
}

header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
}

.logo {
  color: #e91e63;
  font-size: 24px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a:hover {
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 4px solid rgb(255, 0, 0);
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

#cart-btn {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.banner {
  background: url('./img/Banner\ Site\ Moda\ Feminina\ Nova\ Coleção\ Loja\ Online\ Minimalista\ e\ Elegante.png') center/cover no-repeat;
  color: #d1c9c9;
  text-align: center;
  padding: 120px 20px;
  width: 100%;
}

.banner-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background: #e91e63;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.btn:hover{
  text-transform: uppercase;
  font-weight: 700;

}

.catalogo {
  padding: 60px 20px;
  text-align: center;
}

.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card h3 {
  margin: 10px 0;
}

.card p {
  color: #e91e63;
  font-weight: bold;
}

.card button {
  background: #e91e63;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 10px;
}

.sobre, .contato {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  margin-top: 40px;
}

form {
  display: grid;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

input, textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

footer {
  text-align: center;
  padding: 20px;
  background: #fff;
  margin-top: 40px;
}

@media(max-width: 395px) {
  .inicio h1 {
    font-size: 1.0rem;
    flex-direction: initial;
}

  .inicio {
    padding: 5px;
  }

  .inicio button {
    font-size: 0.6rem;
    width: 60px;
    margin-left: 5px;
    text-align: center;
  }

  .banner {
    color: #f13434;
  }

  .banner .text {
    margin-top: 80px;
    padding-top: 6rem;
    
  }

}