.page-header {
    position: relative;
    height: 50vh;
    min-height: 300px;
    background-image: url('../img/plano-manutencao/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));
}

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

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

.feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    text-align: center;
}

.step-card {
    position: relative;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background-color: white;
    transition: all 0.3s ease;
}

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

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

.report-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.report-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--cs-orange);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.viga
{
    transform: translateY(0px);
    transition: all 0.3s ease;
}

.viga:hover
{
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.queda
{
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.queda:hover
{
    transform: translateY(0px);
    transition: all 0.3s ease;
}

.voce-sabia
{
    transform: translateY(15px);
}