* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    transition: .3s ease;
}

body {
    background: linear-gradient(136.16deg, rgba(186, 237, 200, 0.97) 12.91%, #EAFDD3 87.68%);
    width: 100%;
    min-height: 100vh;
    padding: 12px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.aside {
    background: linear-gradient(136.16deg,
            rgba(91, 135, 75, 0.97) 12.91%,
            rgba(12, 55, 32, 0.87) 87.68%);
    padding: 30px;
    border-radius: 40px;
    width: 85vw;
}

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

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: #F8F8FD;
    text-decoration: none;
    position: relative;
}

.underLine:after {
    content: "";
    width: 0%;
    height: 2px;
    bottom: -3px;
    left: 0px;
    position: absolute;
    background-color: #F8F8FD;
    transition: .3s ease;
}

.underLine:hover:after {
    width: 100%;
}

.btn-link {
    padding: 10px 20px;
    border: 1px solid #F8F8FD;
    border-radius: 41px;

}

.btn-link:hover {
    opacity: .7;
}

section {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-left {
    width: 50%;
    height: 450px;
    position: relative;
}

.container-left img {
    width: 100%;
    position: absolute;
    bottom: 60px;
    left: -50px;
    animation: moveAbobora 2s infinite alternate ease-in-out;
}

.container-left-info {
    position: absolute;
    bottom: 0px;
    left: 50px;

    padding-right: 20px;
    border-right: 1px solid #A7DE93;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 85px;
}

.container-left-info:after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #A7DE93;
    position: absolute;
    right: -6px;
    top: -8px;
}

.container-left-info p:first-child {
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    color: #fff;
}

.container-left-info p:last-child {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    opacity: .7;
}

.container-right {
    margin-top: 30px;
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.03em;
    color: #F8F8FD;
}

.container-right-info p:first-child {
    font-size: 68px;
    font-weight: 900;
    line-height: 74px;
    color: #fff;
}

.container-right-info p:last-child {
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    color: #fff;
    opacity: .8;
}

.container-actions {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.container-actions button {
    font-size: 15px;
    font-weight: 600;
    line-height: 23px;
    text-align: center;
    color: #303056;
    background-color: transparent;
    background-image: url(assets/btn-primary.svg);
    border: none;
    padding: 29px 43px;
    cursor: pointer;
}

.container-actions button:hover {
    opacity: 0.8;
    color: #fff;
    transform: scale(1.07);
}

.container-actions a {
    display: flex;
    gap: 12px;
    align-items: center;

    font-size: 15px;
    font-weight: 600;
    line-height: 23px;
    color: #fff;
    text-decoration: none;
}

.container-actions a:hover {
    opacity: .7;
    transform: scale(1.1);
}

.btn-ghost {
    font-size: 15px;
    font-weight: 600;
    line-height: 23px;
    color: #fff;

    display: block;
    margin: 100px auto 0;
    background-color: transparent;
    border: none;
    background-image: url(assets/btn-secondary.svg);
    padding: 34px 43px;
    cursor: pointer;

}

.btn-ghost:hover {
    color: #303056;
    transform: scale(1.07);
}

@keyframes moveAbobora {
    from {
        transform: translate(-5%, -5%) rotate(15deg);
    }

    to {
        transform: translate(0, 0) rotate(-15deg);
    }
}

.top {
    position: absolute;
    top: 1.6vw;
    right: 17vw;

}

.bottom {
    position: absolute;
    bottom: 0.4vw;
    left: 11vw;
}

@media ( max-height: 910px) {
    .top {
        display: none;
    }
    
    .bottom {
        display: none;
    }
}

@media (max-width: 1100px) {
    .top {
        display: none;
    }
    
    .bottom {
        display: none;
    }
}

@media (max-width: 800px) {

    body {
        padding: 12px 24px;
        overflow-x: hidden;
        padding: 0;
    }

    .aside {
        width: 100%;
        border-radius: 0;
    }

    nav {
        display: none;
    }

    section {
        margin-top: 0px;
        flex-direction: column;
    }

    .container-left {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .container-left img {
        width: 90%;
        left: 0;
    }

    .container-left-info {
        left: auto;
    }

    .container-right {
        width: 100%;
        text-align: center;
    }

    #paragrafo {
        margin: 10px 0;
    }

    .btn-ghost {
        margin: 20px auto;
    }
}