header {
    
}
.social {
    background: #1F1F2E;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2%;
}
.social .rede {
    display: flex;
}
.social .rede a {
    padding: 5px;
    color: #1F1F2E;
    color: #fff;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}
.social .rede a:hover {
    background: #ef7a1f;
    border-radius: 15px;

}


.social a  img{
    width: 30px;
}
.navegar_cabecalho {
    margin: 30px 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.navegar_cabecalho h1 {
    padding-left: 50px;
}
.navegar_cabecalho h1 .logo_name_1 {
    color: #1F1F2E;
    font-family: 'Arial', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
                 /* -2px -2px 4px rgba(255, 165, 0, 0.5); */
}

.navegar_cabecalho h1 .logo_name_2 {
    color: #ef7a1f;
    font-family: 'Arial', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
                 /* -2px -2px 4px rgba(255, 165, 0, 0.5); */
}

/* .navegar_cabecalho h1 .logo_name_1 {
    color: #1F1F2E;
    
}
.navegar_cabecalho h1 .logo_name_2 {
    color: #ef7a1f;
} */
.navegar_cabecalho .button_menu{
    max-width: 75%;
    min-width: 60%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background: #fff;
    border-radius: 150px 0 0 150px;
    box-shadow: 0 0 15px #0000003b;
}
.navegar_cabecalho .button_menu a {
    padding: 5px 25px;
    color: #1F1F2E;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.navegar_cabecalho .button_menu a:hover {
    background: #ef7a1f;
    border-radius: 50px; /* Bordas mais suaves ao invés de 150px */
    transform: scale(1.1); /* Aumenta ligeiramente o tamanho ao passar o mouse */
    color: white; /* Muda a cor do texto para melhorar a visibilidade */
}


