/* css/page-soporte.css */
/* "PASO FIRME" v3.3: Vertical IT & Pricing */

/* --- HERO --- */
.hero-it {
    background: linear-gradient(135deg, #f8f9fc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    border-radius: 0 0 50px 50px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.badge-gurus {
    background: white; color: #0f172a;
    padding: 0.6rem 1.2rem; border-radius: 50px;
    font-weight: 700; font-size: 0.85rem;
    margin: 0 5px 10px 0; display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

/* --- PRICING TABLES --- */
.pricing-card {
    background: white; border: 1px solid #e2e8f0;
    border-radius: 16px; padding: 2rem;
    transition: all 0.3s ease; height: 100%;
    position: relative; display: flex; flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}
.pricing-card.popular {
    border: 2px solid #3b82f6;
    box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.15);
}
.pricing-badge {
    position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%); background: #3b82f6;
    color: white; padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: bold; text-transform: uppercase;
}
.price-tag {
    font-size: 2.5rem; font-weight: 800; color: #0f172a; margin: 1rem 0;
}
.price-period {
    font-size: 1rem; color: #64748b; font-weight: normal;
}
.features-list {
    list-style: none; padding: 0; margin: 1.5rem 0;
    text-align: left; flex-grow: 1;
}
.features-list li {
    margin-bottom: 0.8rem; color: #475569;
    font-size: 0.95rem; display: flex; align-items: flex-start;
}
.features-list li i {
    color: #22c55e; margin-right: 10px; margin-top: 4px; flex-shrink: 0;
}
.features-list li.disabled {
    color: #cbd5e1; text-decoration: line-through;
}
.features-list li.disabled i { color: #cbd5e1; }

/* --- CALCULATOR BOX --- */
.calculator-section {
    background-color: #0f172a; border-radius: 24px;
    color: white; overflow: hidden;
}
.calculator-result {
    background: #ecfdf5; border: 1px solid #6ee7b7;
    border-radius: 12px; padding: 1.5rem;
    text-align: center; color: #064e3b;
}

/* --- PAIN POINTS --- */
.card-pain {
    background: #fff; border: 1px solid #f1f5f9;
    transition: all 0.3s ease; height: 100%; border-radius: 16px;
}
.card-pain:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}