/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--bg-light, #f9f9f9);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-card, #fff);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.custom {
    border: 2px solid var(--accent-color, #FF375F);
    position: relative;
}

.pricing-card.custom::before {
    content: 'Recomendado';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color, #FF375F);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card .card-header {
    text-align: center;
    margin-bottom: 2rem;
}


.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: var(--text-body, #666);
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-heading, #111);
}

.pricing-card p {
    color: var(--text-body, #666);
    font-size: 0.95rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-heading, #111);
    text-align: center;
    margin-bottom: 2rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.card-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    color: var(--text-body, #555);
}

.card-features li::before {
    content: '✓';
    color: var(--accent-color, #FF375F);
    font-weight: bold;
    margin-right: 10px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: auto;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card.express .btn {
    background-color: #fff;
    color: var(--text-heading, #111);
    border: 1px solid #ddd;
}

.pricing-card.express .btn:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
    transform: translateY(-2px);
}

.pricing-card.custom .btn {
    background-color: var(--accent-color, #FF375F);
    color: white;
    border: 1px solid var(--accent-color, #FF375F);
    box-shadow: 0 4px 10px rgba(255, 55, 95, 0.3);
}

.pricing-card.custom .btn:hover {
    background-color: #e02e50;
    border-color: #e02e50;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 55, 95, 0.4);
}