/*====== Fonts ======*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: BwGlennSans-Medium;
    src: url(/fonts/BwGlennSansDEMO/BwGlennSansDEMO-Medium.otf);
}

/*====== Cores ======*/
:root{
    --dourado-consulttech: #e8cc97;
    --dourado2-consulttech: #D6AD60;
    --amarelo-consulttech: #f5e59b;
    --azul-hover-botao: #5e6aa8;
    --azul-titulos: #037FCC;
    --azul-bolinha: #00AEEF;
    --azul-escuro: #2a3771;
    --cinza-texto: #515252;
}

.cor-padrao-texto{
    color: #515252;
}

.marcacao-texto-azul-escuro{
    color: #2a3771;
}

.marcacao-texto-azul-titulo{
    color: var(--azul-titulos)
}

.marcacao-texto-amarelo{
    color: #D6AD60;
}

.marcacao-texto-menor-amarelo{
    color: #D6AD60; 
    font-weight: bold;
    font-size: 16px;
}

.marcacao-texto-roxo{
    color: #935cff;
}

.marcacao-texto-negrito{
    font-weight: bold;
}

.marcacao-texto-bold{
    font-weight: 600;
}

.marcacao-texto-italico{
    font-style: italic;
}

.texto-vermelho{
    color: red;
}

.texto-riscado{
    text-decoration:line-through;
}

.texto-destaque-valor{
    font-size: 28px;
}

/*====== GERAL ======*/

* {
    /* Remover margem e padding de tudo */
    margin: 0px;
    padding: 0px;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}

/*====== BODY ======*/
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Tudo o que transbordou para fora do escopo da tela, oculta */
}

/*====== NAV ======*/
/*--- NAV MENU ---*/
.nav-menu-flex-container-geral {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 800px;
    /* background-color: #20253B; */
    /* border-bottom: 1px solid var(--dourado-consulttech); */
    z-index: 1;
    /* border: 2px solid green; */
}

.nav-menu-flex-container1{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* position: relative; */
    width: 100%;
}

.nav-menu-flex-subcontainer1 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: end;
    height: 110px;
    /* height: 100%; */
    width: 1100px;
    flex-wrap: wrap;
    /* border: 2px solid green; */
    margin-top: 5px;
}

.nav-menu-flex-subcontainer1 > .logo-xl-img{
    width: 40%;
}

.logo-xl-img{
    /* border: 2px solid red; */
    margin-top: 30px;
}

.phone-nav{
    display: flex;
    align-items: center;
    height: 40px;
    /* border: 2px solid red; */
    text-decoration: none;
    color: #FFF;
    font-size: 14px;
}

.phone-nav i{
    margin-right: 8px;
}

.phone-nav span:hover{
    color: var(--dourado-consulttech);
}

.nav-lista-menu {
    display: flex; 
    justify-content: space-around;
    list-style: none; 
    margin: -30px 0px 0px 0px;
    padding: 0;
    align-items: center;
    width: 50%;
    /* border: 2px solid red; */
}

.nav-lista-menu li {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 48px;
    /* letter-spacing: 2px; */
}

.nav-lista-menu > li{
    transition: 0.3s;
}

.nav-lista-menu .nav-menu-item-titulo{
    text-decoration: none;
    color: #FFF;
    /* color: var(--dourado-consulttech); */
    /* color: rgb(93, 94, 95); */
    /* color: rgb(93, 94, 95); */
    font-size: 16px;
    font-family: BwGlennSans-Medium;
    font-weight: 500;
}

.nav-lista-menu .nav-menu-item{
    text-decoration: none;
    color: var(--azul-escuro);
    /* color: rgb(93, 94, 95); */
    /* color: rgb(93, 94, 95); */
    font-size: 16px;
    font-family: BwGlennSans-Medium;
    font-weight: 500;
}

.nav-lista-menu > li > a:hover{
    /* color: rgb(98, 121, 234); */
    color: var(--dourado-consulttech);
    /* color: #FFF; */
}

.dropdown-menu{
    position: absolute;
    display: none;
    /* background-color: var(--amarelo-consulttech); */
    /* background-color: #FFF; */
    /* background: #050d2b; */
    /* background: radial-gradient(circle, rgba(5, 13, 43, 0.9) 0%, rgba(6, 12, 68, 0.98) 0%, rgba(5, 13, 43, 0.9) 100%); */
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 248, 240, 1) 50%, rgba(255, 255, 255, 0.9) 100%);
    width: 350px;
    margin: 390px 0px 0px 230px; /*Voltar para 390px 0px 0px 230px -> adicionar 2 itens ocultos (PDV e Emissor ocultados em 14/08/2025)*/
    border-radius: 0px;
    padding: 0px;
    /* border: 1px solid rgba(245, 184, 70, 0.3); */
    /* border: 1px solid red; */
}

