/* IMPORTS */

@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

/* Estilos para el modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Contenido del modal */
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-content h2 {
  margin-bottom: 15px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 10px;
}

/* Botón cerrar */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Botón de descarga */
.btn-descargar {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-descargar:hover {
  background: #0056b3;
}

/* Botón de redirección */
.btn-redirigir {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-redirigir:hover {
  background: #1e7e34;
}

footer {
  width: 100%;
  background-color: #0583f2;
  border-radius: 160px 160px 0 0;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.disfooter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}

.logoescuelafooter {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logoescuelafooter img {
  height: 12rem;
  object-fit: contain;
}

.texto-footer {
  flex: 2;
  text-align: center;
  color: white;
  position: relative;
}

.texto-footer b {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 28px;
}

.lineatextofooter {
  margin: 10px auto 15px auto;
  height: 5px;
  width: 90%;
  background-color: white;
  border-radius: 4px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}

.socials a {
  text-decoration: none;
}

.socials a img {
  height: 2.1rem;
}

.lineafondofooter {
  display: flex;
  height: 25px;
  width: 100%;
  background-color: rgb(172, 42, 42);
  justify-content: center;
  text-align: center;
}
.lineafondofooter p a {
  text-decoration: none;
  padding-left: 5px;
  color: #ffffff;
}
.lineafondofooter p {
  display: flex;
  color: #fff;
  justify-content: center;
  text-align: center;
  align-items: center;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  footer {
    height: 250px;
    padding: 40px 20px;
    border-radius: 80px 80px 0 0;
  }

  .disfooter {
    flex-direction: column;
    gap: 20px;
  }

  .logoescuelafooter img {
    height: 6rem;
  }

  .texto-footer b {
    font-size: 20px;
  }

  .socials {
    gap: 1.5rem;
  }

  .lineafondofooter p {
    display: none;
  }
}
