@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
/* font-family: 'Montserrat', sans-serif; */

html,
body {
  width: auto;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: #e6e6e6; /* fundo padrão do site */
}

/* overlay geral (não mexe no topo porque o topo tem sua própria camada) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

a{
  text-decoration: none !important;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

.center-v{
  top:50%;
  transform: translate(0,-50%);
}

/*
#unique-id {
  position: relative;
  overflow: hidden;
}

#unique-id::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

#unique-id > * {
  position: relative;
  z-index: 1;
}
*/

/*FUNDO BRANCO, PRA DEIXAR A IMAGEM TIRA ESSE E TIRA O COMENTÁRIO DE CIMA*/
#unique-id{
  background: #fff !important;
  min-height: 650px;     /* se quiser manter uma altura mínima */
  display: block;        /* ou simplesmente remova o display */
}

/* ================= LOADER ================= */
.loader {
  display: none;
  position: fixed;
  float: left;
  width: 100%;
  height: 100%;
  padding-top: 25%;
  color: #fff;
  text-align: center;
  font-size: 26px;
  background-color: RGBA(0,0,0,0.79);
  z-index: 99;
}

/* ================= LIGHTBOX MENU MOBILE ================= */
.light {
  display: none;
  position: fixed;
  float: left;
  width: 100%;
  height: 100%;
  padding: 5%;
  background-color: RGBA(0,0,0,0.79);
  z-index: 9;
}

.light .light_close{
  float: right;
  text-align: right;
  width: 100%;
  padding: 10px 0 5px 0;
}
.light .light_close a{
  font-size: 18px;
  font-weight: 600;
  color: var(--myColor-branco1);
}

.light .light_cont{
  float: left;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 5%;
}

.light .light_cont .mobile_menu {
  float: left;
  width: 100%;
}

.light .light_cont .mobile_menu h1{
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 500;
  color: var(--myColor-cinza2);
}

.light .light_cont .mobile_menu .menu_item {
  float: right;
  width: 100%;
  padding: 3% 8%;
  margin: 5px 0;
  font-size: 16px;
  font-weight: 500;
  color:  var(--myColor-verde1);
  border: solid 1px var(--myColor-verde1);
  border-radius: 22px;
  transition: all 0.5s ease;
}

.light .light_cont .mobile_menu .menu_item:hover {
  color:#fff;
  background-color:  var(--myColor-verde1);
}

/* ================= TOP / HEADER ================= */
#web_menu { display: block; }
#mobile_menu { display: none; }

.topo{
  width: 100%;
  background-color: #fff;
  height: 100px;
  position: relative;
}

.topo-cont{
  max-width: 1170px;
  margin: 0 auto;
  padding:0 15px;
  padding-top: 20px;
  position: relative;
}

.logo{
  position: absolute;
}
.logo img{
  max-height: 60px;
}

.infos{
  display:flex;
  position: absolute;
  right: 15px;
  padding-top: 10px;
}

.infos .telefone{
  display: flex;
}

.infos .email{
  padding:4px 15px;
  margin:0 15px;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}

.infos .telefone .numero{
  font-size: 2em;
  padding-top:3px;
  color: #2b3a51;
}

.ddd{
  font-size: .8em;
  text-align: center;
}

.infos .redes-sociais a{
  margin-left: 5px;
  margin-right: 5px;
}

/* ================= MENU ================= */
.head_menu {
  width: 100%;
  float: left;
}

.head_menu .cont {
  max-width: 1170px;
}

