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

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--color-gradient-1);
    box-shadow: 0 4px 20px rgba(48, 48, 48, 0.8);
    padding: 10px;

    .logo{
        width: 150px;
        height: auto;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    .logo:hover{
        transform: scale(1.05)
    }

    h1{
        text-align: center;
        background: var(--cor-branco-3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        font-size: 2.2rem;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.834);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 1;
        pointer-events: none;
    }

    .search-form-animated {
        margin-left: auto;
        z-index: 2;
        display: flex;
        align-items: center;
    }
}


.navbar .logo-link {
    text-decoration: none;
    display: inline-block;
}