.dropdown-menu a{
    display: block;
    color: #FFF;
}

.dropdown-menu > a{
    padding: 12px 24px;
}

.dropdown-menu a:hover{
    background-color: var(--amarelo-consulttech);
    color: #20253B;
    transition: 0.5s;
}

.dropdown:hover .dropdown-menu{
    display: block;
}

.logo-xl-img {
    margin-left: 24px;
    width: 270px;
    height: 70px;
}

.logo-sm-img {
    display: none;
    margin-left: 24px;
    width: 58px;
    height: 58px;
    /* border: 2px solid red; */
}

.nav-menu-item{
    color: #fff; /* Aplica cor branca para todas as tags a */
    text-decoration: none; /* Remove a estilização */
}

/*--- Botão Fale Conosco ---*/
.botao-fale-consultor{
    display: flex;
    justify-content: center;
    font-size: 16px;
}

.btn-dourado{
    /* background-color: var(--dourado-consulttech); */
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 8px 10px;
    transition: 0.2s;
    width: 250px;
}

.btn-dourado:hover{
    background-color: #1c9c4b; /* variação para o hover */
    /* padding: 10px 16px; */
    /* border-radius: 8px; */
}

.btn-dourado2{
    background-color: var(--dourado-consulttech);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    transition: 0.2s;
    margin: 15px;
}

.btn-dourado2:hover{
    background-color: var(--azul-hover-botao); /* variação para o hover */
}

.btn-calltoaction{
    background-color: var(--dourado2-consulttech);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 12px 0px;
    transition: 0.2s;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    width: 400px;
}

/*--- Redes Sociais 
.botoes-midias-sociais {
    list-style: none; 
    display: flex; 
    width: 100px;
    justify-content: center;
}

.imagem-midia-social {
    width: 24px;
    height: 24px;
    margin: 2px;
}

.botoes-midias-sociais > a{
    transition: 0.3s;
}

.botoes-midias-sociais > a:hover{
    background-color: var(--azul-hover-botao);
    border-radius: 6px;
    padding: 2px;
}*/

/*====== Rodapé ======*/
.rodape{
    display: flex;
    height: 410px;
    background-color: #000;
    justify-content: center;
    align-items: center;
}

.rodape-container1{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* border: 2px solid #19e906; */
    width: 1200px;
    height: 350px;
}

.rodape-subcontainer1, .rodape-subcontainer2, .rodape-subcontainer3, .rodape-subcontainer4{
    display: flex;
    flex-direction: column;
    height: 350px;
    width: 300px;
    /* border: 2px solid #E99906; */
    overflow: hidden;
}

.rodape-subcontainer1-titulo1, .rodape-subcontainer2-titulo1, .rodape-subcontainer3-titulo1{
    display: flex;
    flex-direction: column;
    align-items: start;
}

.rodape-subcontainer1-titulo2, .rodape-subcontainer2-titulo2, .rodape-subcontainer3-titulo2{
    align-items: start;
}

.rodape-titulo-text{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0px 10px 0px;
    color: #fff;
}

.container-solid-rodape{
    display: flex;
}

hr.solid-rodape {
    border-top: 2px solid var(--dourado-consulttech);
    width: 120px;
    padding: 0;
    margin: 0;
    opacity: 1;
}

hr.solid-rodape2 {
    border-top: 2px solid #707070;
    width: 60px;
    padding: 0;
    margin: 0;
    opacity: 0.5;
}

.rodape-lista{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 18px 0px 0px 0px;
    padding: 0;
    justify-content: center;
    align-items: start;
}

.rodape-lista > li > a > span{
    margin: 0px 0px 0px 10px;
}

.rodape-lista > li > span{
    margin: 0px 0px 0px 10px;
    color: #fff;
}

.rodape-lista-item{
    font-size: 16px;
    margin: 6px 0px;
}

