section.videos {
    padding: 90px 0;
    margin-top: 100px;
    background: #f5f5f5;
}

section.videos .title {
    text-align: center;
    padding-top: 50px;
    position: relative;
    padding-bottom: 90px;
    position: relative;
}

section.videos .title .icone {
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 0 30px #00000021;
    border-radius: 50%;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

section.videos .title .icone svg {
    width: 70px;
    height: 70px;
    fill: var(--verde);
}

section.videos .title h2 {
    color: var(--azul);
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

section.videos .title h2:after {
    content: '.';
    color: var(--verde);
}

section.videos .videos__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

section.videos .videos__list .box {
    position: relative;
}

section.videos .videos__list .box a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 3;
}

section.videos .videos__list .box img {
    display: block;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 16/9;
}

section.videos .videos__list .box h3 {
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    color: #000;
}

section.videos .thumb {
    position: relative;
    transition: all .4s;
}

section.videos .videos__list .box:hover .thumb {
    transform: scale(1.05);
}

section.videos .thumb:before {
    content: '';
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 1;
}

section.videos .thumb:after {
    content: '';
    position: absolute;
    top:50%;
    left: 50%;
    z-index: 2;
    width: 0; 
    height: 0; 
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 24px solid var(--azul);
    transform: translate(-50%, -50%);
    margin-left: 3px;
}