.valores-block {
    padding: 0;
}

.valores-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Gotham';
}

.valores-list {
    list-style: none;
    padding: 0;
}

.valores-item {
    margin-bottom: 10px;
}

.toggle-description{
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    font-family: 'Gotham';
    font-weight: 100;
    cursor: pointer;
    display: block;
    text-align: left;
    width: 100%;
    transition: all .2s ease;
    position: relative;
}

.toggle-description:after{
    content: '';
    display: block;
    height: 30px;
    width: 30px;
    border: solid 4px rgba(255,255,255,0);
    background-image: url('img/vector.svg');
    background-size: contain;
    border-radius: 5px;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(50%);
    transition: all .2s ease;
}


.toggle-description:hover:after{
    content: '';
    display: block;
    height: 30px;
    width: 30px;
    background-color: #FFD000;
    border: 4px solid #FFD000;
    background-image: url('img/vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(50%);
    transition: all .2s ease;
}

.active .toggle-description:after{
    background-color: #002FFF;
    border: 4px solid #002FFF;
    transform: translateY(50%) rotate(-90deg);
    filter: invert(1); /* Inverts white to black */
}

.active .toggle-description, .toggle-description:hover{
    color: var(--wp--preset--color--neutral);
}

.valores-description {
    display: none;
}

.valores-description > div{
    padding: 1em;
}

.wp-block-latest-posts__featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

