.streaming-section {
    background: #281549;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px); 
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    width: 100%;
    max-width: none;
    margin: auto;
    border-radius: 0;
    box-shadow: none;


}

.streaming-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-titlec {
    font-size: 2.8em; /* Título más grande para ser llamativo */
    margin-bottom: 40px;
    text-shadow: 0 0 10px #ff69b4, 0 0 20px #ff69b4;
}

.streaming-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.item {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(0.95); /* Ligera reducción inicial */
    opacity: 0.8;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.streaming-section.visible .item {
    transform: scale(1); /* Vuelve a su tamaño normal al aparecer */
    opacity: 1;
}

.item:hover {
    transform: scale(1.05) translateY(-5px); /* Ligeros movimientos al pasar el ratón */
    opacity: 1;
}

.icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 5px #ff69b4;
    animation: pulseIcon 2s infinite alternate; /* Animación de pulso para los iconos */
}

@keyframes pulseIcon {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 3px #ff69b4;
}

.item .availability {
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
}

/* Animaciones de entrada específicas para cada item */
.streaming-section.visible .item-1 {
    animation: slideInLeft 0.6s ease-out forwards;
}

.streaming-section.visible .item-2 {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.streaming-section.visible .item-3 {
    animation: slideInRight 0.6s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Adaptación para pantallas más pequeñas */
@media (max-width: 768px) {
    .streaming-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .item {
        width: 90%;
    }

    .icon {
        font-size: 2.5em;
    }

    .item h3 {
        font-size: 1.6em;
    }
}