.container-geral {
    margin: 0 auto;
    width: 90%;
}

.title {
    background-color: #051791;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}

.title h3 {
    color: #fff;
    text-align: center;
    font-size: 1.5em;
}

.content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    min-height: 35vh;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.services-inner {
    border: 2px solid #00a2ff;
    border-radius: 10px;
    text-align: center;
    height: 230px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.services-inner:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}

.our-services-text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-services-text img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.our-services-text h4 {
    color: #222222;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.container-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .container-geral {
        width: 100%;
    }

    .content {
        grid-template-columns: repeat(1, 1fr);
    }

}