.tarjetasMore {
    --colorMarca1: #fde9a4;
    --colorMarca2: #8bbc3c;

    width: 1020px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    padding-left: 20px;
    padding-right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    /* Las tarjetas crecen de manera individual con align */
    align-items: start;
}

@media (max-width: 992px) {
    .tarjetasMore {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tarjetasMore {
        grid-template-columns: repeat(1, 1fr);
    }
}

.box {
    width: 100%;
    padding: 20px 20px 30px;
    box-sizing: border-box;
    display: inline-block;
    background: var(--colorMarca1);
    background-image: url(../img/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box .icon-cont {
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    /* margin: 20px auto; */
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;

    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5; */
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5), 0 0 0 0px rgba(3, 108, 129, 0.5);
}

.box .icon-cont img {
    color: #fff;
    /* opacity: 0.8; */
    width: 70%;
}

.box.box.selected .icon-cont img {
    /* opacity: 0.4; */
}

.box:hover .icon-cont {
    animation: shady 4s linear infinite;
}

@keyframes shady {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5), 0 0 0 0px rgba(3, 108, 129, 0.5);
    }

    20% {
        box-shadow: 0 0 0 100px rgba(255, 255, 255, 0), 0 0 0 0px rgba(3, 108, 129, 0);
    }

    20.1% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5), 0 0 0 0px rgba(3, 108, 129, 0.5);
    }

    50% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5), 0 0 0 0px rgba(3, 108, 129, 0.5);
    }

    70% {
        box-shadow: 0 0 0 100px rgba(255, 255, 255, 0), 0 0 0 0px rgba(3, 108, 129, 0);
    }

    70.1% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5), 0 0 0 0px rgba(3, 108, 129, 0.5);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5), 0 0 0 0px rgba(3, 108, 129, 0.5);
    }
}

.box h3 {
    color: #008044;
    font-weight: 300;
    font-size: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    margin: 10px auto;
    /* position: absolute;
    top: 120px;
    left: 0%; */
    width: 100%;
    z-index: 4;
}

.box div {
    color: #fff;
    font-size: 20px;
}

.box .hidden {
    opacity: 0;
    display: none;
}

.box a.expand {
    width: 35px;
    height: 35px;
    background: #008044;
    font-weight: 600;
    color: var(--colorMarca1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 25px;
    cursor: pointer;
    border-radius: 50%;

    /* position: absolute;
    left: 0;
    right: 0;
    bottom: 15px; */
}

.box a.expand span.minus {
    opacity: 0;
    display: none;
}

.box a.expand span.plus {
    opacity: 1;
    display: flex;
}

.box.selected a.expand {
    display: block;
    position: absolute;
    right: -30px;
    bottom: -20px;
    margin-right: 0;
    width: 80px;
    height: 50px;
    background: #008044;
    color: var(--colorMarca1);
    transform: rotate(-45deg);
    border-radius: 0;
}

.box.selected a.expand span {
    display: block;
    position: absolute;
    top: -4px;
    left: 38px;
    transform: rotate(45deg);
    font-size: 24px;
}

.box.selected a.expand span.minus {
    opacity: 1;
    display: flex;
}

.box.selected a.expand span.plus {
    opacity: 0;
    display: none;
}

.box.selected .icon-cont {
    transform: scale(1.5, 1.5);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -5px;
    right: 180px;
}

.box.selected:hover .icon-cont {
    animation: none;
}

.box.selected h3 {
    padding-bottom: 10px;
    border-bottom: 1px solid #008044;
    margin: 0 0 10px;
    width: 100%;
    /* top: 15px;
    left: 0; */
}

.box.selected .hidden {
    color: #333333;
    opacity: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 23px;
}