:root {
  --principal: rgba(146,99,153);
  --crema: rgba(214,208,177);
  --lavanda: rgba(175,142,159);
  --morado-oscuro: rgba(117,48,134);
  --hover: #eacdf1;
  --blanco: #fff;
  --negro: #222;
  --sombra: rgba(0,0,0,0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-image: url(../Imagenes/Fondo.jpg);
  color: var(--negro);
  overflow: hidden;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  animation: fadeIn 1.5s ease-in;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 10px var(--sombra));
}

.titulo {
  font-size: 2.5rem;
  color: var(--blanco);
  text-shadow: 1px 1px 3px var(--morado-oscuro);
}

.intro {
  margin-top: 2rem;
  max-width: 700px;
  animation: slideUp 1.2s ease-out;
}

.slogan {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: #000;
}

.descripcion {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  background-color: var(--crema);
  color: var(--principal);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px var(--sombra);
  transition: background-color 0.3s ease, transform 0.2s;
}

.btn:hover {
  background-color: var(--hover);
  transform: scale(1.05);
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}