/* =========================================================
   PESQUISA - OVERLAY
========================================================= */

.site-search {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 120px;

    background: rgba(255, 255, 255, 0.97);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-15px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    /* IMPORTANTE */
    z-index: 99999;
}


/* =========================================================
   PESQUISA ABERTA
========================================================= */

.site-search.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   CONTAINER
========================================================= */

.site-search-container {

    width: min(900px, 90%);

    margin: 0 auto;
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.site-search-form {

    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 6px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);

    overflow: hidden;
}


/* =========================================================
   INPUT
========================================================= */

.site-search-input-wrapper {

    flex: 1;

    display: flex;
    align-items: center;

    min-height: 68px;

    padding: 0 24px;

    gap: 15px;
}


/* =========================================================
   ÍCONE
========================================================= */

.site-search-input-wrapper svg {

    width: 22px;
    height: 22px;

    flex-shrink: 0;

    fill: none;

    stroke: #b00000;

    stroke-width: 1.8;
}


/* =========================================================
   INPUT
========================================================= */

.site-search-input-wrapper input {

    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    color: #222;
}


.site-search-input-wrapper input::placeholder {

    color: #999;
}


/* =========================================================
   BOTÃO PESQUISAR
========================================================= */

.site-search-form > button[type="submit"] {

    height: 68px;

    padding: 0 28px;

    border: none;

    background: #b00000;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;

    cursor: pointer;

    transition:
        background .2s ease;
}


.site-search-form > button[type="submit"]:hover {

    background: #8d0000;
}


/* =========================================================
   BOTÃO FECHAR
========================================================= */

.site-search-close {

    position: absolute;

    top: 18px;
    right: 18px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    background: #f4f4f4;

    border-radius: 50%;

    color: #333;

    font-size: 22px;

    line-height: 1;

    cursor: pointer;

    z-index: 10;

    transition:
        background .2s ease,
        color .2s ease;
}


.site-search-close:hover {

    background: #b00000;

    color: #fff;
}


/* =========================================================
   NAVBAR
========================================================= */

.site-header {

    position: relative;

    z-index: 1000;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 768px) {

    .site-search {

        padding-top: 90px;

    }

    .site-search-container {

        width: 92%;

    }

    .site-search-form {

        display: block;

        padding: 8px;

    }

    .site-search-input-wrapper {

        min-height: 58px;

        padding: 0 16px;

        padding-right: 45px;

    }

    .site-search-form > button[type="submit"] {

        width: 100%;

        height: 50px;

        border-radius: 4px;

    }

    .site-search-close {

        top: 16px;
        right: 16px;

    }

}