
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f7f7f7;
    color: #333;
}

/* TOPO */
.topo {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.topo-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a:hover {
    color: #b08d57;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #111, #333);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #b08d57;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
    background: #fff;
}

.container h2 {
    font-size: 26px;
    margin-bottom: 40px;
    text-align: center;
}

/* PRODUTOS */
.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.produto {
    background: #fafafa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform .3s;
}

.produto:hover {
    transform: translateY(-5px);
}

.produto img {
    max-width: 160px;
    margin-bottom: 20px;
}

.produto h3 {
    margin-bottom: 10px;
}

/* SOBRE */
.sobre {
    margin-top: 80px;
    text-align: center;
}

.sobre p {
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
}
