@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
}

body {
    display: flex;
    flex-direction: column;

}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    padding: 20px;
	align-items: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    
}

header img {
    max-height: 50px;
}

.logo {
    flex: 1;
}

.menu-toggle {
    display: none; /* Oculta o botão de hambúrguer em telas grandes */
}

nav {
    display: flex;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
}

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    object-fit: cover;
    border: 2px solid #333;
}

.degrade {
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #f1f1f1 100%);
    position: absolute;
    width: 100%;
    height: 30px;
    bottom: 0;
    left: 0;
    z-index: 1;
}

h1 {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-bottom: 20px;
}

.services, .contact {
    margin-top: 20px;
	text-align: center;
}

.services h2, .contact h2 {
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    width: 100%;
    flex-shrink: 0; /* Garante que o rodapé não encolha */
}

footer .redes {
    margin: 20px 0;
}

footer .redes a img {
    width: 30px;
    margin: 0 10px;
}

footer p {
    margin-top: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #555;
}

@media screen and (max-width: 768px) {
    .hero img {
        max-height: 200px;
    }

    .degrade {
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #f1f1f1 100%);
        position: absolute;
        width: 100%;
        height: 30px;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        margin-right: 20px;
    }

    nav {
        display: none;
        width: 100%;
        text-align: center;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Ajuste conforme necessário para o posicionamento */
        left: 0;
        background-color: #333;
        z-index: 999; /* Certifique-se de que o menu esteja acima de outros conteúdos */
    }

    nav a {
        display: block;
        margin: 10px 0;
    }
}

nav.show {
    display: flex;
}
