/* Header */

nav {
    position: relative;
}

.menu,
.linksMenu,
.subMenuLinks {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    height: 5.25rem;
}

.linksMenu a {
    color: #4d4d4d;
}

.linksSearch {
    display: flex;
}

.linkMenuMobile {
    padding: 10px;
    display: none;
}

.linkMenuMobile .imgMenu {
    width: 20px;
    height: 20px;
}

.linksMenu {
    display: flex;
    gap: 20px;
    z-index: 1;
}

.search {
    margin-left: 50px;
}

.search form {
    display: flex;
    position: relative;
}

.searchField {
    width: 0;
    height: 0;
    color: transparent;
    position: absolute;
    left: -30px;
}

.search form input {
    border-radius: 0.5625rem;
    margin-bottom: 0;
    width: 33px;
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block;
    z-index: 2;
    background-color: transparent;
    transition: width .2s;
}

.search form input:focus-visible {
    border-color: #3898ec;
    outline: 0;
}

.search form input.focus {
    width: 90%;
}

.soonAssine {
    width: 8.875rem;
    height: 2.9375rem;
}

.magnifyinglassSearchBtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: -34px;
    z-index: 1;
    transition: margin .2s;
}

.magnifyinglassSearchBtn img {
    width: 24px;
    height: 24px;
}

.magnifyinglassSearchBtn.mobile {
    margin-left: 0;
}

.subMenu {
    height: 50px;
    background-color: #f6f6f6;
    border-bottom: 1px solid rgba(206, 206, 206, .31);
    align-items: center;
    display: flex;
    position: absolute;
    top: auto;
    bottom: -50px;
    left: 0%;
    right: 0%;
}

.subMenu img {
    width: 70px;
    height: 40px;
    object-fit: contain;
}

.subMenu a {
    font-size: 0.875rem;
    color: #4d4d4d;
}

.banner {
    background-color: var(--cor-operadora);
    color: #fff;
    padding-top: 90px;
    padding-bottom: 35px;
}

.box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

h1 {
    font-size: 2.5rem;
    align-self: start;
}

.columnText,
.columnImg {
    width: 100%;
    max-width: 685px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.banner .box .columnText p {
    font-size: 1.125rem;
    color: #fff;
    margin-top: 1.5rem;
}

.banner .box .columnImg {
    text-align: center;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.box .columnImg img {
    width: 14rem;
    height: 16.5rem;
}

.boxBuscador {
    background-color: #F5F5F5;
    border-radius: 1.1875rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 31.25rem;
    display: flex;
    box-shadow: 5px 0 1.25rem -.125rem #00000003;
    padding: 17px 0;
    margin-bottom: 16px;
    max-width: 100%;
}

.buscador {
    flex-direction: column;
    display: flex;
    gap: 11px;
    max-width: 90%;
}

.boxSearchText {
    max-width: 100%;
}

.searchText {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 20px;
    max-width: 100%;
}

.searchLabel {
    box-sizing: border-box;
    border: .0625rem solid #bebebe;
    border-radius: .5625rem;
    width: 20.3125rem;
    height: 3.75rem;
    margin-bottom: 0;
    padding: 1.3125rem .9375rem;
    font-family: Lato cc, Arial, sans-serif;
    max-width: 100%;
}

.boxButton {
    border-radius: 1.25rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    display: flex;
}

.searchButton {
    color: #ffffff;
    background-color: #f97316;
    border-radius: 6.25rem;
    flex: 0 auto;
    width: 20.3125rem;
    height: 3.125rem;
    text-decoration: none;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .linkMenuMobile {
        display: block;
    }

    .linksMenu {
        display: none;
        flex-direction: column-reverse;
        align-items: flex-start;

        position: absolute;
        right: 0;
        left: 0;
        top: 80px;

        padding: 20px;

        background-color: #f6f6f6;
    }

    .linksMenu.active {
        display: flex;
    }

    .subMenu {
        position: static;
        height: auto;
        width: 100%;
        border: none;
    }

    .subMenuLinks {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .banner {
        padding-top: 50px;
    }
}

@media screen and (max-width: 480px) {
    
    .search {
        margin-left: 10px;
    }

    .box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .banner {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .banner .box .columnText p {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .columnText,
    .columnImg {
        width: 100%;
    }

    .banner .box .columnImg {
        text-align: center;
    }

    .banner .box .columnImg {
        justify-content: center;
    }
}