.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--standard-border-radius);
    background: var(--wp--preset--color--secondary-30);
    box-shadow: 0px 8px 28px 0px #E1DCD4;
    align-self: stretch;
}
.inner-card {
    background: var(--wp--preset--color--secondary-30);
    border-radius: var(--standard-border-radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}
.card.card-pricing {
    background: transparent;
    width: 365px;
    display: flex;
    flex-direction: column;
}
.card.card-pricing .inner-card{
    padding: 28px 24px;
    background: var(--wp--preset--color--secondary-30);
    border-radius: var(--standard-border-radius);
    border: 8px solid var(--wp--preset--color--neutral-50);
    box-sizing: border-box;
    flex-grow: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 100%;
}
.card.card-pricing.is-destacada .inner-card::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -9px;
    right: -9px;
    bottom: -12px;
    border-radius: calc(var(--standard-border-radius) + 3px);
    border: 3px solid var(--wp--preset--color--primary-100);
    z-index: -1;
}
.card-subtitulo{
    color:var(--wp--preset--color--primary-100);
    font-weight: var(--wp--preset--font-weight-500);
    margin: 16px 0 0 0;
}
.card-encabezado {
    margin: 0;
}
.card .wp-block-separator {
    border: none;
    border-top: 1px solid #DAD4C3;
    margin: 24px 0;
}
.card-lista{
    padding-inline-start: 25px;
    margin: 0;
}
.card .has-body-font-size {
    font-size: var(--wp--preset--font-size--body) !important;
    line-height: var(--wp--preset--line-height-body) !important;
    margin-bottom: 0;
}
.card-abajo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
body .price-texto.has-caption-font-size {
    margin-bottom: 4px;
    font-weight: var(--wp--preset--font-weight-500);
}
.card-price {
    display: flex;
    gap: 12px;
    align-items: end;
}
.card h3{
    margin-bottom: 16px;
}
/*Testimonios*/
.card.card-testimonio {
    background: var(--wp--preset--color--secondary-30);
    width: 375px;
    padding: 16px;
}
.card-testimonio img {
    width: 82px;
    height: 82px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    object-fit: cover;
}
.card-nombre {
    font-weight: var(--wp--preset--font-weight-500);
    margin-bottom: 3px !important;
}
.card-descripcion {
    margin-top: 24px !important;
}
.card-testimonio .card-imagen {
    padding: 16px;
    width: fit-content;
    display: flex;
}
.card-testimonio .card-info {
    padding: 0 16px 24px 16px;
}
@media (max-width: 919px) {
    .faq-panel{
        padding: 1rem;
    }
    .card .wp-block-separator {
        margin: 16px 0;
    }
    .card-subtitulo{
        margin: 12px 0 0 0;
    }
    .card.card-pricing, .card.card-testimonio {
        width: 100%;
    }
}