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

body {
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: #7a1f1f;
    color: #fff;
    padding: 15px 0;
}

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

.logo {
    height: 190px;
}


nav a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background: #a52a2a;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.hero p {
    margin: 15px 0;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #a52a2a;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.section {
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.bg-light {
    background: #f4f4f4;
}

.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.produto {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
}

.produto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.contato {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contato a {
    color: #a52a2a;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background: #7a1f1f;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}
