@import url("./main.css");

* {
    color: var(--white);
}

#inicio-conteudo {
    background-color: var(--black);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
#inicio-conteudo #icone-scroll {
    position: fixed;
    bottom: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 40px;

    animation: floatY 2s ease-in-out infinite;
}
@keyframes floatY {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-12px);
    }
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
}


#inicio-conteudo #imagem {
    position: absolute;
    inset: 0;
    background-image: url("../../assets/imagens/consult-horiz.webp");
    background-size: cover;
    background-position: center;
    z-index: 2;
    opacity: 0.25;
}
#inicio-conteudo #conteudo {
    position: relative;
    z-index: 3;
    color: #fff;
}

header {
    color: var(--white);
}

.btn-comece-agora {
    background: #18A04C;
    background: linear-gradient(135deg, rgba(24, 160, 76, 1) 17%, rgba(0, 192, 74, 1) 55%, rgba(0, 255, 98, 1) 99%);
}

@media (max-width: 768px) {
    #inicio-conteudo #imagem {
        background-image: url("../../assets/imagens/consult-verti.webp");
    }
}