* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #005c2f;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #008c4a;
}

.hero {
    background: linear-gradient(to right, #004225, #006b3f);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.hero p {
    font-size: 1.2rem;
}

section {
    padding: 60px 20px;
    background-color: #fff;
}

section:nth-of-type(even) {
    background-color: #f1f1f1;
}

h2 {
    font-size: 2rem;
    color: #004225;
    margin-bottom: 30px;
    text-align: center;
}

.servicos-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

.servicos-lista li {
    background-color: #e8f5e9;
    padding: 20px 30px;
    border-radius: 10px;
    color: #004225;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.servicos-lista li:hover {
    transform: scale(1.05);
}

#contato p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

footer {
    background-color: #004225;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .servicos-lista {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .container-contato {
        display: block !important;
        max-width: unset !important;
    }

    .contato-info {
        width: 100% !important;
    }

    .informacoes-contato {
        margin-top: 70px !important;
    }

    .informacoes-contato p {
        margin-left: unset !important;
    }

    nav ul {
        flex-direction: row;
    }
}

.container-contato {
    max-width: 100vw;
    margin: 30px auto 0;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #a7ffa7;
    display: flex;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    /* font-weight: bold; */
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #baffa3;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #008c4a;
    outline: none;
}

button[type="submit"] {
    background-color: #004225;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background-color: #006b3f;
}

.botao-enviar {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.btn-enviar {
    width: 120px;
}

#sobre p {
    margin-bottom: 20px;
    text-align: justify;
}

.form-group textarea::placeholder {
    font-family: Arial;
}

.container-contato {
    display: flex;
}

.contato-info {
    width: 50%;
}

.icone-contato {
    margin-right: 5px;
}

.link-contato {
    text-decoration: none;
    color: #333;
}

.link-contato:hover {
    color: #000;
}

.informacoes-contato p {
    text-align: left !important;
    font-size: 17px !important;
    margin-left: 120px;
}

.informacoes-contato {
    margin-top: 10px;
}

.container.container-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ajaxForm-alert {
    margin-top: 20px;
}