#home {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    min-height: calc(100vh - 100px);
    justify-content: center;
    position: relative;
    padding-bottom: 100px;
}

#cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

#cta .title {
    font-size: 7rem;
    font-family: 'perandory', sans-serif;
    font-weight: 500;
    color: #1d1d1d;

}

#cta .linha-quebrada-title {
    font-family: 'perandory', sans-serif;
    display: block;
}

#cta .subtitle {
    font-size: 3rem;
    font-weight: 600;
}

#cta .green-gradient {
    background-image: linear-gradient(to right, #476031, #3A7209);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    background-repeat: no-repeat;
}

#cta .description {
    font-size: 1.4em;
}

#cta_button a {
    text-decoration: none;
    color: #FFF3E5;
}

#cta_button {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #476031;
    border-radius: 9px;
    color: #FFF3E5;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 1.3em;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.6);
    max-width: 348px;
    cursor: pointer;
    transition: background-color .3s ease;
}


#cta_button:hover {
    background-color: #55703C;
}

#banner {
    position: absolute;
    top: 10px;
    right: 100px;
}

#banner img {
    width: 680px;
    animation: flutuar 4s ease-in-out infinite;
}

@keyframes flutuar {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px); 
    }
    100% {
        transform: translateY(0); 
    }
}