/* TITULO */
.plan-title {
    font-size: 2.2rem;
    color: #0d6efd;
}

/* CONECTOR */
.connector-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

/* CARDS */
.detail-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-4px);
}

/* TITULOS */
.detail-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* LISTAS */
.detail-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.detail-card ul li {
    margin-bottom: 6px;
    color: #555;
}

/* ICONOS */
.detail-card i {
    color: #0d6efd;
}

/* CARD DESTACADA */
.highlight-card {
    border: 2px solid #ffc107;
    background: #fffdf5;
}
