 .hover-group-container{
    width: 100%;
    text-align: center;
 }
 .hover-item {
            display: inline-block;
            text-align: center;
            padding: 8px;
            transition: transform 0.3s ease;
            width: 24%;
            
        }

        .hover-link {
            padding: 40px 0px;
            text-decoration: none !important;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #fff;
            border-radius: 15px;
            /* box-shadow: 0px 6px 8px rgb(99, 99, 99) !important; */

        }
        .hover-link:hover {
            
            background: #014473;
             box-shadow: 0px 2px 10px rgb(157, 188, 255) !important;

        }
        .hover-image-container {
            position: relative;
            display: inline-block;
            width: 80px;
            height: 80px;
            margin-bottom:0px;
        }

        .hover-img-normal,
        .hover-img-hover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: opacity 0.3s ease;
        }

        /* Estado inicial: imagen normal visible, hover oculta */
        .hover-img-normal {
            opacity: 1;
        }

        .hover-img-hover {
            opacity: 0;
        }

        /* Estado hover: imagen normal oculta, hover visible */
        .hover-item:hover .hover-img-normal {
            opacity: 0;
        }

        .hover-item:hover .hover-img-hover {
            opacity: 1;
        }

        .hover-text {
            width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;

        }
        .hover-item .hover-text p{
            margin:0 auto;
            max-width: 130px ;
            font-family: Arial, sans-serif;
            font-size: 13px !important;
            line-height: 13px !important;
            color: #014473 !important;
            margin-top: 8px !important;
            font-weight: 600 !important;
            text-decoration:none !important;
        }
        /* Opcional: efecto adicional en el texto */
        .hover-item:hover .hover-text p {
            color: #fff !important;
            text-decoration:none !important;
        }

        /* Animación de entrada si ya tienes la clase animate-in */
        .animate-in {
            animation: fadeInUp 0.1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media screen and (max-width: 800px) {
            .hover-item {
                width: 32.5%;
            }
            
        }
        @media screen and (max-width: 570px) {
            .hover-item {
                width: 49%;
            }
            
        }
  