* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

`

.conteudo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.textos {
    width: 100%;
}

h2 {
    color: #333;
    font-size: 60px;
    font-weight: bold;
}

span {
    color: #017143;
    font-size: 70px;
    font-weight: 900;
    transition: opacity 1.5s ease;
}

p {
    font-size: 16px;
}

button {
    background-color: transparent;
    color: #0c955c;
    padding: 10px;
    border: 1px solid #0c955c;
    margin-top: 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
}

.imagem {
    display: flex;
    align-items: center;
    justify-content: center;
  
}

button:hover {
    background-color: #0c955c;
    color: wheat;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    justify-content: center;
h3{
    font-size: 30px;
    color: #333;
}
}

.botao-menu:hover{
    transform: translateY(-25px);
}

.botao-menu {
    width: 60px;
    cursor: pointer;
    transition: 1s;
}

.logo {
    width: 80px;
    position: absolute;
    top: 50px;
}

.imagem-cop {
    width: 340px;
    transition: opacity 1.5s ease;
}

.animar {
    opacity: 0;
    transform: scale(0.9);
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    height: 100vh;
    width: 100%;
    padding-right: 100px;
    padding-left: 100px;
}