* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #01080E 12%,
    #FFF 12%,
    #FFF 88%,
    #01080E 88%
  );
  padding: 5vh 6vw;
  overflow-x: hidden;
}

.header {
  max-width: 1400px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 3.5rem;
  color: #1875E8;
}

.logo span {
  color: #F2A6C2;
}

.botao-carrinho {
  text-decoration: none;
  background: #1875E8;
  color: #FFF;
  padding: 0.8rem 1.8rem;
  border-radius: 1rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(24, 117, 232, 0.4);
  transition: 0.3s ease;
}

.botao-carrinho:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(24, 117, 232, 0.6);
}

.conteudo {
  max-width: 1400px;
  margin: 0 auto;
}

.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.produto-card {
  background: rgba(255, 240, 246, 0.95);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;

  transition: 0.3s ease;
}

.produto-card:hover {
  transform: translateY(-6px);
}

.produto-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.produto-card h2 {
  font-size: 1.3rem;
  min-height: 3.2rem;
}

.preco {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1875E8;
  margin: 0.8rem 0;
}

.produto-card button {
  background: #F2A6C2;
  border: none;
  border-radius: 1rem;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.produto-card button:hover {
  background: #1875E8;
  color: #FFF;
}

.footer {
  margin-top: 6rem;
  background: linear-gradient(135deg, #1875E8, #F2A6C2);
  padding: 3rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.footer-info h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-info p {
  color: #fff;
  font-size: 1.1rem;
}

.footer-info strong {
  background: #fff;
  color: #01080E;
  padding: 0.15rem 0.45rem;
  border-radius: 0.4rem;
}

.footer-links h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 1.05rem;
  color: #01080E;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.3rem 0.8rem;
  border-radius: 0.6rem;
  display: inline-block;
  transition: 0.3s ease;
}

.footer-links a:hover {
  transform: translateX(6px);
  background: #fff;
}

#petals-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.petal {
  position: absolute;
  top: -40px;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 30% 30%, #fff, #F2A6C2);
  border-radius: 60% 40% 60% 40%;
  opacity: 0.8;
  animation: fall linear forwards;
}

@keyframes fall {
  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1.5rem;
  }

  .logo {
    font-size: 2.6rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links a:hover {
    transform: none;
  }
}
