
    
        .container {
            width: 100%;
            background-color: white;
        }
        
        h1 {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        
        .benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            width: 220px;
            height: 230px;
            position: relative;
            
            
            
        }
        
     /*  .benefit-item:hover {
            background-color: #f0f7ff;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }*/
        
        .benefit-icon {
            width: 100%;
            height: auto;
          /*  border-radius: 50%;
            background-color: #e6f2ff;*/
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            font-size: 24px;
           
        }
        
        .benefit-link {
            text-decoration: none !important;
            color: #102851;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
           /* position: absolute;*/
            bottom: 1px;
            
        }
        
        /* Responsive design */
        @media (max-width: 900px) {
            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
            
            h1 {
                font-size: 24px;
            }
        }
        
        @media (max-width: 600px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .container {
                padding: 25px 20px;
            }
            
            h1 {
                font-size: 22px;
                margin-bottom: 30px;
            }
            
            .benefit-icon {
                 width: 100%;
                height: auto;
                font-size: 20px;
            }
            
            .benefit-link {
                font-size: 14px;
            }
        }
        
        @media (max-width: 400px) {
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            body {
                padding: 10px;
            }
            
            h1 {
                font-size: 20px;
            }
        }
        
    /*INFORMACION DEL MODAL */
           .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imggray {
  filter: grayscale(100%) !important; /* Pone la imagen completamente en gris */
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

/* Contenedor de la imagen */
.popup-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: popupAppear 0.4s ease-out;
}

@keyframes popupAppear {
    from {
        opacity: 0;
        transform: scale(0.7) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}


/* ===== OVERLAY (FONDO OSCURO) ===== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

/* Mostrar modal */
.popup-overlay.active {
    display: flex;
}

/* ===== CONTENEDOR DEL MODAL ===== */
.popup-image-container {
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    border-radius: 14px;
    padding: 18px;
    position: relative;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
    animation: popupFade 0.25s ease-out;
}

/* Animación suave de entrada */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.93);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== BOTÓN DE CERRAR ===== */
.popup-close-btn {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
    padding: 0;
}

.popup-close-btn:hover {
    transform: scale(1.1);
}

.popup-close-btn img {
    width: 18px;
    height: 18px;
}

/* ===== IMAGEN DEL MODAL ===== */
.popup-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* ===== TEXTO DEL MODAL ===== */
.popup-image-text {
    margin-top: 14px;
    text-align: center;
}

.popup-image-text p {
    font-size: 1rem;
    font-weight: 500;
    color: #2b2b2b;
}


/* ===== BLOQUEAR SCROLL DEL BODY MIENTRAS EL MODAL ESTÁ ABIERTO ===== */
body.popup-open {
    overflow: hidden !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .popup-image-container {
        padding: 14px;
    }
    .popup-close-btn {
        width: 34px;
        height: 34px;
        top: -10px;
        right: -10px;
    }
    .popup-close-btn img {
        width: 16px;
    }
}

.qodef-m-title a {
    /* Opcional: Quita el subrayado por defecto en el estado normal */
    text-decoration: none;
}

.qodef-m-title a:hover {
    /* **Importante:** Quita el subrayado cuando el cursor está encima */
    color:#0056b3;
}
