.videos {
    padding: 60px 5%;
    color: white;
    text-align: center;
}

.videos-titulo {
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.video-box iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .video-box iframe {
        height: 315px;
    }
}