* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(#ffe4ef, #fff7f2);
  font-family: 'Verdana', sans-serif;
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 400px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  animation: aparecer 2s ease;
}

.logo {
  font-size: 2.8rem;
  color: #d63384;
  margin-bottom: 10px;
}

.frase {
  font-size: 1.1rem;
  color: #7a3e6a;
  min-height: 50px;
  margin-bottom: 25px;
}

.galeria {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.card {
  background: #fff;
  border-radius: 18px;
  width: 65px;
  height: 65px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: flotar 4s infinite ease-in-out alternate;
}

.card:nth-child(2) { animation-delay: 0.5s; }
.card:nth-child(3) { animation-delay: 1s; }
.card:nth-child(4) { animation-delay: 1.5s; }

.pedido {
  background: #ff8fbc;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 143, 188, 0.4);
  transition: transform 0.3s;
}

.pedido:hover {
  transform: scale(1.1);
}

.mini {
  font-size: 0.85rem;
  color: #a25a7a;
  margin-top: 15px;
}

/* FLORES CAYENDO */
.petalos span {
  position: absolute;
  top: -10%;
  font-size: 1.5rem;
  animation: caer linear infinite;
  opacity: 0.8;
}

@keyframes caer {
  to {
    transform: translateY(120vh) rotate(360deg);
  }
}

@keyframes flotar {
  from { transform: translateY(0); }
  to { transform: translateY(-15px); }
}

@keyframes aparecer {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}