.containerVivo {
    width: 100%;
    height: 100%;
    background-color: #356073;
    display: flex;
    justify-content: center;
    align-items: center
}

.rellenoVivo {
    padding: 10px;
}

.textVivo {
    color: white;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.programas {
    width: 100%;
    background-color: #356073;
    padding: 10px;
    border-radius: 7px;
    float: left;
    margin-top: 10px;
}

.img-notis {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 220px;
}
.img-notiss2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 380px;
}

.programas-imgs {
    width: 100%;
    margin-bottom: 15px;
    background-position: center;
    background-size: cover;
    height: 250px;
    margin-top: 10px;
    object-fit: cover;
}

.img-slide {
    width: 100%;
    height: 450px;
    background-position: center;
    background-size: cover;
    object-fit: cover;
}

.notirelacionadas-img {
    width: 100%;
    height: 210px;
    background-position: center;
    background-size: cover;
    object-fit: cover;
}

.img-notis-not {
    width: 100%;
    height: 500px;
    background-position: center;
    background-size: cover;
    object-fit: cover;
}

.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #356073;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.float-wa:hover {
    background-color: #2a4d5c;
    transform: scale(1.1);
    color: #FFF;
    text-decoration: none;
}

.program-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.program-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(53, 96, 115, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(53, 96, 115, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(53, 96, 115, 0);
    }
}

.contenedor {
    background-color: #356073;
    padding: 80px 0;
}

.borde {
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.borde:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social-header {
    padding: 15px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.bg-fb {
    background-color: #1877f2;
}

.bg-tw {
    background-color: #000;
}

.bg-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.widget {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f8f9fa;
}

.item-ig {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.borde-instagram {
    height: 600px;
}

.ig-movil {
    display: block;
    height: auto;
    min-height: auto;
}

.movil-esp {
    width: 100%;
}

@media (max-width: 768px) {
    .contenedor {
        padding: 40px 0;
    }

    .movil-esp {
        width: 50%;
    }

    .borde-instagram {
        height: auto !important;
        height: 300px;
        min-height: 400px;
    }

    .ig-movil {
        display: block;
        height: 515px !important;
        min-height: auto;
    }
}