.topbar {

    background: rgb(0,126,136);
    background: linear-gradient(90deg, rgba(0,126,136,1) 9%, rgba(0,150,163,1) 31%, rgba(0,180,195,1) 58%, rgba(0,205,223,1) 86%, rgba(0,235,255,1) 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    width: 100%;
    position: fixed;
    height: 50px;
    top: 0;
    z-index: 30;
    margin-bottom: 5px;
}

.navbar {
    background-color: #f8f8fa;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-top: 38px; /* Ajuste según la altura del topbar */
    width: 100%;
    z-index: 1030;
}







/*Animacion a los nav-link del navbar*/
/*Animacion a los nav-link del navbar*/
/*Animacion a los nav-link del navbar*/

.navbar-animation a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 95%;
    height: 2px;
    background-color: #FFA500;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-animation a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.82, 0.94);
  }

  .nav-link {
    position: relative;
    color: #00A9B7;
    padding-bottom: 4px;
    transition: all 0.2s linear;
  }

  .nav-link:hover {
    font-weight: 500;
    color: #01656e;
    transition: all 0.4s linear;
  }












/* Estilo para el logo grande */
.navbar-logo {
    height: 60px; /* Ajusta el tamaño según tu preferencia */
    margin-right: 10px;
}

/* Estilo para el logo pequeño */
.navbar-logo-small {
    height: 50px; /* Ajusta el tamaño según tu preferencia */
}






.btn-ingresar-nav {

    background-color: #FFFFFF;
    color: #00A9B7;
    border: 2px solid #00A9B7;
    margin-right: 8px;
    padding: 3px 10px;
    transition: all 0.2s linear;
}

.btn-prueba-nav {
    background-color: #0096a3;
    color: #ffffff;
    margin-right: 10px;
    border: 2px solid #0096a3;
    padding: 3px 10px;
    transition: all 0.2s linear;
}

.btn-prueba-nav:hover {
    border: 2px solid #0096a3;
    background-color: #f8f8fa;
    color:#00A9B7;
    transition: all 0.2s linear;
}

.btn-ingresar-nav:hover {
    background-color: #0096a3;
    color: #ffffff;
    border: 2px solid #0096a3;
    transition: all 0.2s linear;
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
    .navbar-buttons {
        display: none;
    }
}
.modal-body a {
    color: #00A9B7;
    font-weight: bold;
    margin: 10px 0;
    display: block;
    text-align: center;
}

.modal-body .btn-prueba-nav {
    background-color: #ffffff;
}


.modal-body .btn-prueba-nav {
    background-color: #00A9B7;
    color: #FFFFFF;
}

.modal-body .btn-prueba-nav:hover {
    text-decoration: underline;
    background-color: #FFFFFF;
}

.modal-body .btn {
    width: 100%;
    margin-top: 10px;
}

.modal-content {
    border-radius: 10px;
    padding: 20px;
}

.modal-header {
    border-bottom: none;
    display: flex;
    justify-content: flex-end;
}

.modal-header .close {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-header .close i {
    color: #000; /* Cambia el color según tu preferencia */
}

.modal-header .close:hover i {
    color: #1ea9ad; /* Cambia el color de hover según tu preferencia */
}

