

body {
            font-family: arial;
    }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: #EEF2F4;
            flex-wrap: wrap; /* Para que los elementos se ajusten en varias líneas en pantallas pequeñas */
        }
        .logo-container {
            display: flex;
            align-items: center;
            flex-grow: 1;

        }
        .logo-container img {
            height: 100px;
            margin-right: 10px;
        }
        .header-text {
            color: #000;
            font-size: 1rem;
        }
        .header-text .subtext {
            color: black;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .header-text .highlight {
            color: #00bcd4;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .search-container {
            position: relative;
            margin-top: 10px; /* Separar un poco del logo en pantallas pequeñas */
        }
        .search-container input[type="text"] {
            border: 2px solid #00bcd4;
            border-radius: 20px;
            padding: 5px 15px;
            padding-right: 35px;
            outline: none;
            width: 100%; /* Ajustar a 100% en pantallas pequeñas */
        }
        .search-container .search-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #FFFFFF;
            background-color: #00bcd4;
            border-radius: 50%;
            padding: 5px;
            cursor: pointer;
        }
        .login-link {
            color: #0277bd;
            font-weight: bold;
            font-size: 1rem;
            display: flex;
            align-items: center;
            margin-top: 10px;
            cursor: pointer;
        }
        .login-link i {
            padding-top: 1px;
            margin-left: 5px;
            font-size: 1.2rem;
        }
    
 

        /* Navbar y fondo inferior */
        .nav-menu{
            background-color: #EEF2F4;
            color: #13417D;
        }
        .navbar-custom {
            background-color: #ffffff;
            padding-bottom: 0;
        }
                    /* Cambia el color del texto del menú a azul */
        .nav-link {
              color: #13417d;
                 margin: 0px 2px -4px 2px;
              font-weight: bold;
              
        }
       

        .nav-link:hover {
  color: #13417d;
}
       
        .dropdown-menu .dropdown-item:focus, 
.dropdown-menu .dropdown-item:hover {
  background-color: #0097b2;
  color: white; /* Mantiene el color del texto sin cambios */
}


navbar .nav-link:focus,
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #13417d !important; /* Mantén el color cuando esté activo o en foco */
}


        .navbar-custom .nav-link {
            color: #01579b;
            font-weight: bold;
            padding: 8px 15px;
        }
        .navbar-custom .nav-link:hover {
            color: #0277bd;
        }
        .navbar-bottom-border {
            height: 20px;
            background-color: #0097B2;
        }
        /* Ajustes para pantallas pequeñas */
        @media (max-width: 768px) {
            .header-container {
                text-align: center;
            }
            .header-text {
                font-size: 0.9rem;
            }
            .header-text .subtext {
                font-size: 1rem;
            }
            .header-text .highlight {
                font-size: 0.9rem;
            }
            .navbar{
                padding-left: 2%;
            }
        }

    /* Estilos para los iconos flotantes */
        .social-icons {
            position: fixed;
            top: 68%;
            right: 0%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        .social-icons a {
            display: block;
            margin: 10px 0;
            background-color: #0097B2;
            color: white;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            font-size: 20px;
            transition: background-color 0.3s ease;
        }

        .social-icons a:hover {
            /*background-color: #0056b3;*/
            

        }

           .login-card {
            max-width: 400px;
            margin: 50px auto;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: #f0f8ff;
        }

      
        .login-card .btn-group-toggle .btn {
            background-color: #0277bd;
            color: white;
        }
        .login-card h5 {
            color: #0277bd;
            font-weight: bold;
        }

             .footer {
            background-color: #0097B2;
            color: #ffffff;
            padding: 20px 0;
        }
        .footer a {
            color: #ffffff;
            text-decoration: underline;
        }
        .footer a:hover {
            color: #cccccc;
        }
        .footer .logo {
            max-height: 80px;
        }
