.image-container {
    overflow: hidden;
    border-radius: 10px;
    display: inline-block;
}

.material-img {
    transition: transform 0.3s ease-in-out;
}

.material-img:hover {
    transform: scale(1.1);
}

h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

#nuestro-programa {
    background: rgb(139, 168, 255);
}

#nuestro-programa {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#nuestro-programa li {
    position: relative;
    padding: 12px 15px 12px 40px;
    margin: 10px 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

#nuestro-programa li:hover {
    transform: translateX(10px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

#nuestro-programa li::before {
    content: '✔';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: rgb(253, 101, 101);
    font-weight: bold;
    transition: color 0.3s ease;
}

#nuestro-programa li:hover::before {
    color: #28a745;
}

@keyframes glow {
    0% {
        box-shadow: 0px 0px 5px rgba(255, 77, 77, 0.3);
    }

    50% {
        box-shadow: 0px 0px 20px rgba(255, 77, 77, 0.5);
    }

    100% {
        box-shadow: 0px 0px 5px rgba(255, 77, 77, 0.3);
    }
}

#nuestro-programa li:hover {
    animation: glow 1.5s infinite alternate;
}

#descripcion {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    border-left: 5px solid #ff4d4d;
    border-top: 5px solid #ff4d4d;
    border-right: 5px solid rgb(44, 117, 225);
    border-bottom: 5px solid rgb(44, 117, 225);
    border-radius: 10px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

#descripcion:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.2);
}

#descripcion::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.7s ease-in-out;
}

#descripcion:hover::before {
    left: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}