/* Efecto hover para la sección Servicios */
.servicio-hover {
    position: relative;
    overflow: hidden;
}
.servicio-img {
    display: block;
    transition: opacity 0.3s;
}
.servicio-info {
    display: none;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgb(0, 128, 157);
    color: #fff;
    z-index: 2;
    padding: 30px 15px 15px 15px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.servicio-hover:hover .servicio-img {
    opacity: 0;
}
.servicio-hover:hover .servicio-info {
    display: flex;
    flex-direction: column;
}
.card1 {
    background: #232323;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 15px;
    min-width: 170px;
    min-height: 270px;
    max-width: 950px;
    max-height: 420px;
    position: relative;
    overflow: hidden;
}
.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
