body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

header {
    background-color: white;
    color: #004aad;
    padding: 10px 0 20px;
    text-align: center;
    border-bottom: 2px solid #eee;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    max-width: 220px;
    height: auto;
}

nav ul.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul.menu li a {
    text-decoration: none;
    color: #004aad;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul.menu li a:hover {
    color: #0070ff;
}

.intro-text {
    margin-top: 10px;
}

.slogan {
    font-size: 1.1em;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.secao {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.secao h2 {
    color: #004aad;
    margin-bottom: 20px;
}

.secao p {
    max-width: 700px;
    margin: 0 auto 10px;
    font-size: 1.1em;
}

.secao.destaque {
    background-color: #e6f0ff;
}

.imagem-secao {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    nav ul.menu {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        max-width: 180px;
    }

    iframe {
        width: 100% !important;
        height: auto !important;
    }

    .imagem-secao {
        width: 100%;
        height: auto;
    }
}

/* ANIMAÇÕES SUAVES */
header, .secao, footer {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

/* Formulário de contato */
.form-contato {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    resize: vertical;
}

.form-contato button {
    background-color: #004aad;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-contato button:hover {
    background-color: #003580;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

/* Rodapé e redes sociais */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

.redes-sociais {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.redes-sociais a img {
    width: 32px;
    height: 32px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.redes-sociais a img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Rodapé e redes sociais */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 30px 20px 40px;
    font-size: 0.9em;
    position: relative;
    z-index: 1;
}

.redes-sociais {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.redes-sociais img {
    width: 32px;
    height: 32px;
    transition: 0.3s ease;
    filter: grayscale(100%);
}

.redes-sociais img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}
