@import url('./index.css');

.apresentacao{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 100dvh;
    padding-top: 11dvh;

    & .redes{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;

        & i{
            font-size: var(--font-size-title-sec);
            color: var(--accent-primary);
            transition: 0.3s;
            &:hover{
                transform: scale(1.2);
            }
        }
    }

    & img{
        width: 25vw;
        height: 25vw;
        border-radius: 50%;
    }

    & .btns{
        display: flex;
        flex-direction: row;
        gap: 1rem;
        & .main-btn{
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-color);
            color: var(--accent-primary);
            transition: 0.5s;
            cursor: pointer;
            user-select: none;
            padding: 10px 20px;
            border-radius: var(--radius-md);
            font-size: var(--font-size-text-small);
            font-weight: 600;
            &:hover{
                background-color: var(--accent-primary);
                color: var(--text-inverted);
                border: none;
                box-shadow: var(--shadow-md);
                transform: scale(1.05);
                
            }
        }
    }
}

@media screen and (max-width: 1000px) {
    .apresentacao{
        flex-direction: column-reverse;
        text-align: center;
        justify-content: center;
        gap: 2rem;
        text-align: start;

        & img{
            width: 50vw;
            height: 50vw;
        }

        & .btns{
            justify-content: center;
        }
    }
}