body {
    font-family: 'Source Sans Pro', sans-serif;
    padding-top: 70px;
}

.hero {
    height: 45vh;
    background: linear-gradient(135deg, #06daf6 0%, #00366F 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #007bff;
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 10px;
}


.card-accent {
    border-top: 5px solid whitesmoke;
    background-color: whitesmoke;
}
.card-accent:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem whitesmoke;
}

.section-soft {
    background-color: #f8f9fa;
}

.section-blue-soft {
    background-color: #f0f6ff;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-orange {
    background-color: #fd7e14;
    /* naranja Bootstrap */
    color: #ffffff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    /* efecto CTA */
    border: none;
    transition: all 0.2s ease;
}

.btn-orange:hover {
    background-color: #e96b0c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 126, 20, 0.4);
}