/* Serviços */
.servicos {
    padding: 70px 4%;
    text-align: center;
}

.servicos .titulo {
    font-size: 2.5em;
    margin-bottom: 50px;
    margin-right: 20px;

}

.servicos .titulo span {
    color: #FF2500;
}

.servicos-conteudo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.servico {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 23%; /* Adjust the width to fit 4 items per row */
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.servico img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

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

.servico:hover img {
    transform: scale(1.05);
}

.servico h3 {
    font-size: 1.5em;
    margin: 15px;
    color: #333;
}

.servico p {
    font-size: 1em;
    margin: 0 15px 15px;
    color: #666;
}
