/* Estilos para el Paso de Presupuesto (Good, Better, Best) */
.cg-budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
    align-items: stretch;
}

.cg-budget-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: center; /* ¡CAMBIADO! Todo el texto base ahora se alinea al centro */
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cg-budget-card:hover {
    border-color: #0054a6;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.cg-budget-card.selected {
    border-color: #16a34a;
    background-color: #f0fdf4;
}

.cg-budget-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f8fafc;
}

.cg-budget-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cg-budget-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    text-align: center; /* Asegura el centrado directo del título */
}

.cg-budget-price {
    font-size: 16px;
    font-weight: 600;
    color: #0054a6;
    margin-bottom: 16px;
    text-align: center; /* Asegura el centrado directo del precio */
}

/* AJUSTADO: Mantiene la lista centrada en la tarjeta pero los renglones ordenados a la izquierda */
.cg-budget-features {
    list-style: none;
    padding: 0;
    margin: 0 auto; /* Centra el bloque de la lista dentro de la tarjeta */
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    flex-grow: 1;
    text-align: left; /* Mantiene el texto alineado al check uniformemente */
    display: inline-block; /* Se ajusta solo al ancho de su contenido para poder centrarse */
    max-width: 220px; /* Evita que los textos se dispersen en pantallas muy anchas */
}

.cg-budget-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.cg-budget-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}