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

body {
    font-family: Arial, sans-serif;
}

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

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

header {
    background-color: #208d20; /* Verde escuro */
    padding: 20px 0;
    color: #fff;
}

.logo {
    font-size: x-large;
    margin: 0;
    color: rgb(238, 241, 233);
}

.logo img {
    width: 150px; /* Ajuste o tamanho conforme necessário */
    height: auto;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background-color: #e0f2e0; /* Verde claro */
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    color: #208d20;
    font-size: 2.5em
}

.descritivo {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.descritivo h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em
}

.descritivo p {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.descritivo .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.descritivo .logos img {
    width: 150px; /* Ajuste o tamanho conforme necessário */
    height: auto;
}

.descritivo .logos .more {
    font-size: 2em; /* Tamanho grande para o texto */
    color: goldenrod; /* Cor para destacar */
}

.disclaimer {
    padding: 30px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.disclaimer h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.disclaimer p {
    font-size: 1em;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.products {
    padding: 50px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 50px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-item {
    flex: 1 1 calc(33.333% - 20px);
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
}

.product-item img {
    max-width: 100%;
    height: auto;
}

.product-item button {
    background-color: #208d20;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.product-item button:hover {
    background-color: #003300;
}

.about {
    padding: 50px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em
}

.about p {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.about .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.about .logos img {
    width: 150px; /* Ajuste o tamanho conforme necessário */
    height: auto;
}


.contact {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.contact h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.contact p {
    font-size: 1.2em;
    color: #333;
}

.contact a {
    color: #004d00; /* Cor verde */
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}


footer {
    background-color: #208d20;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.accordion {
    background-color: #004d00;
    color: white;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    font-size: 1em;
    transition: 0.4s;
}

.accordion:hover {
    background-color: #003300;
}

.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border: 1px solid #ccc;
    margin-top: 10px;
}

.panel p {
    margin: 10px 0;
}
