body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica';
  color: #ffffff;
  background-color: black;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.fondo {
  background-image: url('https://cdn.pixabay.com/photo/2024/03/08/13/04/autumn-8620917_1280.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  max-width: 800px;
  margin: 50px auto;
  padding: 2em;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  text-align: center;
}

h1 {
  color: #2d2c55;
  text-shadow:
      -2px -2px 0 #fff,
      2px -2px 0 #fff,
      -2px 2px 0 #fff,
      2px 2px 0 #fff;
}

button {
  background-color: gray;
  border: none;
  padding: 12px 24px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 1em;
  border-radius: 10px;
  transition: 0.3s;
}

button:hover {
  background-color: #515151;
}

.oculto {
  display: none;
  color: #fff;
}

#sorpresa {
  margin-top: 2em;
  animation: fadeIn 2s ease-in-out;
}

.flores {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.flores img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.flores img:hover {
  transform: scale(1.05);

  .cuadro {
  max-width: 700px;
  margin: 50px auto;
  background: rgba(255, 255, 255, 0.2); /* fondo translúcido */
  border-radius: 15px;
  padding: 30px;
  color: white;
  font-size: 1.3em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}



}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

