/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #eee;
    line-height: 1.6;
}

/* Navegação */
nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 10;
}

nav a {
    color: #eee;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4af37;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #222, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: #d4af37;
    padding: 0 20px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #eee;
}

.btn {
    background-color: #d4af37;
    color: #111;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #fff;
    color: #111;
}

/* Conteúdo principal */
.container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

h2 {
    color: #d4af37;
    margin-bottom: 20px;
}

/* Rodapé */
footer {
    background: #1a1a1a;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    color: #888;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
        top: 10px;
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .container {
        margin: 30px 10px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 80px;
    }


/* Imagens da página de produtos */
.produto-imagens {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.produto-imagens img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}


    nav a {
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-content p {
        font-size: 0.95em;
    }
}
