.apresentation {
    position: relative;
    height: 40vh;
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.apresentation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url('images/cobertura5.jpg'); /* Troque pelo caminho da sua imagem */
    height: 40vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(73%); /* Reduz o brilho */
    z-index: -1; /* Mantém a imagem no fundo */
    
}

.content-apresentation {
    position: relative; /* Garante que o texto fique acima da imagem */
    z-index: 1;
    text-align: center;
}

.content-apresentation h1 {
    font-size: 50px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.22);
}

.content-apresentation p {
    font-size: 20px;
    color: rgb(42, 145, 249);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.converse-conosco {
    height: 70px;
    background-color: #7db4eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0
}

.zero-margin {
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: start  ;
    gap: 3%;
    margin: 80px auto;
}

.menu {
    width: 200px;
}

.menu-item {
    display: block;
    width: 100%;
    padding: 14px;
    margin: 7px 0;
    border: none;
    cursor: pointer;
    color: black;
    background: #f0f0f0;
    text-align: left;
    border-radius: 3px;
}

.menu-item:hover {
    color: #5c90ff;
}

.menu-item.active {
    background: #7db4eb;
    color: white;
}

.content {
    flex: 1;
    padding: 0px 20px 20px 20px;
}

.gallery-servicos {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-servicos img {
    width: 250px;
    height: 200px;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

@media (max-width: 393px) {
    .gallery-servicos img {
        width: 200px;
        height: 150px;
    }
}

.gallery-servicos img:hover {
    transform: scale(1.05);

}

#title {
    color: rgb(101, 101, 101);
    font-weight: 400;
}

#description {
    color: rgb(127, 127, 127);
    font-size: 15px;
    text-align: left;
}



@media (max-width: 500px) {
    .container {
        gap: 5px;
    }
    .content {
        padding-left: 5px;
        padding-right: 0px;
    }
    .content-apresentation p {
        font-size: 15px;
    }
    .apresentation::before {
        background-attachment: scroll;
    }
}
