.page-header {
    position: relative;
    height: 50vh;
    min-height: 300px;
    background-image: url('../img/inspecao-sistemas/hero.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
}

.process-step .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.benefit-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: var(--cs-orange); /* Dourado claro para fundo de ícones */
    color: white; /* Dourado escuro para ícones */
    font-size: 1.8rem;
    margin: 0 auto 20px;
    text-align: center;
}