@font-face {
    font-family: 'Dancing Script'; 
    src: url('./fuentes/Dancing_Script/static/DancingScript-Regular.ttf') format('truetype'); /* Ruta a la fuente */
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('./fuentes/Montserrat-Regular.woff2') format('woff2'),
        url('./fuentes/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }
  body{
    margin: 0;
  }
  
  header {
    background-color: white;
    font-family: 'Century Gothic', sans-serif;
    width: 100%;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .arribaHeader {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start; /* Los elementos comienzan alineados a la izquierda */
    align-items: center; /* Asegura que estén alineados verticalmente */
    padding-left: 50px;
  }
  
  .logo-header a {
    text-decoration: none;
  }

  .logo-header h1 {
    background: linear-gradient(to right, #1f775a, #0075a8, #2fa496);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 5em;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .iconofrase-container {
    display: flex;
    justify-content: space-between; /* Alinea el contenido en los extremos */
    align-items: center; /* Centra verticalmente los elementos si son de diferentes alturas */
    width: 100%; /* Ocupa todo el ancho posible */
    padding: 10px 0; /* Puedes ajustar el padding si es necesario */
    margin-top: -60px;
  }
  
  .iconofrase-container p {
    padding-left: 16%;
    font-size: 2.3em;
    background: linear-gradient(to left,#2fa496 , #0075a8,#1f775a, #1f775a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Dancing Script', cursive; 
  }
  
  .nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Espacio entre los elementos de la navegación */
    padding: 10px;
    width: 100%; /* Asegura que ocupe todo el ancho */
    position: relative;  /* Importante para que los elementos se posicionen correctamente */
    box-sizing: border-box;
}

.nav-container::before {
    content: ""; /* Necesario para el pseudo-elemento */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,#1f775a, #0075a8, #2fa496);
    background-size: 200% auto;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: -1;  /* Asegura que esté detrás de los enlaces */
    animation: gradientMove 5s ease infinite; /* Animación del fondo */
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    margin: 0;
    position: relative;  /* Necesario para la interactividad */
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}


  .nav-item.active {
    color: white;
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6), 
                 0px 0px 15px rgba(255, 255, 255, 0.6), 
                 0px 0px 15px rgba(255, 255, 255, 0.6); /* Triple sombra para efecto neón más intenso */
    transition: text-shadow 0.4s ease-in-out, color 0.4s ease-in-out;
  }
  
  @keyframes scroll {
      from {
          transform: translateX(100%);
      }
      to {
          transform: translateX(-100%);
      }
  }
  
  /* 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.5);
}

.modal-content {
  background: linear-gradient(to bottom right, #1f775a, #0075a8, #2fa496);
  width: 90%;
  max-width: 400px;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.close-btn {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    float: right;
}

.close-btn:hover {
    background: darkred;
}

.modal input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #007BFF;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.modal button:hover {
    background: #0056b3;
}
  
  .dropdown {
    position: relative;
    display: inline-block;
    margin-top: -20px;
    font-style: bold;
  }
  .logout-btn {
    background-color: red;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 10px;
}

.logout-btn:hover {
    background-color: darkred;
}
  
footer {
    margin: 30px 0 0 0;
    color: black;
    font-family: 'Century Gothic', sans-serif;
    text-align: center;
    padding: 10px 0;
    position: relative; /* Necesario para posicionar el pseudo-elemento */
    background-color: transparent; /* Asegura que el color de fondo sea transparente */
}

footer::before {
    content: ""; /* Necesario para el pseudo-elemento */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #1f775a, #0075a8, #2fa496);
    background-size: 200% auto;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: -1; /* Asegura que esté detrás del contenido */
    animation: gradientMove 5s ease infinite; /* Animación del fondo */
}

.footer-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-footer{
  margin-bottom: 0px;
  margin-top: -40px;
}

.logo-footer a{
  text-decoration: none;
}

.logo-footer h2{
  color: white;
  font-size: 3.5em;
}

.social-icons {
    margin-bottom: 5px;
    margin-top: -30px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: auto;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
}

.footer-credits {
    margin-top: 5px;
    font-size: 0.9em;
    color: white;
}

.footer-credits p {
    margin: 0;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}
