body{
    margin: 0%;
    padding: 0%;
    background-color: #d2d2d288;
}

.header {
    position: relative;
    width: 100%;
    height: 250px; /* Ajuste a altura conforme necessário */
    background-image: url('./imagens-contato/foto\ header\ \(1\).png'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.34);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajuste a opacidade conforme necessário */
}

.header h1 {
    position: relative;
    z-index: 1;
    font-size: 3em;
    text-align: center;
    margin: 0;
}

/* Estilo da seção de informações de contato */
.contact-info {
    padding: 50px;
    text-align: center;
    font-size: 20px;
    color: rgb(29, 29, 29);
}

.contact-info h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contact-info p {
    margin: 5px 0;
}




strong{
    color: black;
}


.WhatsApp img{
    width: 10rem;
    height: auto;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
.WhatsApp{
    text-align: center;  
    
  }
.WhatsApp img:hover{
    transform: scale(1.05);
    }

    @media (max-width: 1020px){
        .header h1{
            font-size: 2rem;
        }
        .header{
            padding: 0;
            height: 10rem;
        }
        

        
    }