body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f4f6fb;
    color: #222;
}
header {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 20px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
header nav a:hover {
    color: #ffd700;
}
.hero {
    text-align: center;
    padding: 80px 20px 40px 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(30,60,114,0.08);
    margin-bottom: 40px;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-buttons a {
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s, transform 0.2s;
}
.social-buttons .whatsapp {
    background: #25d366;
}
.social-buttons .whatsapp:hover {
    background: #128c7e;
    transform: scale(1.05);
}
.social-buttons .instagram {
    background: linear-gradient(45deg, #fd1d1d, #833ab4);
}
.social-buttons .instagram:hover {
    background: linear-gradient(45deg, #833ab4, #fd1d1d);
    transform: scale(1.05);
}
#produtos {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(30,60,114,0.06);
}
#produtos h3 {
    text-align: center;
    margin-bottom: 30px;
}
.produtos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
footer {
    background: #1e3c72;
    color: #fff;
    text-align: center;
    padding: 18px 0;
}
