.barra__topo {
    background: var(--verde);
    color: #fff;
    line-height: 24px;
    overflow: hidden;
}

.barra__topo .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.barra__topo h1 {
    background: url(../img/icone-h1.png) left center no-repeat;
    padding-left: 30px;
    font-size: 13px;
}

.barra__topo .dados {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    padding-left: 45px;
    gap: 20px
}

.barra__topo .dados * {
    position: relative;
    z-index: 2;
}

.barra__topo .dados::after {
    content: '';
    width: 5000px;
    height: 100%;
    position: absolute;
    display: block;
    background: var(--laranja);
    top: 0;
    left: 0;
    border-radius: 50px;
}

.barra__topo .dados p,
.barra__topo .dados p a {
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    line-height: 13px;
}

.barra__topo .dados p a {
    font-weight: bold;
}

.barra__topo .dados i {
    margin-right: 5px;
    font-size: 18px;
    line-height: 13px;
}


/* Header */
.principal__header {
    background: #FFF;
}

.principal__header .container .row {
    align-items: center;
    margin: 45px -15px;
}

.principal__header .menu__header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 40px;
    padding-left: 20px;
}

.principal__header .menu__header * {
    position: relative;
    z-index: 2;
    display: block;
    line-height: 100%;
}

.principal__header .menu__header::after {
    content: '';
    width: 5000px;
    height: 100%;
    position: absolute;
    display: block;
    background: #FFF;
    top: 0;
    left: 0;
    border-radius: 150px;
    box-shadow: 0 0 40px #0000003d;
}

.principal__header .menu__header ul.menu {
    display: flex;
    margin: 20px;
    gap: 3px;
}

.principal__header .menu__header ul.menu>li {
    position: relative;
}

.principal__header .menu__header ul.menu>li>ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 160px;
    border-radius: 10px;
}

.principal__header .menu__header ul.menu>li:hover ul {
    display: block !important;
}

.principal__header .menu__header ul.menu>li ul a {
    padding: 10px;
    color: #333;
    display: block;
    text-align: center;
    font-size: 14px;
    border-radius: 10px;
}

.principal__header .menu__header ul.menu>li ul a:hover {
    background: var(--laranja);
    color: #fff;
}

.principal__header .menu__header ul.menu>li>a {
    font-size: 16px;
    color: #333;
    padding: 5px 25px;
    border: 2px #fff solid;
    display: block;
    line-height: 24px;
    border-radius: 40px;
}

.principal__header .menu__header ul.menu>li.current-menu-item>a,
.principal__header .menu__header ul.menu>li>a:hover {
    border: 2px var(--laranja) solid;
    background-color: #f07a20;
    color: #fff;
}

.principal__header .openSearch {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--verde);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
}

.principal__header .openSearch:hover {
    background: var(--laranja);
}

.principal__header .busca {
    position: absolute;
    right: 0;
    top: calc(100%);
    z-index: 99;
    background: #fff;
    padding: 5px;
    border: 1px #dedede solid;
    border-top: 0;
}

.principal__header .busca input {
    width: 250px;
    padding: 10px;
    background: transparent;
    border: 0;
    font-size: 14px;
    padding-right: 23px;
    font-family: var(--font);
}

.principal__header .busca button {
    position: absolute;
    border: 0;
    background: transparent;
    padding: 10px;
    top: 0;
    right: 0;
    height: 100%;
}

@media all and (max-width: 768px) {
.barra__topo .dados{
    display: none;
    }
}