header{
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    min-height: 6.4rem;
    transition: all .4s ease-in-out;
}

#preenche-topo-fixo{
    min-height: 6.4rem;
}

header{
    background-color: #E1D0C3;
}


@media (min-width: 992px){
    header, #preenche-topo-fixo{
        min-height: 5.6rem;
    }
}


.navbar-brand{
    width: 72%
}

@media (min-width: 992px){
    .navbar-brand{
        width: 24%
    }
}

.navbar-brand img {
    max-height: 4rem;
}


@media (min-width: 992px){
    #main-menu{
        width: 56%;
    }
}

/*
.cta-header{
    max-width: 24rem;
}
*/

.cta-header span{
    color: #FFFFFF;
    font-size: .88rem;
    line-height: .96rem;
    font-weight: 500;
}

.cta-header a{
    text-decoration: none;
    display: block;
    margin-left: .48rem;
    font-weight: 700;
    padding: .88rem 1.28rem;
    border-radius: 8px;
    font-size: .96rem;
    text-align: center;
    white-space: nowrap;
    transition: all .24s ease-in-out;
    text-transform: uppercase;
    color: #FFFFFF !important;
    cursor: pointer;
    transition: background .24s ease-in-out;
}





#main-menu > .navbar-nav > .menu-item > a{
    color: #141819;
    font-size: .96rem;
    font-weight: 400;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    transition: all .4s ease-in-out;
    display: inline-block;
    margin: .48rem 0;
    padding: 0;
}

@media (min-width: 992px){
    #main-menu > .navbar-nav > .menu-item > a{
        margin: 0 1.28rem 0 0;
    }
}


/* #main-menu > .navbar-nav > .menu-item.current-menu-item > a, */
#main-menu > .navbar-nav > .menu-item > a:hover,
#main-menu > .navbar-nav > .menu-item > a.show{
    border-color: #D6AA84;
}









nav .dropdown-menu{
    background-color: #F2F2F2;
    transition: all .4s ease-in-out;
    border-radius: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom: 3px solid #D6AA84
}

.navbar-nav .dropdown-toggle::after{
    background-image: url("../images/dropdown.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 0 none;
    width: .8rem;
    height: .8rem;
    vertical-align: middle;
}

nav .simula-sub-menu .dropdown-item{
    color: #D6AA84 !important;
    font-weight: 700;
    font-size: 1.12rem;
}

nav .dropdown-item{
    color: #434A51 !important;
    font-size: .928rem;
    font-weight: 400;
    transition: all .4s ease-in-out;
    background-color: rgba(0, 0, 0, 0) !important;
}

nav .dropdown-item:before{
    content: "•" !important;
    display: inline-block;
    vertical-align: middle;
    padding-right: .4rem;
}

nav .simula-sub-menu .dropdown-item:before{
    content: unset !important;
}


nav .dropdown-item:hover{
    color: #D6AA84 !important;
}



/* chat gpt */

.dropdown-menu.show {
  display: flex;
  gap: 32px;
  padding: 12px 16px;
}

.dropdown-menu > ul.menu-column {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 220px;
}


@media (max-width: 991px) {
  .dropdown-menu.show {
    flex-direction: column;
    max-height: 48vh;
    overflow: auto;
  }
}



.simula-sub-menu > a {
  font-weight: 600;
  pointer-events: none; /* se quiser que não seja clicável */
  cursor: default;
}

.simula-sub-menu {
  margin-bottom: 8px;
}

/* fim do codigo do chat gpt */