
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}
header {
    background: linear-gradient(90deg, #005757, #002b5c);
    color: white;
    text-align: center;
    padding: 30px 20px;
}
header .logo {
    max-width: 120px;
    margin-bottom: 15px;
}
h1 {
    margin: 0;
    font-size: 2.5em;
}
main {
    padding: 20px;
}
.produtos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.produto {
    background-color: white;
    border-left: 6px solid #005757;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
}
.produto h3 {
    color: #002b5c;
}
.contato {
    text-align: center;
    margin-top: 40px;
}
.contato a {
    color: #005757;
    text-decoration: none;
}
footer {
    background-color: #002b5c;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
}
@media (min-width: 600px) {
    .produtos {
        flex-direction: row;
        justify-content: space-between;
    }
    .produto {
        width: 30%;
    }
}

.formulario {
    background-color: #fff;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    border-left: 6px solid #005757;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.formulario form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.formulario input,
.formulario select,
.formulario textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1em;
}
.formulario button {
    background-color: #005757;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.formulario button:hover {
    background-color: #003c3c;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}
.whatsapp-float img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
