.contenedorPremiados {
    position: relative;
    overflow: visible;
}

.contenedorPremiados {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: start;
}

.cuadroPremiado {
    width: calc(24% - 5px);
    aspect-ratio: 1 / 1;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    position: relative;
    perspective: 1000px;
    box-sizing: border-box;
    overflow: hidden;
}

.flip-card2 {
    perspective: 1000px;
    height: 100%;
}

.flip-card-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    height: 100%;
}

.flip-card2 .flip-card-inner .flip-card-front {
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cuadroPremiado .flip-card-front {
    overflow: hidden;
    background-position: center center;
}

.flip-card-front .bg-blur {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.08);
    /*pointer-events: none;*/
    z-index: 0;
}

.flip-card2 .flip-card-inner .flip-card-front span {
    color: #FFF;
    font-size: 3.8rem;
    font-family: 'brockmann', sans-serif;
    line-height: 3.4rem;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    font-weight: bolder;
}

.flip-card-front .scrim {
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /*pointer-events: none;*/
    z-index: 0;
}

.flip-card2 .flip-card-inner .flip-card-front p {
    color: #FFF;
    font-size: 1.5rem;
    font-family: 'brockmann', sans-serif;
    line-height: 1.8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-bottom: 0;
    transform: translate(-50%, -50%);
}

.expander-content, .expander-body {
    filter: none;
    transform: none;
}
.expander-content {
    overflow: visible;
}

.expander-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.expander-header h3 {
    padding-right: 20px;
}

.expander-body {
    border-bottom: 2px solid #000;
}

#texto {
    padding-top: 20px;
    padding-bottom: 50px;
    margin-bottom: 50px;
}