/* Atendimento Section */
.about {
    padding: 120px 0 80px;
    background: white;
    position: relative;
    z-index: 0;
}

.about::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-image: url('/image/Ativo.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0D2450;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #475569;
    text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {

    .about::after {
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-position: center center;
        background-image: url('/image/Ativo.webp');
        opacity: 0.1;
    }
}