* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    background: linear-gradient(
        180deg,
        #FFFFFF,
        #E4E7EE,
        #6E7BA7,
        #2F4485,
        #253568,
        #020205
    );

    color: #FFFFFF;
    min-height: 100vh;
}

/* HEADER */
.topo {
    display: flex;
    justify-content: center;
    padding: 30px;
}

/* LOGO MAIOR */
.logo {
    width: 850px;
    max-width: 90%; /* evita quebrar no celular */
    transition: 0.3s;
}

.logo:hover {
    transform: scale(1.03);
}

/* GALERIA */
.galeria {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    flex-wrap: wrap;
}

/* IMAGENS SEM FUNDO */
.imagem {
    width: 470px;
    height: auto;
    object-fit: contain;

    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
}

.imagem.ativo {
    opacity: 1;
    transform: translateY(0);
}

.imagem:hover {
    transform: scale(1.05);
}

/* BOTÃO CONTATO */
.contato-section {
    display: flex;
    justify-content: center;
    padding: 60px;
}

.botao-contato {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: bold;

    border: 2px solid #FFFFFF;
    padding: 15px 40px;
    border-radius: 10px;

    transition: 0.3s;
}

.botao-contato:hover {
    background: #2F4485;
    border-color: #2F4485;
}

/* CONTATO */
.contato-container {
    text-align: center;
    padding: 70px;
    margin: 60px auto;
    max-width: 650px;

    background: rgba(0,0,0,0.55);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.contato-container h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.subtitulo {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* BOTÕES */
.botoes {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.botao {
    text-decoration: none;
    color: #FFFFFF;
    padding: 18px 50px;
    border: 2px solid #FFFFFF;
    border-radius: 10px;

    display: flex;
    align-items: center;
    gap: 12px;

    width: 280px;
    justify-content: center;

    font-size: 18px;
    font-weight: bold;

    transition: 0.3s;
}

.botao i {
    font-size: 20px;
}

.instagram:hover {
    background: #E1306C;
    border-color: #E1306C;
}

.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

/* EMAIL */
.email {
    display: inline-block;
    margin-top: 35px;

    font-size: 20px;
    font-weight: bold;

    color: #FFFFFF;
    text-decoration: none;

    transition: 0.3s;
}

.email:hover {
    color: #6E7BA7;
}

/* VOLTAR */
.botao-voltar {
    display: inline-block;
    margin-top: 45px;
    font-size: 26px;
    text-decoration: none;
    color: #FFFFFF;
    opacity: 0.8;
}

.botao-voltar:hover {
    opacity: 1;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;

    background: #25D366;
    color: #FFF;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 40px;

    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.5);

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
/* CONTAINER DAS LISTAS */
.listas-container {
    display: flex;
    justify-content: center;
    gap: 50px; /* mais espaço entre colunas */

    margin-top: 80px;
    padding: 20px;

    flex-wrap: wrap;
}

/* CAIXAS */
.lista-box {
    width: 380px; /* maior */
    min-height: 500px;

    background: rgba(255,255,255,0.25);
    border-radius: 14px;

    padding: 30px;

    color: #020205;

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* TÍTULO */
.lista-box h2 {
    text-align: center;
    margin-bottom: 20px;

    font-size: 26px; /* maior */
    font-weight: bold;
}

/* LISTA */
.lista-box ul {
    list-style: none;
    padding: 0;
}

/* ITENS */
.lista-box li {
    margin: 8px 0;
    font-size: 20px; /* maior */
}
/* BOTÃO HOME */
.home-btn {
    position: fixed; /* fica fixo na tela */
    top: 20px;
    left: 20px;

    width: 60px;
    height: 60px;

    background: rgba(255,255,255,0.6);
    color: #020205;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    border-radius: 12px;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);

    backdrop-filter: blur(8px);

    transition: 0.3s;

    z-index: 999; /* garante que fica por cima */
}

/* HOVER */
.home-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: scale(1.1);
}
/* CONTAINER DOS BOTÕES (alinha lado a lado) */
.menu {
    display: flex; /* coloca lado a lado */
    justify-content: center; /* centraliza na tela */
    gap: 40px; /* espaço entre eles */
    margin-top: 80px;
}

/* ESTILO BASE (vale para todos) */
.botao {
    width: 250px; /* você pode ajustar depois */
    height: 160px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: white;

    font-size: 32px;
    font-weight: bold;

    border: 2px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);

    transition: 0.3s;
}

/* HOVER (efeito ao passar o mouse) */
.botao:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* BOTÃO FOTO (esquerda) */
.botao-foto {
    /* se quiser personalizar depois, usa aqui */
}

/* BOTÃO LISTA (meio) */
.botao-lista {
    /* espaço para customização */
}

/* BOTÃO CONTATO (direita) */
.botao-contato {
    /* espaço para customização */
}
/* CONTAINER DA GALERIA */
.galeria-produtos {
    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    /* cria várias colunas automaticamente */

    gap: 20px; /* espaço entre imagens */

    padding: 40px;
}

/* IMAGENS */
.produto {
    width: 100%;
    height: 200px;

    object-fit: cover; /* corta sem deformar */

    border-radius: 10px;

    transition: 0.3s;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* HOVER */
.produto:hover {
    transform: scale(1.05);
}
/* FUNDO ESCURO */
.modal {
    display: none; /* começa escondido */
    position: fixed;
    z-index: 999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;
}

/* IMAGEM GRANDE */
.modal {
    display: none;
    position: fixed;
    z-index: 999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;
}

.modal-img {
    max-width: 90%;
    max-height: 90%;
}

.fechar {
    position: absolute;
    top: 20px;
    right: 30px;

    font-size: 40px;
    
/* RESPONSIVO PARA CELULAR */
@media (max-width: 768px) {

    .menu {
        flex-direction: column; /* coloca um embaixo do outro */
        align-items: center; /* centraliza */
        gap: 20px; /* espaço entre eles */
    }

    .botao {
        width: 90%; /* ocupa quase toda a tela */
        max-width: 350px; /* não fica gigante demais */
    }

}
    color: white;
    cursor: pointer;
}