.head_menu .menu_int {
  float: left;
  width: 100%;
  background-color: rgba(81, 137, 187, 0.7);

  border-radius: 20px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.head_menu .menu_int .item {
  float: right;
  width: auto;
  padding: 18px 22px;
  color: #fff;
  transition: all 0.5s ease;
}
.head_menu .menu_int .item:hover {
  background-color: #ffca3a;
}
.head_menu .menu_int ._select {
  background-color: #ffca3a;
}

/* ================= RODAPÉ ================= */
.rodape{
  width: 100%;
  height:auto;
  padding:80px 0;
  float: left;
  background-color: #40516e;
}

.rodape .rodape-cont{
  max-width: 1170px;
  margin:0 auto;
  padding:0 15px;
  color: #fff;
  font-weight: 300;
}

.rodape .rodape-cont .contatos{
  width: 50%;
  height:auto;
  float: left;
}

.rodape .rodape-cont .titulo{
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 3em;
  float: left;
  font-weight: 300 !important;
  margin-bottom: 40px;
}

.rodape .rodape-cont .item-rodape{
  width: 100%;
  height:auto;
  float: left;
  margin-bottom: 40px;
}

.rodape .rodape-cont .item-rodape .icone{
  width: 10%;
  height:auto;
  float: left;
}

.rodape .rodape-cont .item-rodape .info-rodape{
  padding-top: 5px;
  width: 90%;
  height:auto;
  float: left;
}

.rodape .rodape-cont .item-rodape .info-rodape div{
  margin-bottom: 8px;
}

.rodape .rodape-cont .item-rodape .info-rodape div .ddd-rodape{
  font-size: 1.1em;
}

.rodape .rodape-cont .item-rodape .info-rodape div .numero-rodape{
  font-size: 1.5em;
  font-weight: normal;
  letter-spacing: 1px;
}

.rodape .rodape-cont .item-rodape .info-rodape div .email-rodape{
  font-weight: normal;
  font-style: italic;
  font-size: 1.2em;
}

.rodape .rodape-cont .item-rodape .info-rodape div .endereco-rodape{
  font-weight: 300 !important;
  font-size: 1.3em;
  line-height: 30px;
}

.rodape .rodape-cont .faleconosco{
  width: 50%;
  height:auto;
  float: left;
}

.rodape .rodape-cont .faleconosco .box-formulario{
  width: 100%;
  height:auto;
  padding:30px;
  border-radius: 15px 50px 15px 50px;
  background-color: rgba(240, 240, 240, 0.85);
  float: left;
}

.rodape .rodape-cont .faleconosco .box-formulario .form_alert {
  float: left;
  width: 100%;
}

.rodape .rodape-cont .faleconosco .box-formulario .form_alert .alerts {
  float: left;
  width: 70%;
  padding: 10px 10px 10px 0;
  color: red;
  font-weight: bold;
}

.rodape .rodape-cont .faleconosco .box-formulario form .campo{
  background-color: #fff;
  padding:15px 30px;
  float: left;
  width: 100%;
  outline: none !important;
  border:none;
  border-radius: 30px;
  margin-bottom: 20px;
}

.rodape .rodape-cont .faleconosco .box-formulario .botao-enviar {
  float: right;
  padding:10px 30px;
  border-radius: 9px 20px 9px 20px;
  background-color: #2b3a51;
  border:none;
  font-size: 1.2em;
  color: #fff;
  outline: none !important;
  text-align: center;
  cursor: pointer;
}

/* Barra Final */
.barra-final{
  width:100%;
  height:auto;
  padding:30px 0;
  float: left;
  background-color: #1f2a3b;
  text-align: center;
  color: #fff;
  font-weight: 300 !important;
}

/* ================= HERO (TOPO) - RESPONSIVO DE VERDADE ================= */
.hero-a{
  width: 100%;
  float: none !important;
  text-align: center;
  color: #fff;
  background-position: top;
  min-height: 0 !important;
  display: block;
}

/* topo do conteúdo */
#topo_div{
  width: min(94%, 1400px);
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  text-align: left;
  color: #111;
}

/* conteudo do topo centralizado verticalmente */
#topo_div.textos-hero{
  width: min(92%, 980px);
  margin: 0 auto;

  padding: clamp(40px, 6vh, 110px) 0 clamp(30px, 5vh, 70px);

  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: clamp(14px, 2vh, 28px);
  
  height: auto !important;
}

/* remove a regra antiga que causava “subir” e tamanho louco em telas grandes */
.textos-hero{
  width: 100%;
  margin: 0;
  height: auto !important;
}

/* tamanhos com clamp: controlam em qualquer monitor */
.textos-hero .texto1{
  font-size: 22px;
  font-weight: 300 !important;
  margin: 0;
  line-height: 1.15;
}

.textos-hero .texto2{
  font-size: 32px;
  font-weight: 300;
  margin: 0;
  line-height: 1.05;
}

.textos-hero .temos{
  padding: 14px 26px;
  background-color: rgb(43, 58, 81,.8);
  border-radius: 0 32px;
  font-weight: 300;
  font-size: 20px;
  max-width: 360px;
  margin: 0;
}

