/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

header {
    background-color: rgb(131, 65, 5);
    color: white;
    padding: 20px 0;
    text-align: center;
}

header img {
    width: 100px;
    margin-bottom: 10px;
}

header .slogan {
    font-style: italic;
    margin-top: 10px;
}

main {
    padding: 20px 0;
}

main h2 {
    color: rgb(131, 65, 5);
}

section {
    margin-bottom: 40px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item {
    flex: 1 1 calc(50% - 20px);
    text-align: center;
}

.service-item img {
    max-width: 100%;
    height: auto;
}

.reasons ol {
    list-style-type: none;
    padding: 0;
}

.reasons li {
    background-color: rgb(244, 191, 125);
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 50px;
    position: relative;
    padding-left: 40px;
}

.reasons li span {
    background-color: rgb(131, 65, 5);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
    line-height: 24px;
}

/* Responsividade */
@media (max-width: 768px) {
    .service-item {
        flex: 1 1 100%;
    }
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
}

form input, form textarea, select {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: rgb(131, 65, 5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background-color: rgb(104, 51, 4);
}

/* Adicionando estilo ao rodapé */
footer {
    background-color: rgb(131, 65, 5);
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 5px 0;
}

footer .contact-info {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Estilo para o menu de navegação */
nav {
    margin-top: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
}

nav ul li a.active,
nav ul li a:hover {
    background-color: rgb(244, 191, 125);
    color: rgb(131, 65, 5);
}