.rodape-lista-item > a{
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.rodape-lista-item > a:hover{
    color: var(--dourado-consulttech);
}

    /* subcontainer 4 */
.rodape-subcontainer4 .container-solid-rodape{
    margin-bottom: 24px;
}

.rodape-subcontainer4 h1{
    text-align: start;
}

.rodape-subcontainer4 h2{
    font-size: 16px;
    color: #FFF;
}

.rodape-subcontainer4 iframe{
    margin-top: 24px;
}

/* --- Rodape 2 --- */
.rodape2{
    height: 180px;
    color: #fff;
}

.rodape2-subcontainer1{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.rodape2-subcontainer1-redes-sociais{
    margin: 24px 0px;
}

.rodape2-subcontainer1-redes-sociais > div > img{
    width: 32px;
    height: 32px;
    border-radius: 18px;
    transition: 0.3s;
}

.rodape2-subcontainer1-redes-sociais > div > img:hover{
    background-color: var(--azul-hover-botao);
    padding: 0px;
}

.rodape2-subcontainer2{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cor-footer-texto{
    color: #707070;
}

.rodape2-subcontainer2-Titulo1 > h1, .rodape2-subcontainer2-Titulo2 > h1, .rodape2-subcontainer2-Titulo3 > h1{
    font-size: 14px;
}

/*====== Bloco WhatsApp ======*/
/* Botão flutuante do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.2);
    background-color: #1caa4e;
}

/*====== Responsividade ======*/
/* ===> Celular/tablet deitado <=== */
@media(min-width: 801px) and (max-width: 1279px){
.nav-menu-flex-subcontainer1{
    width: 100vw;
    /* border: 2px solid red; */
}

.nav-menu-flex-subcontainer1 .logo-xl-img{ 
    width: 262px;
    height: 72px;
    /* border: 2px solid red; */
    /* margin: 0px; */
}

.nav-menu-flex-subcontainer1 .nav-lista-menu, .nav-menu-flex-subcontainer1 .phone-nav{
    margin: 0px 48px 0px 0px;
}

/* Rodape */
.rodape{
    width: 100vw;
    height: 800px;
}

.rodape-container1{
    width: 100vw;
    flex-wrap: wrap;
    height: 700px;
}

.rodape-subcontainer1, .rodape-subcontainer3{
    height: 220px;
}

.rodape-subcontainer2, .rodape-subcontainer4{
    height: 250px;
}

.rodape-subcontainer4{
    height: 330px;
}
}

/* ===> Tablet/PC <=== */
@media(max-width: 800px){
  body {
      max-width: 100%;
      overflow-x: hidden;
      overflow-y: auto;
  }

.nav-menu-flex-subcontainer1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    height: 110px;
    /* height: 100%; */
    width: 100vw;
    /* flex-wrap: nowrap; */
    /* border: 2px solid green; */
    margin: 0px;
    padding: 0px;
}

.nav-menu-flex-subcontainer1 .logo-xl-img{ 
    width: 262px;
    height: 72px;
    /* border: 2px solid red; */
    margin: 0px;
}

.nav-menu-flex-subcontainer1 .nav-lista-menu, .nav-menu-flex-subcontainer1 .phone-nav{
    margin: 0px 48px 0px 0px;
}

/* Rodape */
.rodape{
    width: 100vw;
    height: 800px;
}

.rodape-container1{
    width: 100vw;
    flex-wrap: wrap;
    height: 700px;
}

.rodape-subcontainer1, .rodape-subcontainer3{
    height: 220px;
}

.rodape-subcontainer2, .rodape-subcontainer4{
    height: 250px;
}

.rodape-subcontainer4{
    height: 330px;
}
}

/* ===> Celular <=== */
@media(max-width: 500px){
  body {
      max-width: 100%;
      overflow-x: hidden;
      overflow-y: auto;
  }

  /* Nav menu */
.nav-menu-flex-container1{
    width: 100vw;
/* border: 2px solid blue; */
}

.nav-menu-flex-subcontainer1{
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: start;
    height: 110px;
    /* height: 100%; */
    width: 100vw;
    flex-wrap: nowrap;
    /* border: 2px solid green; */
    margin: 0px;
    padding: 0px;
}

.nav-menu-flex-subcontainer1 .logo-xl-img{ 
    width: 260px;
    height: 70px;
    /* border: 2px solid red; */
    margin: 0px 0px 0px 24px;
}

.nav-lista-menu, .phone-nav{
    display: none;
}

/* Rodape */
.rodape{
    width: 100vw;
    height: 1300px;
}

.rodape-container1{
    width: 100vw;
    flex-wrap: wrap;
    height: 1200px;
}

.rodape-subcontainer1, .rodape-subcontainer3{
    height: 220px;
}

.rodape-subcontainer2, .rodape-subcontainer4{
    height: 250px;
}

.rodape-subcontainer4{
    height: 330px;
}
}
