.div-abc-info{
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(2, 5, 6, 0.2);
    padding: 24px;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.div-abc-text h4{
    font-weight: 800;
}

.div-abc-text p{
    text-align: justify;
}

.div-abc-text{
    width: 50%;
}

/* .div-abc-image{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.div-abc-image img{
    width: 50%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
} */

.div-abc-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    width: 50%;
    justify-items: center;
    align-items: center;
}

.div-abc-image img {
    width: 340px;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(2,5,6,0.07);
}

.div-abc-image img:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.div-abc-image img:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
}


.title-abc{
    font-weight: 900;
    margin: 0px 0 18px 0;
}

.hero-abc {
    align-items: center;
    gap: 32px;
    /* flex-wrap: wrap; */
}

.abc-buttons {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.abc-metricas-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    margin: auto;
}

.abc-metrica-card {
    background: #dddfe1;
    border-radius: 8px;
    padding: 18px 24px;
    box-shadow: 0 2px 8px rgba(2, 5, 6, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.abc-metrica-card h2 {
    margin: 0;
    font-weight: 900;
    color: #007bff;
}

.abc-metrica-card span {
    font-size: 1rem;
    color: #333;
}

.abc-diferenciais-title {
    font-weight: 900;
    margin: 32px 0 18px 0;
    text-align: center;
}

.abc-diferenciais-list {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.abc-diferencial-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(2, 5, 6, 0.12);
    padding: 24px 18px;
    width: 240px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.abc-icon {
    font-size: 2.2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.abc-maps iframe {
    width: 100%;
    min-height: 200px;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

/* Responsividade */
@media (max-width: 1200px) {
    
    .div-abc-image img {
        width: 100%;
        height: 190px;
    }
}


@media (max-width: 900px) {
    .div-abc-info {
        flex-direction: column;
        align-items: center;
    }
    .div-abc-text, .div-abc-image {
        width: 100%;
    }
    .abc-metricas-list {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
        gap: 12px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .abc-diferenciais-list {
        flex-direction: column;
        gap: 12px;
    }
    .abc-diferencial-card {
        width: 100%;
        min-width: unset;
    }

}

/* @media (max-width: 450px) {
    
    .div-abc-image img {
        width: 100%;
    }
    
} */