
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
}
header {
    background: #ffffff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 2px solid #eee;
}
.logo {
    max-width: 200px;
    height: auto;
}
nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.whatsapp-btn {
    background-color: #25d366;
    color: white;
    padding: 10px;
    border-radius: 5px;
}
.hero {
    display: flex;
    flex-wrap: wrap;
    background: #1f1462;
    color: white;
    padding: 40px 20px;
    align-items: center;
    justify-content: space-between;
}
.hero-text {
    flex: 1;
    min-width: 280px;
}
.hero-text .destaque {
    color: #00e0d0;
}
.hero-text .cta {
    background: #00e676;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}
.hero-img {
    flex: 1;
    text-align: center;
}
.hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
section {
    padding: 40px 20px;
}
section h2 {
    color: #1f1462;
}
.galeria {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.galeria img {
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #1f1462;
    color: white;
}
