@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400&display=swap');

body {
  background: linear-gradient(180deg, #f8f3eb 0%, #e7d5b6 100%);
  color: #4b3d2a;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  transition: background 0.8s ease;
}

.container {
  text-align: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.oculto {
  display: none;
}

.titulo {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #3c2e1e;
  letter-spacing: 2px;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease;
}

.subtitulo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #3e2f1c;
}

.boton {
  background-color: #b99565;
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 1.1rem;
  border-radius: 40px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(185, 149, 101, 0.3);
}

.boton:hover {
  background-color: #a98253;
  box-shadow: 0 8px 20px rgba(185, 149, 101, 0.5);
  transform: translateY(-2px);
}

.click-texto {
  font-size: 0.9rem;
  color: #6e5c45;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.botones-secundarios {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.boton-secundario {
  background-color: #ead9bd;
  color: #3e2f1c;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.boton-secundario:hover {
  background-color: #d9c3a1;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.mensaje {
  margin-top: 30px;
  font-size: 1.2rem;
  color: #4b3d2a;
  font-style: italic;
  letter-spacing: 1px;
  animation: fadeIn 0.5s ease;
}

/* Animaciones */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.desaparecer {
  opacity: 0;
}

.aparecer {
  animation: fadeIn 1s ease;
}
