section.apresentacao {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(70deg, #0E0F2E 0%, #0B1051 35.5%, #140F41 65%, #110A9F 100%); */
    background: linear-gradient(70deg, #0F1E0E 0%, #2a3511 35.5%, #2a3511 35%, #d2ff57 100%);
    background-position: center;
    width: 100%;
    /* margin: auto; */
    padding: 180px 200px 200px 80px;
    /* padding: 200px; */
}

section.apresentacao .container {
    width: 100%;
    max-width: 100%;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    /* padding: 50px 40% 50px 2px; */
}

section.apresentacao img.divisor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    animation: animacaoDivisor 1s ease;
}

section.apresentacao img.divisor.mobile {
    display: none;
}

@keyframes animacaoDivisor {
    0% {
        bottom: -40px;
    }

    100% {
        bottom: 0;
    }
}

section.apresentacao div.circulo {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 5px solid var(--botao);
    border-top: 5px solid transparent;
    position: absolute;
    z-index: 4;
}

section.apresentacao div.circulo.um {
    right: -300px;
    bottom: -100px;
    box-shadow: 0 40px 50px 0 #779f0a70;
    animation: rodandoCirculo 5s ease infinite;
}

section.apresentacao div.circulo.dois {
    right: -100px;
    bottom: 400px;
    box-shadow: 0 40px 50px 0 #779f0a4b;
    animation: rodandoCirculo 5s ease infinite;
}

@keyframes rodandoCirculo {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

section.apresentacao .imagem {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 120px;
    /* bottom: 160px; */
    width: 500px;
    animation: animacaoTime 1s ease;
    transform: translateY(0);
    opacity: 1;
    z-index: 19;
}

section.apresentacao .imagem img.avatar {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 19;
    animation: avatar 8s ease infinite;
    filter: grayscale(100%);
}

@keyframes avatar {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0);
    }
}

section.apresentacao .imagem div.blush {
    position: absolute;
    bottom: -80px;
    width: 100%;
    height: 80px;
    background: radial-gradient(40.98% 40.98% at 50% 50%, #00000050 0%, #00000000 100%);
    border-radius: 50%;
    animation: blush 8s ease infinite;
    z-index: 2;
}

@keyframes blush {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

section.apresentacao .texto {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    transform: translateX(0);
    opacity: 1;
    animation: animacaoTexto 1s ease;
    z-index: 5;
    position: relative;
    /* width: 50%; */
    /* margin-right: 100px; */
}

@keyframes animacaoTexto {
    0% {
        transform: translateX(-80px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

section.apresentacao .texto h3 {
    font-family: 'Alexandria';
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 8px;
    color: #ffffff50;
}

section.apresentacao .texto h1 {
    font-family: 'Alexandria';
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
    line-height: 1.2;
    width: 100%;
    max-width: 490px;
    margin: 10px 0 10px 0;
}

section.apresentacao .texto p {
    font-family: 'Figtree';
    font-weight: 300;
    font-size: 16px;
    color: #ffffffa2;
    line-height: 1.5;
    width: 100%;
    max-width: 500px;
}

section.apresentacao .texto .botoes {
    display: flex;
    margin: 20px 0 0 0;
}

section.apresentacao .texto .botoes .trocar {
    display: flex;
    align-items: center;
    background-color: transparent;
    margin: 0 0 0 20px;
    transition: all 0.3s;
    text-decoration: none;
}

section.apresentacao .texto .botoes .trocar:hover {
    opacity: 0.7;
}

section.apresentacao .texto .botoes .trocar p {
    font-family: 'Figtree';
    font-weight: 300;
    font-size: 16px;
    color: var(--texto-antagonista);
}

section.apresentacao .texto .botoes .trocar img {
    width: 20px;
    min-width: 16px;
    margin: 0 8px 0 0;
}

section.apresentacao .texto .botoes .destaque {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--botao);
    box-shadow: 0 1px 10px 0 var(--sombra-botao);
    padding: 13px 25px;
    border-radius: 50px;
    /* transition: all 0.3s; */
    text-decoration: none;
    transition: transform 0.2s ease;
}

section.apresentacao .texto .botoes .destaque:hover {
    background-color: var(--botao-hover);
    transform: translateY(4px)
}

/* section.apresentacao .texto .botoes .destaque:hover img {
    content: url("/static/assets/svgs/check-branco.svg");
} */

/* section.apresentacao .texto .botoes .destaque:hover p {
    color: var(--texto-botao-hover);
} */



section.apresentacao .texto .botoes .destaque p {
    font-family: 'Alexandria';
    font-weight: 600;
    font-size: 16px;
    color: var(--texto-botao);
    text-decoration: none;
}

section.apresentacao .texto .botoes .destaque img {
    width: 12px;
    min-width: 12px;
    margin: 0 8px 0 0;
    content: url("/static/assets/svgs/check-preto.svg");
}


@media (max-width: 768px) {
    section.apresentacao {
        padding: 0 !important;
        /* background: linear-gradient(-40deg, #0F1E0E 0%, #1B3F10 50.5%, #285E1C 65%, #c3ec53 130%); */
        background: linear-gradient(-180deg, #010201 0%, #2a3511 35.5%, #2a3511 35%, #abbb7e 130%);
    }

    section.apresentacao .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 90% !important;
    }

    section.apresentacao .imagem {
        max-width: 400px !important;
        position: static;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    section.apresentacao .texto {
        width: 100%;
        align-items: center;
        margin-right: 0;
        text-align: center;
        margin-top: 150px;
        /* padding: 20px; */
    }

    section.apresentacao .texto .botoes {
        flex-direction: column;
    }

    section.apresentacao .texto .botoes a {
        margin-bottom: 20px;
    }

    section.apresentacao .container .texto h3 {
        font-size: 12px !important;
    }

    section.apresentacao .container .texto h1 {
        font-size: 32px;
    }

    section.apresentacao .container .texto p {
        color: #ffffff95;
    }

    /* CIRCULOS */
    section.apresentacao div.circulo {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 5px solid var(--botao);
        border-top: 5px solid transparent;
        position: absolute;
        z-index: 4;
    }
    
    section.apresentacao div.circulo.um {
        width: 400px;
        height: 400px;
        right: -20px;
        bottom: -350px;
        box-shadow: 0 40px 50px 0 #779f0a48;
        animation: rodandoCirculo 5s ease infinite;
    }
    
    section.apresentacao div.circulo.dois {
        right: 220px;
        bottom: -200px;
        box-shadow: 0 40px 50px 0 #779f0a48;
        animation: rodandoCirculo 5s ease infinite;
    }

    section.apresentacao img.divisor {
        bottom: -1px;
    }

    section.apresentacao .texto .botoes .trocar {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        margin: 0 0 0 20px;
        transition: all 0.3s;
        text-decoration: none;
    }

    section.apresentacao .texto .botoes .trocar p {
        width: 60%;
        margin-left: -20px;
    }
}