.modulo {
    width: 100%;
    max-width: 950px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    font-family: 'Merriweather', Arial, serif;
    padding: 30px;
}

.side-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.titulo {
    font-family: 'Merriweather', Arial, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 15px;
    max-width: 900px;
}

.copete {
    font-family: 'Merriweather', Arial, serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 25px;
}

.video-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.videos-fila {
    display: flex;
    justify-content: center;
    gap: 72px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.video-wrapper {
    position: relative;
    width: 290px;
    height: 290px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    /* clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%); */
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #000;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(185, 35, 33, 0.8);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-container {
    position: relative;
    padding-bottom: 44%;
    width: 81%;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
}

.video-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(185, 35, 33, 0.3);
}

.video-wrapper:hover .play-icon {
    background-color: rgba(185, 35, 33, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 1200px) {
    .video-wrapper {
        width: 300px;
        height: 169px;
    }

    .videos-fila {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .modulo {
        padding: 25px;
    }

    .titulo {
        font-size: 1.8rem;
    }

    .video-wrapper {
        width: calc(33.33% - 20px);
        height: auto;
        /* aspect-ratio: 16/9; */
        aspect-ratio: 9/12;
    }

    .video-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .titulo {
        font-size: 1.6rem;
    }

    .copete {
        font-size: 1rem;
        padding: 0 1rem
    }

    .videos-fila {
        gap: 15px;
        margin-bottom: 15px;
        justify-content: space-between;
    }

    .video-wrapper {
        width: calc(50% - 10px);
        max-width: none;
    }

    .video-container {
        width: 100%;
        margin-top: 15px;
        padding-bottom: 57%;
    }
}

@media (max-width: 480px) {
    .modulo {
        padding: 15px;
        max-width: 390px;
    }

    .titulo {
        font-size: 1.4rem;
    }

    .videos-fila {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 5px;
        margin-bottom: 0px;
    }

    .video-wrapper {
        width: calc(50% - 5px);
        height: auto;
        /* aspect-ratio: 16/9; */
        aspect-ratio: 9/12;
    }

    .logo img {
        max-width: 180px;
    }

    .play-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .modulo {
        padding: 15px;
        max-width: 340px;
    }
}

@media (max-width: 350px) {
    .modulo {
        padding: 15px;
        max-width: 280px;
    }
}