#servicios-container {
    display: flex;
    gap: 20px;
    padding: 50px;
    padding-top: 0px;
    justify-content: center;
}

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

.precio {
    font-weight: bold;
    font-size: 2em;
    color: #e8c350;
    width: 125px;
    text-align: center;
}

.descuento {
    font-weight: bold;
    color: #e85050;
    font-size: 1.2em;
}

.precio-descontado {
    display: flex;
    align-items: center;
    width: 160px;
}

.precio-footer {
    display: none;
    font-weight: bold;
    font-size: 2em;
    color: #e8c350;
    text-align: center;
}

.descuento-footer {
    font-weight: bold;
    color: #e85050;
    font-size: 1.2em;
    display: none;
}

.servicio-tag {
    display: flex;
    flex-direction: column;
    width: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 6px;
    padding-top: 8px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 15px;
    box-sizing: border-box;
    background-color: whitesmoke;
}

.servicio-title {
    font-size: 1.2em;
}
.servicio-card-footer {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    align-items: center;
}

.servicio-description {
    text-align: justify;
    margin: auto;
}

@media only screen and (max-width: 1100px) {
    #servicios-container {
        flex-direction: column;
    }
    .servicio-tag {
        width: 100%!important;
    }
}

@media only screen and (max-width: 600px) {
    .precio, .descuento {
        display: none;
    }

    .precio-footer, .descuento-footer {
        display: block;
    }

}