#hero-produto {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    margin-top: 54.25px;
}
    #hero-produto > span {
        background-image: url("/img/produtos/bg.svg");
        background-size: cover;
        background-position: center;
        position: absolute;
        right: -1px;
        top: 0;
        width: 50vw;
        height: 100%;
        z-index: -1;
        border-radius: 10px 0 0 10px;
    }


@media screen and (max-width: 992px) {
    #hero-produto > span {
        top: auto;
        bottom: 0;
        height: 250px;
        width: calc(100vw + 2px);
        border-radius: 0;
    }
}

.produto-tag {
    display: inline-block;
    background-color: var(--af-light-blue);
    color: var(--af-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hero--vistoria h1 {
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero--vistoria .lead-text {
    font-size: 1.25rem;
    color: var(--af-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-color);
    max-width: 600px;
}

.hero-img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}


/* --- CHALLENGES SECTION --- */
.section-challenges {
    background-color: var(--af-primary);
}

.challenge-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    transition: transform 0.2s ease;
}

.challenge-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.challenge-card i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.challenge-card p {
    margin: 0;
    font-weight: 600;
    color: var(--af-secondary);
    line-height: 1.4;
    width:100%;
}


/* --- FEATURES --- */
.feature-list-check {
    list-style: none;
    padding: 0;
}

.feature-list-check > li {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

    .feature-list-check > li:last-child{
        margin-bottom:0;
    }

    .feature-list-check .icon-box {
        width: 60px;
        height: 60px;
        background-color: var(--af-light-blue);
        color: var(--af-primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

.feature-list-check h4 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--af-secondary);
    margin-bottom: 10px;
}

.feature-list-check ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.feature-list-check ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.feature-list-check ul li:before {
    content: "•";
    color: var(--af-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}


/* --- WHY US (Cards) --- */
.section-why {
    border-top: 1px solid rgba(0,0,0,0.05);
}

.why-card-prod {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-card-prod:hover {
    box-shadow: 0 10px 40px rgba(42, 83, 194, 0.1);
    transform: translateY(-5px);
    border-color: rgba(42, 83, 194, 0.2);
}

.why-card-prod i {
    font-size: 2.5rem;
    color: var(--af-primary);
    margin-bottom: 20px;
    display: block;
}

.why-card-prod h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--af-secondary);
}

.why-card-prod p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}


/* --- INTEGRATIONS --- */
.integration-badge {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 8px;
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    display: inline-block;
}


/* --- CONTACT OVERRIDES (If needed specific) --- */
#contato .container {
    max-width: 650px;
}
