body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;

    background-image: url("foto-fundo.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* fundo escuro */

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: -1;
}

/* HEADER */

header {
    background: #111;
    padding: 15px 40px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 80px;
}

.titulo {
    flex: 1;
    text-align: center;
    margin: 0;
}

/* MENU */

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #c9a45c;
}

/* HERO */

.hero {
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* BOTÃO */

.botao {
    background: #c9a45c;
    color: black;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.botao:hover {
    background: #e0b96c;
}

/* SERVIÇOS */

#servicos {
    padding: 60px 20px;
    text-align: center;
}

.servicos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #f4f4f4;
    color: black;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.preco {
    font-size: 20px;
    font-weight: bold;
}

/* GALERIA */

#galeria {
    padding: 60px 20px;
    text-align: center;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.galeria img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.galeria img:hover {
    transform: scale(1.08);
}

/* CONTATO */

#contato {
    padding: 60px 20px;
    text-align: center;
}

/* TABELA */

.horarios {
    margin: 20px auto;
    background: rgba(0, 0, 0, 0.7);
    border-collapse: collapse;
}

.horarios th {
    background: #c9a45c;
    color: black;
    padding: 10px;
}

.horarios td {
    padding: 10px;
    border-bottom: 1px solid #444;
}

/* FOOTER */

footer {
    background: #111;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* WHATSAPP */

.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
}

/* BOTÃO MENU MOBILE */

.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* ANIMAÇÃO */

.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */

@media(max-width:768px) {

    body {
        background-size: cover;
        background-position: center;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    nav.ativo {
        display: block;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .titulo {
        width: 100%;
        margin-top: 10px;
        font-size: 20px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .card {
        width: 90%;
    }

}