.hero {
    position: relative;
    min-height: 100dvh;
    background: linear-gradient(
        130deg,
        #0e0b05
    );
    
    perspective: 3000px !important;
    perspective-origin: 50% 78%;
    overflow: hidden;
}

.hero-interacoes {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-textos {
    width: 100%;
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    mix-blend-mode: color-dodge;
    z-index: 2;
}

.hero-descricao {
    color: var(--text-light-900);
    font-size: clamp(14px, 1.2vw, 1.2vw);
    margin-bottom: 32px;
}

.hero-titulo {
    font-family: var(--font-clash);
    font-size: clamp(28px, 6vw, 6vw);
    font-weight: 600;
    text-align: center;
    color: var(--main-title);
    line-height: 1.1;
    z-index: 2;
}

.container-botoes {
    position: absolute;
    bottom: 16%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 2;
}

.botao-icone {
    border-radius: 500px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 
        -2px -3px 6px 0 rgba(0, 0, 0, 0.60) inset,
        2px 4px 6px 0 rgba(0, 0, 0, 0.40); */
}

.botao-projetos {
    background-color: #e0e0e0;
    color: var(--text-dark-900);
    /* border: 1px solid #2b2b2b; */
    /* box-shadow: 
        4px 6px 4px 0 rgba(255, 255, 255, 0.95) inset,
        -2px -6px 12px 0 rgba(0, 0, 0, 0.60) inset,
        26px 30px 11px 0 rgba(0, 0, 0, 0.00),
        17px 19px 10px 0 rgba(0, 0, 0, 0.03),
        9px 11px 9px 0 rgba(0, 0, 0, 0.10),
        4px 5px 6px 0 rgba(0, 0, 0, 0.17),
        1px 1px 3px 0 rgba(0, 0, 0, 0.40); */
    transition: filter 0.3s ease, background-color 0.3s ease;
}

.botao-projetos:hover {
    filter: brightness(1.1);
}

.botao-icone-projetos {
    border-radius: 500px;
    /* border: 1px solid #4B4B4B; */
    background-color: #222222;
    position: relative;
    overflow: hidden;
}

.icone-copia {
    position: absolute;
    transform: translate(-150%, 150%);
}

.botao-projetos:hover .icone-principal {
    transform: translate(150%, -150%);
    transition: transform 0.3s ease-in-out;
}

.botao-projetos:hover .icone-copia {
    transform: translate(0);
    transition: transform 0.3s ease-in-out 0.25s;
}

.botao-contato {
    background-color: #111111;
    color: var(--text-light-900);
    font-weight: 400;
    border: 1px solid #8b8b8b;
    /* box-shadow: 
        4px 6px 4px 0 rgba(255, 255, 255, 0.04) inset,
        -2px -6px 12px 0 rgba(0, 0, 0, 0.60) inset,
        26px 30px 11px 0 rgba(0, 0, 0, 0.00),
        17px 19px 10px 0 rgba(0, 0, 0, 0.03),
        9px 11px 9px 0 rgba(0, 0, 0, 0.10),
        4px 5px 6px 0 rgba(0, 0, 0, 0.17),
        1px 1px 3px 0 rgba(0, 0, 0, 0.40); */
    transition: background-color 0.3s ease;
}

.botao-contato:hover {
    background-color: #1a1a1a;
}

.botao-icone-contato {
    background-color: #dbdbdb;
    /* border: 1px solid #b4b4b4; */
    /* box-shadow:
        -1px -3px 6px 0 rgba(0, 0, 0, 0.4) inset,
        0 4px 6px 0 #000; */
}

.container-degrade-primario,
.container-degrade-secundario {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    mix-blend-mode: color-dodge;
}

.degrade-angular-primario,
.degrade-angular-secundario {
    width: 50%;
    height: 120%; /* alterar a posição vertical da luz */
}

.degrade-angular-primario {
    background: conic-gradient(
        from 90deg at 50% 50%,
        #f8f8f8 0deg,
        #000 15deg,
        #aaa 100deg,
        #f8f8f8 360deg
    );
}

.degrade-angular-primario:nth-child(2) {
    transform: scaleX(-1);
    margin-left: -1px;
}

.container-degrade-secundario {
    opacity: 0;
}

.degrade-angular-secundario {
    background: conic-gradient(
        from 90deg at 50% 50%,
        #000 15deg,
        #aaa 358deg,
        #f8f8f8 360deg
    );
}

.degrade-angular-secundario:nth-child(2) {
    transform: scaleX(-1);
    margin-left: -1px;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        #000000a6 0%,
        #00000000 77%,
        #000000c5 100%
    );
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-textos {
        top: 42%;
        width: 100%;
        padding: 0 var(--padding);
        align-items: flex-start;
    }

    .hero-descricao {
        font-size: clamp(14px, 3.5vw, 3.5vw);
        width: 100%;
        margin-bottom: 24px;
    }

    .hero-titulo {
        line-height: 1.1;
    }

    .container-botoes {
        width: 100%;
        padding: 0 var(--padding);
        bottom: 15%;
        gap: 4vw;
    }

    .botao-projetos {
        padding: 2vw 2vw 2vw 4vw;
    }

    .container-degrade-primario,
    .container-degrade-secundario {
        width: 170vw;
        left: 50%;
        transform: translateX(-50%);
    }
}
