* {
    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: 100px;
}

.logo img {
    max-width: 40%;
    display: flex;
    justify-content: center;
    margin: -91px auto;
}

nav ul {
    list-style: none;
    padding: 10px;
}

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;
}



.titulo {
    text-align: center;
    font-size: 60px;
    text-decoration: underline;
}

.card-container {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}

.card {
    margin: 0 auto;
    ;
    background-color: #000000;
    color: #e9c19e;
    /* Cor do texto */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra */
    overflow: hidden;
    width: 300px;
    /* Largura dos cards (33.33% da largura do contêiner menos o espaço entre os cards) */
    max-width: 500px;
    /* Largura máxima dos cards */
    height: 300px;
    /* Altura fixa dos cards */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    /* Transição suave ao passar o mouse */
    padding: 20px;
    /* Espaçamento interno */
}




.card img {
    border-radius: 20px;
    /* Borda arredondada para a imagem */
    width: 300px;
    height: 220px;
    object-fit: cover;
}

.card-content {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.705);
    transition: transform 0.3s ease;
    padding: 5px;
}


.card-content h2 {
    margin-bottom: 10px;
    transition: transform 0.3s ease;

}

.card-content p {
    padding: 2px;
    margin-top: 10px;
    display: none;
}

.card:hover img {
    display: block;
}

.card:hover .card-content {
    transform: translateY(-10%);
    position: relative;
}

.card:hover .card-content p {
    display: block;

}

.card:hover .card-content h2 {
    transform: translateY(-0%);
}

.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 {
    border-width: 0;
    border-top-width: 0;
    height: 1px;
    background-color: #e9c19e;
    margin-bottom: -100px;
}

.rodape {

    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}

h4 {

    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.e1 {
    padding-right: 5px;
}

.contato1 {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    padding: 10px;

}

.numero {

    padding-left: 10px;
}

.contato2 {
    display: flex;
    font-size: 20px;

}

.a1 {
    text-decoration: none;
}

.copy {
    margin-top: 40px;

}

@media only screen and (max-width: 768px) {


    .logo img {
        text-align: center;
        max-width: 85%;
        margin: 0 auto;
        /* Centralizar a logo na tela */
    }

    header {
        margin-bottom: 50px;
    }

    h1 {
        font-size: 30px;
    }

    nav ul li a {
        font-size: 16px;
    }

}

@media only screen and (min-width: 1440px ) {
    .card-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    }
}
