* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.5;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.botao {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 30px;
    display: inline-block;
}

.cabecalho {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 2;
    padding: 15px 0;
    width: 100%;
}

.navegacao {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4caf50;
}

.menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.menu a {
    color: #333;
    font-weight: bold;
}

section {
    padding: 40px 0;
}

.destaque {
    padding-top: 90px;
    background-color: #e9f7e7;
    display: flex;
}

.destaque .container {
    display: flex;
    align-items: center;
    gap: 30px;

}

.texto h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.recursos .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.card {
    padding: 20px;
    text-align: center;
}

.icone {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sobre h2 {
    color: #4caf50;
}

span {
    color: #0a3f0b;
}

.sobre h3{
    color: #4caf50;
    
}

.conteudo-sobre {
    text-align: center;
}

.cta {
    background-color: #4caf50;
    color: white;
    text-align: center;
}

.cta .botao {
    background-color: white;
    font-weight: bold;
    color: #4caf50;
}

footer {
    text-align: center;
    padding: 20px 0;
}

.botao-menu {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    display: none;
}



@media screen and (max-width: 760px) {
    .destaque .container {
        flex-direction: column;
        text-align: center;
    }
    
    .recursos .container {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 20px;
    }

    .botao-menu {
        display: block;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        overflow: hidden;
        transition: 0.3s ease-in-out;
        max-height: 0;
        padding: 0 20px;
    }

    .menu.ativo {
      max-height: 200px;
    }

}