/* Como no se si estos paneles serán permanentes, los dejo en un css aparte para que sean sencillos de eliminar */

/* OFERTA RESERVA COWORKING */
.booking-coworking {
    padding: 30px 15px;
    text-align: center;
    color: #7d7f82;
}

.booking-coworking h3 {
    font-weight: bolder;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 35px;
}

.booking-coworking span {
    font-weight: bolder;
    font-size: 18px;
    line-height: 25px;
}

.booking-coworking.gold {
    background-color: #508bb6;
    color: #FFF;
}

.booking-coworking.gold h3 {
    font-size: 26px;
}

.mx-50 {
    margin: 50px 0;
}

/* ESPACIO COWORKING */
.espacio-coworking {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
}

.espacio-coworking .tarjeta,
.espacio-coworking .tarjeta-imagen {
    width: 100%;
    max-width: 390px;
    margin: 1.7vw;
}

.espacio-coworking .tarjeta {
    background-color: #FFF;
    min-height: 336px;
    padding: 35px 15px;
}

.big-size {
    min-height: 522px !important;
}

.espacio-coworking .tarjeta-imagen img {
    display: block;
    width: 100%;
    max-height: 336px;
    object-fit: cover !important;
    object-position: center;
}

.espacio-coworking .tarjeta .subtitle {
    margin-bottom: 10px;
    color: #7d7f82;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: bolder;
}

.espacio-coworking .tarjeta h1 {
    font-size: 35px;
    margin: 26px 0 15px;
}

.espacio-coworking .tarjeta .text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.espacio-coworking .tarjeta .text-content .text-element {
    margin-bottom: 10px;
}

.espacio-coworking .tarjeta .text-content .text-element span {
    font-size: 14px;
    font-weight: bolder;
    color: #7d7f82;
    display: block;
}

.espacio-coworking .tarjeta .text-content .text-element span:nth-child(2) {
    margin-top: 2px;
}

span.versalita {
    font-size: 11px !important;
}

.espacio-coworking ~ .aviso {
    color: #508bb6;
    font-weight: bolder;
    padding: 20px 20px 0;
}

@media screen and (max-width: 1319px) {
    .espacio-coworking .tarjeta-imagen {
        order: -1;
    }
}

@media screen and (min-width: 851px) and (max-width: 1319px) {
    .espacio-coworking .tarjeta-imagen {
        max-width: 100%;
    }

    .espacio-coworking .tarjeta-imagen img {
        max-width: fit-content;
        max-height: unset;
        margin: auto;
    }
}