/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo global */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 20px;
}

.logo img {
    width: 100px;
    height: 60px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 18px;
    font-size: 20px;
}

nav a:hover {
    color: #00ff00;
}

/* Seção Hero */
.hero {
    background: url('images/background.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
}

/* Produtos */
.products {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #1a1a1a;
}

.product-card {
    text-align: center;
    width: 20%;
}

.product-card img {
    max-width: 100%;
    height: auto;
}

.product-card h3 {
    font-size: 20px;
    margin: 10px 0;
}

.product-card p {
    font-size: 16px;
    color: #ccc;
}

/* Rodapé */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #00ff00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
