
    .pricing-card {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    flex-direction: column;   /* flex en vertical */
    justify-content: space-between; /* espacio entre contenido y botón */
}

.pricing-card strong, .pricing-card .fw-bold {
    color: #ef382b !important;
}

.btn-plan {
    margin-top: auto;   /* empuja el botón al fondo */
    padding: 10px 20px;
    background: #ef382b;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.btn-plan:hover {
    background: #d62e24;
}
.pricing-card{ text-align:center; padding:20px; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,.08); background:#fff; height:100%; }
.pricing-card strong, .pricing-card .fw-bold{ color:#ef382b!important; }
.btn-plan{ display:inline-block; margin-top:15px; padding:10px 20px; background:#ef382b; color:#fff; border-radius:8px; text-decoration:none; font-weight:700; }
.btn-plan:hover{ background:#d62e24; }

