* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #e9c19e;
    background-color: black;

}
/*cabeçalho**/
header {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 40%;
    display: flex;
    justify-content: center;
    margin: -91px auto;
}

nav ul {
    list-style: none;
    padding: 10px;
    margin-bottom: 30px;
}

nav ul li {
    display: inline;
    padding: 10px;
}

nav ul li a {
    font-size: 20px;
    text-decoration: none;
    height: auto;
}

nav ul li a:hover {
    background-color: #313131;
    border-radius: 10px;
}

.texto1{
    
    font-size: 25px;
    margin: 15px 35px;
    text-align: center;
}

.imagens {
text-align: center;

}

.imagens img{
    width: 360px;
    border-radius: 5px;
    justify-content: space-between;
    margin: 10px 15px;
    max-width: 400px;
    height: 230px;
}


.floating-btn {
    padding: 5px;
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1000;
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    fill: #fff;
}

.instagram-btn {
    margin-bottom: 70px;
}

.instagram-btn svg {
    fill: #fff;
}

/*rodape*/
.linha {
    margin-top: 100px;
    border-width: 0;
    border-top-width: 0;
    height: 1px;
    background-color: #e9c19e;
}


.rodape{
    height: 100px;
    margin-top: 150px;
    font-size: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h4{
    font-size: 25px; 
    margin-bottom: 30px;
}

.a1{
    font-size: 20px;
    color: #e9c19e;
    text-decoration: none;
    gap: 10px;
   
}

.a1:hover{
    background-color: #313131;
    border-radius: 2px;
}
.copy {
    font-size: 15px;
    margin-top: 40px;

}


@media only screen and (max-width: 768px) {

    .logo img {
        text-align: center;
        justify-content: center;
        max-width: 85%;
    }
    header {
        margin-bottom: 50px;
    }
    h1 {
        font-size: 30px;
    }
    nav ul li a {
        font-size: 16px;
    }

   .h1{font-size: 30px;}

    .subtitulo2{
        margin-bottom: 30px;
        margin-top: 30px;
        font-size: 25px;
        margin: 0 10px;
    }

    .rodape {
        width: 85%;
        padding: 10%;
        margin-top: 50px; /* Reduz o espaço superior do rodapé para dispositivos menores */
        margin-bottom: 50px; /* Reduz o espaço inferior do rodapé para dispositivos menores */
    }
    .a1{
        font-size: 18px;
    }
    .numero{
        font-size: 15px;
        display: flex;
        justify-content: center;
        text-align: center;
    }
}