/* cards/box logos */
.textos-hero .smart-cont{
  width: 100%;
  max-width: 980px;
  height:auto;
  display: flex;
  margin-top: clamp(16px, 3vh, 34px);
}

.textos-hero .smart-cont .smart-info{
  background-color: #fff;
  width: 50%;
  border-radius: 18px 0 0 75px;
  padding:30px;
  color: #4d4d4d;
}

.textos-hero .smart-cont .smart-info img{
  max-height: 80px;
  margin-bottom: 20px;
}

.textos-hero .smart-cont .smart-logos{
  background-color: rgba(240, 240, 240, 0.85);
  width: 50%;
  border-radius: 0px 75px 18px 0px;
  padding: 30px;
}

.textos-hero .smart-cont .smart-logos .logo-div{
  width: 25%;
  padding:8px;
  float:left;
}

.textos-hero .smart-cont .smart-logos .logo-div img{
  width: 100%;
}

.textos-hero .texto1,
.textos-hero .texto2{
  color: #000 !important;
}

/* wrapper que será a "área branca" do conteúdo */
#unique-id .hero-conteudo{
  min-height: 520px;        /* altura do quadro branco DO CONTEÚDO */
  display: flex;
  align-items: center;       /* centraliza verticalmente */
  justify-content: center;   /* centraliza horizontalmente */
  width: 100%;
  padding: 80px 0 140px;
}

#topo_div.topo-hero{
  max-width: 1170px;
  margin: 0 auto;

  padding: 120px 15px 160px;  /* top / sides / bottom -> aumenta só o miolo branco */

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  text-align: left;
  color: #111;
}

/* coluna esquerda (frases) */
#topo_div .hero-esquerda{
  flex: 0 0 38%;
  min-width: 260px;
}

/* coluna direita (descrição) */
#topo_div .hero-direita{
  flex: 1;
  min-width: 320px;
}

#topo_div .smart-info{
  background: #fff;
  border-radius: 18px 0 0 40px;
  padding: 16px 18px;
  color: #4d4d4d;

  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

#topo_div .smart-logo img{
  width: 110px;
  height: auto;
  display: block;
}

/* títulos */
#topo_div .texto1{ font-size: 18px; margin: 0 0 6px; color:#111 !important; }
#topo_div .texto2{ font-size: 28px; margin: 0 0 10px; color:#111 !important; line-height: 1.1; }
#topo_div .temos {
  display: inline-block;
  padding: 10px 18px;
  background-color: rgba(43, 58, 81, .85);
  border-radius: 0 26px;
  font-size: 16px;
  color: #fff !important;
  margin: 0;
}

#topo_div .smart-texto p{
  margin: 0 0 8px;
  font-size: 14px;
  color:#4d4d4d;
  line-height: 1.35;
  text-align: justify;
  line-height: 1.6;
  hyphens: auto;
}

#topo_div p{
  font-size: 14px;
  margin-bottom: 8px;
}

#unique-id .hero-conteudo > #topo_div.topo-hero{
  max-width: 1170px;         /* igual ao menu */
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  text-align: left;
  color: #111;
}

/* Responsivo */
@media (max-width: 900px){

  #topo_div.topo-hero{
    flex-direction: column;   /* empilha esquerda e direita */
    align-items: center;      /* centraliza o bloco */
    gap: 25px;

    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 15px 80px;
  }

  #topo_div.topo-hero .hero-esquerda,
  #topo_div.topo-hero .hero-direita{
    width: 100%;
    min-width: 0;
    text-align: center;       /* centraliza conteúdo no mobile */
  }

}
.hero-esquerda {
  width: 45%;
}

.hero-direita {
  width: 50%;
}

