/* HERO */
.tp-hero {
    background: linear-gradient(135deg, #122a63, #1b4fd6);
    padding: 60px 0;
    text-align: center;
}

.tp-title {
    font-weight: 700;
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: .5rem;
}

.tp-lead {
    font-size: 1.1rem;
    opacity: .9;
}

/* GRID */
.tp-grid {
    padding: 50px 0;
}

.tp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f7f8fc;
    border-radius: 14px;
    padding: 28px 18px;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    color: #222;
}

.tp-card i {
    font-size: 50px;
    color: #1b4fd6;
    /* dorado */
    margin-bottom: 12px;
}

.tp-card h5 {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.tp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}