section.filtros {
    padding: 30px 0;
    background: #f5f5f5;
}

section.filtros .container {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

section.filtros a {
    display: block;
    padding: 10px 15px;
    border-radius: 4px;
    background: #fff;
    color: #000;
    font-weight: bold;
}

section.filtros a:hover,
section.filtros a.active {
    background: var(--azul);
    color: #fff;
}

section.videos {
    padding: 120px 0;
}

section.videos .box {
    padding: 15px;
    border-radius:8px;
    background: #f5f5f5;
    margin-bottom: 30px;
    border: 1px #dedede solid;
}

section.videos iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    display: block;
}

section.videos h3 {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin: 20px;
    line-height: 1.5;
}


section.videos .video__container {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    position: relative;
    cursor: pointer;
}

section.videos .video__container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

section.videos .video__container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    z-index: 10;
}