@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
  background: linear-gradient(120deg, #D5BCFE, #B7E7F3);
  height: 100vh;
  overflow-x: hidden;
}

/* ---------------- LOGOS ---------------- */
.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
}

.logo-izquierda, .logo-derecha {
  width: 70px;
  height: auto;
  position: absolute;
  top: 1cm;
}

.logo-izquierda { left: 1cm; }
.logo-derecha { right: 1cm; }

/* ---------------- TÍTULO ---------------- */
.titulo {
  font-family: 'Dancing Script', cursive;
  font-size: 70px;
  margin-top: 1cm;
  font-weight: 700;
  text-align: center;
}

/* ---------------- IMAGEN ---------------- */
.imagen {
  display: block;
  margin: 0 auto;
  margin-top: -25px;
  position: relative;
  width: fit-content;
  animation: glow 2s ease-in-out infinite alternate;
}

.imagen img {
  max-width: 90%;
  height: auto;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 5px #54c4e0); }
  to { filter: drop-shadow(0 0 25px #d331ec); }
}

/* ---------------- BOTONES ---------------- */
.boton {
  position: absolute;
  top: 70%;
  right: 300px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  width: 300px;
  padding: 18px 25px;
  font-size: 22px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background-color: #c7b9f5;
  transition: 0.3s;
}

.btn:hover {
  background-color: #a58de0;
  color: white;
}

/* ---------------- BOTÓN CIRCULAR ---------------- */
.btn-circular {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFC8DD;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.btn-circular:hover {
  transform: scale(1.1);
  background-color: #FFAFCC;
}

/* ---------------- RESPONSIVIDAD ---------------- */
@media (max-width: 1024px) {
  .titulo {
    font-size: 55px;
  }
  .imagen img {
    width: 400px;
  }
  .boton {
    right: 100px;
  }
}

@media (max-width: 768px) {
  .titulo {
    font-size: 45px;
    margin-top: 40px;
  }
  .imagen {
    margin-top: 10px;
    text-align: center;
  }
  .imagen img {
    width: 300px;
  }
  .boton {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 40px auto;
    align-items: center;
  }
  .btn {
    width: 250px;
    font-size: 20px;
  }
  .logo-izquierda, .logo-derecha {
    width: 55px;
    top: 10px;
  }
}

@media (max-width: 480px) {
  .titulo {
    font-size: 38px;
  }
  .imagen img {
    width: 250px;
  }
  .btn {
    width: 220px;
    font-size: 18px;
  }
  .btn-circular {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
