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

body {
  background: #fffafc;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header{
 width: 90%;
  max-width: 1100px;
  padding: 12px 30px;
  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 20px rgba(214, 51, 132, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(214, 51, 132, 0.08);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #d63384;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

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

nav a {
  text-decoration: none;
  color: #444;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

nav a:hover{
  color:#ff4f81;
}



.hero{
  margin-top:130px;
  position:relative;
  width:90%;
  max-width:1200px;
  height:80vh;

  margin-left:auto;
  margin-right:auto;

  overflow:hidden;
  border-radius:30px;

  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.catalogo {
  padding: 130px 40px 70px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.catalogo h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #d63384;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

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

.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

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

.card h2 {
  margin: 15px 0 5px;
  color: #d63384;
}

.card p {
  font-size: 14px;
  padding: 0 15px;
}

.card span {
  display: block;
  margin: auto;
  color: #777;
  font-size: 13px;
}

.card strong {
  display: block;
  margin-bottom: auto;
  color: #ff3f6c;
  font-size: 16px;
}

.buttons{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-bottom: auto;
}

.buttons button{
  padding:10px 20px;
  border:none;
  border-radius:30px;

  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, #ff2465 0%, #ff4f81 100%);
  transform:scale(1.05);
}

footer {
  background: linear-gradient(135deg, #ff4f81 0%, #ff6f91 100%);
  color: white;
  text-align: center;
  padding: 18px;
  margin-top: auto;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {

  .container {
    flex-direction: column;
    padding: 20px;
  }

  .card {
    width: 100%;
  }

}