.smart-info {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.smart-info img {
  max-width: 120px;
}

.texto1, .texto2, .temos {
  margin-bottom: 15px;
}

.fw-600{
  font-weight: 600 !important;
}

/* ================= CONTAINER ================= */
.cont {
  margin: 0 auto;
  max-width: 1170px;
}

/* ================= DEPOIMENTOS ================= */
.depoimentos {
  float: left;
  width: 100%;
  padding: 60px 0;
  background-color: #5189bb;
}

.depoimentos .aspa_1 {
  float: left;
  width: 100%;
  text-align: left;
}

.depoimentos h1 {
  float: left;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fff;
  font-weight: 300 !important;
  font-size: 44px;
}

.depoimentos .itens {
  float: left;
  width: 100%;
}

.depoimentos .itens .item {
  float: left;
  width: 25%;
  margin: 3.3%;
}

.depoimentos .itens .item_meio {
  padding-top: 0px;
  width: 30%;
}

.depoimentos .itens .item .info {
  float: left;
  width: 100%;
  padding: 20px 15px 15px 20px;
  background-color: #fff;
  border-radius: 34px;
  border-bottom-left-radius: 0;
}

.depoimentos .itens .item .detalhes {
  float: left;
  width: 100%;
  padding-top: 10px;
  color: #ffef3a;
  font-size: 18px;
  font-weight: bold;
}

.depoimentos .itens .item .detalhes span {
  float: left;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}

.depoimentos .aspa_2 {
  float: left;
  width: 100%;
  text-align: right;
}

/* ================= QUEM SOMOS ================= */
.quem_somos {
  float: left;
  width: 100%;
  padding: 60px 0;
}

.quem_somos h1 {
  float: left;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #295174;
  font-weight: 300 !important;
  font-size: 44px;
}

.quem_somos .bloco_1 {
  float: left;
  width: 100%;
  margin-top: 50px;
  font-size: 18px;
  font-weight: normal;
}

.quem_somos .bloco_1 img {
  float: left;
  max-width: 35%;
  margin: -50px 40px 20px 0;
}

/* ================= SEGUIMENTOS ================= */
.seguimentos {
  float: left;
  width: 100%;
  padding: 60px 0;
  background-color: rgba(240, 240, 240, 0.85);
}

.seguimentos h1 {
  float: left;
  width: 100%;
  margin: 0 0 35px 0;
  text-align: center;
  color: #40516e;
  font-weight: 300 !important;
  font-size: 44px;
}

.seguimentos .itens {
  float: left;
  width: 100%;
}

.seguimentos .itens .iten {
  float: left;
  width: 20%;
  padding: 1%;
  margin: 0 2.5%;
}

.seguimentos .itens .iten img {
  float: left;
  width: 100%;
  padding: 2.5%;
  background-color: #fff;
  border-radius: 50%;
}

.seguimentos .itens .iten h1 {
  float: left;
  width: 100%;
  margin: 10px 0 0 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* ================= SOLUÇÕES ================= */
.solucoes {
  float: left;
  width: 100%;
  padding: 60px 0;
  background-color: #fff;
}

.solucoes h1 {
  float: left;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #40516e;
  font-weight: 300 !important;
  font-size: 44px;
}

.solucoes .itens {
  float: left;
  width: 100%;
}

.solucoes .itens .iten {
  float: left;
  width: 43%;
  margin: 2.5%;
  border: solid 6px #2b3a51;
  background-color: #fff;
  border-radius: 20px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

.solucoes .itens .item_2 {
  border: solid 6px #f4f4f4;
}

.solucoes .itens .iten .avatar {
  float: left;
  width: 100%;
  text-align: center;
  padding: 25px 0;
}

.solucoes .itens .iten .titulo {
  float: left;
  width: 100%;
  text-align: center;
  font-weight: 500 !important;
  font-size: 28px;
  color: #fff;
  padding: 15px 0;
  background-color: #2b3a51;
}

.solucoes .itens .iten .titulo_2 {
  color: #2b3a51;
  background-color: #f4f4f4;
}

.solucoes .itens .iten .detalhes {
  float: left;
  width: 90%;
  text-align: center;
  font-weight: 300 !important;
  font-size: 18px;
  color: #666;
  padding: 5%;
}

/* ================= REPRESENTANTES ================= */
.representantes {
  float: left;
  width: 100%;
  padding: 60px 0;
  background-color: #666;
  background-image: url(../img/representantes_bg.png);
}

.representantes h1 {
  float: left;
  width: auto;
  margin: 0;
  padding: 10px;
  color: #40516e;
  font-weight: 300 !important;
  font-size: 38px;
  background-color: rgba(240, 240, 240, 0.85);
}

.representantes h2 {
  float: left;
  width: auto;
  margin: 0 0 0 10px;
  padding: 10px;
  color: #40516e;
  font-weight: 300 !important;
  font-size: 38px;
  background-color: #fff;
}

.representantes .itens {
  float: left;
  width: 70%;
  padding: 35px 0 0 0;
}

.representantes .itens .item {
  float: left;
  width: 30%;
  padding: 2.5%;
  margin: 2.5%;
  border-radius: 10px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  background-color: #40516e;
}

.representantes .itens .item h3 {
  float: left;
  width: 100%;
  margin: 0;
  font-weight: 500 !important;
  font-size: 14px;
  color: rgba(240, 240, 240, 0.85);
}

.representantes .itens .item h4 {
  float: left;
  width: 100%;
  margin: 8px 0;
  font-weight: 300 !important;
  font-size: 18px;
  color: #fff;
}

.representantes .itens .item h5 {
  float: left;
  width: 100%;
  margin: 0 0 8px 0;
  font-weight: 500 !important;
  font-size: 18px;
  color: #fff;
}

.representantes .itens .item a {
  float: left;
  width: 100%;
  margin: 0;
  font-weight: 500 !important;
  font-size: 10px;
  color: #fff;
}

/* ================= RESPONSIVO ================= */

/* até 780px */
@media (max-width:780px){
  .infos .telefone .numero{ display: none; }

  .rodape .rodape-cont .faleconosco{ width: 100% !important; }
  .rodape .rodape-cont .contatos{ width: 100% !important; }

  .rodape .rodape-cont .titulo{
    text-align: center;
    font-size: 1.8em;
  }

  .rodape .rodape-cont .item-rodape .info-rodape div .email-rodape{ font-size: 1em; }
  .rodape .rodape-cont .item-rodape .icone{ width: 15%; }
  .rodape .rodape-cont .item-rodape .info-rodape{ width: 85%; }
  .rodape .rodape-cont .item-rodape .info-rodape div .endereco-rodape{ font-size: 1em; }

  .barra-final .separador{ display:none !important; }
  .barra-final .site{
    width: 100%;
    float: left;
    margin-bottom: 10px;
  }
  .barra-final .direitos{
    float: left;
    width: 100%;
  }

  .rodape .rodape-cont .faleconosco .box-formulario { padding: 20px; }

  .textos-hero .smart-cont{
    width: 84%;
    margin: 0 auto;
    flex-direction: column;
  }

  .textos-hero .smart-cont .smart-info{
    width: 100%;
    border-radius: 32px 32px 0 0;
    padding: 15px;
  }

  .textos-hero .smart-cont .smart-logos{
    width: 100%;
    border-radius: 0px 0px 32px 32px;
    padding: 15px;
  }

  .head_menu .menu_int {
    border-radius: 0;
  }
}

/* até 575px */
@media (max-width:575px){
  .logo img{ max-height: 35px; }
  .infos img{ max-height:24px !important; }
  .infos .email{
    padding:0px 6px;
    margin:0 10px;
  }
  .infos .redes-sociais a{
    margin-left: 3px;
    margin-right: 3px;
  }
  .infos{ padding-top: 4px; }
  .topo-cont{ padding-top: 10px; }
  .topo{ max-height: 54px; }
}

/* mobile geral */
@media screen and (min-width: 200px) and (max-width: 640px){
  #web_menu { 
	display: none;	
	grid-row: 1;
  }
  #mobile_menu { 
    display: block; 
	grid-row: 2;
  }

  .cont { width: 96%; }

  .depoimentos { padding: 35px 0; }
  .depoimentos h1 { margin: 10px 0 0 0; }
  .depoimentos .itens .item,
  .depoimentos .itens .item_meio {
    width: 93%;
    padding-top: 10px;
  }

  .depoimentos .aspa_1 img,
  .depoimentos .aspa_2 img { width: 60px; }

  .quem_somos { background-image: none; }
  .quem_somos .bloco_1 {
    margin-top: 70px;
    padding: 10px;
  }

  .seguimentos .itens .iten {
    width: 45%;
    margin: 4% 2.5%;
  }

  .solucoes h1 {
    width: 90%;
    margin: 0 5% 25px 5%;
  }
  .solucoes .itens .iten { width: 95%; }

  .representantes h2 { margin: 10px 0 0 0; }
  .representantes .itens { width: 100%; }
  .representantes .itens .item { width: 45%; }
  .representantes .itens .item a { font-size: 8px; }
}

/* telas MUITO grandes (opcional, mas ajuda em 2K/4K) */
@media (min-width: 1600px){
  .textos-hero .texto2{ font-size: 74px; }
}