/* Reset básico de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo da página */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 0 20px;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
    padding: 10px 20px;
    color: #fff;
}
header #menu {
    position: absolute;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
}

header #logo img {
    height: 150px;
    max-width: 100%;
    object-fit: contain;

}
/* Título da página */
h1 {
    text-align: center;
    font-size: 2.5em;
    margin: 20px 0;
    color: #333;
}

/* Seção de Redes Sociais */
#redes-sociais {
    text-align: center;
    margin-top: 30px;
}

#redes-sociais h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

#redes-sociais p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
}

.icones-redes a {
    margin: 0 20px;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.icones-redes a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.icones-redes img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

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

.social-icons a {
    text-decoration: none;
    color: #333;
    font-size: 2.5rem;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #8b4513;
}
.icones-redes img:hover {
    transform: scale(1.2);
}

/* Seção de informações de contato */
#informacoes-contato {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#informacoes-contato h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

#informacoes-contato p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

/* Formulário de Contato */
#formulario-contato {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

#formulario-contato form {
    display: flex;
    flex-direction: column;
}

#formulario-contato label {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #333;
}

#formulario-contato input, 
#formulario-contato textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

#formulario-contato button {
    background-color: #5cb85c;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#formulario-contato button:hover {
    background-color: #4cae4c;
}

/* Mensagens de erro e sucesso */
.erro {
    color: #ff4d4d;
    background-color: #ffd6d6;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.sucesso {
    color: #5cb85c;
    background-color: #d4edda;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    h1 {
        font-size: 2em;
    }

    #formulario-contato {
        padding: 15px;
    }

    #formulario-contato label {
        font-size: 1em;
    }

    #formulario-contato input,
    #formulario-contato textarea {
        font-size: 1em;
    }

    .icones-redes img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    #informacoes-contato,
    #formulario-contato {
        padding: 15px;
    }

    #formulario-contato button {
        font-size: 1em;
    }

    .icones-redes img {
        width: 45px;
        height: 45px;
    }
}
