/* ============================================================
   CSS CONSOLIDADO DO TEMA LOGITHINK
   Gerado pela concatenação dos arquivos em /css (ordem:
   base > componentes > navegacao > layout > slideshow > cards
   > home > paginas > blog > formularios > responsivo)
   Para editar, altere o arquivo-fonte correspondente e
   refaça esta concatenação, ou edite diretamente aqui.
   Mantenha os caminhos url(../assets/...) — este arquivo
   fica em /css.
   ============================================================ */


/* ============ base.css ============ */

/* Reset básico */

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  box-sizing: border-box;
}
section{
  margin-bottom: -1px;
}


/* Estilos globais */

body {
  font-family: var(--font-family-texto);
  line-height: 1.2;
  color: var(--text-color);
  margin: 0 auto;
  max-width: 100%;
  overflow-x: hidden;
}


/* Tipografia */

/* Definição dos tamanhos de fonte relativos ao tamanho base */
h1 { font-size: calc(var(--base-font-size) * 3.0); } 
h2 { font-size: calc(var(--base-font-size) * 2.5); }  
h3 { font-size: calc(var(--base-font-size) * 2.0); } 
h4 { font-size: calc(var(--base-font-size) * 1.75); }  
h5 { font-size: calc(var(--base-font-size) * 1.5); } 
h6 { font-size: calc(var(--base-font-size) * 1.25); }  
p  { font-size: calc(var(--base-font-size) * 1); }   

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-titulo);
  color: var(--title-color);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
}
p{
  margin-top: 20px;
  color: var(--text-color);
  line-height: 1.6;
}
li{
  font-size: var(--base-font-size);
}



/* ============ componentes.css ============ */

/*setas*/
.arrow-up {
  width: 0;
  height: 0;
  border-left: 6px solid transparent; /* Largura da seta */
  border-right: 6px solid transparent; /* Largura da seta */
  border-bottom: 6px solid var(--button-border); /* Cor e altura da seta */
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 6px solid transparent; /* Largura da seta */
  border-right: 6px solid transparent; /* Largura da seta */
  border-top: 6px solid var(--button-border); /* Cor e altura da seta */
}

/* botões*/

button{
background-color:var(--primary-color);
color: #fff;
padding: 15px 30px;
border: 1px solid var(--primary-color);
border-radius: 50px;
font-family: "Roboto", sans-serif;
font-weight: 400;
font-size: var(--base-font-size);
line-height: 1;
cursor: pointer;
}

button:hover{
color: var(--button-color);
background-color: #fff;
border: 1px solid var(--primary-color);
}

button.active{
background-color: var(--primary-color);
}

/* botão com borda*/

.botao-borda{
background-color: #fff;
border: 1px solid var(--secondary-color);
color: var(--secondary-color);
text-transform: none;
}

.botao-borda:hover{
border: 1px solid var(--primary-color);
background-color: transparent;
}

/* botão sublinhado*/
button.sublinhado{
  padding-left: 0;
}

.sublinhado{
  background-color: #fff;
  color: var(--primary-color);
  font-size: var(--base-font-size);
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
  border: none;
  text-transform: none;
  position: relative;
}

.sublinhado::after{
content: url('../assets/icons/icon-arrow-up.svg');
position: absolute;
top: 50%;
right: 10px; /* Ajuste a posição conforme necessário */
transform: translateY(-50%);
width: 20px; 
}

#cmplz-manage-consent .cmplz-manage-consent{
    margin: unset;
    z-index: 9998;
    color: var(--cmplz_text_color);
    background-color: var(--cmplz_banner_background_color);
    border-style: solid;
    border-color: var(--cmplz_banner_border_color);
    border-width: var(--cmplz_banner_border_width);
    border-radius: var(--cmplz_banner_border_radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    line-height: initial;
    position: fixed;
    bottom: var(--cmplz-manage-consent-offset);
    min-width: 100px;
    height: var(--cmplz-manage-consent-height);
    right: 80px;
    padding: 15px;
    cursor: pointer;
    animation: mc_slideOut 0.5s forwards;
}

.sublinhado:hover{
  background-color: transparent;
  margin-left: 0;
}

/*texto sublinhado*/
.texto-sublinhado{
background-image: linear-gradient(to right, #0D4CFC, #5880EFA1, #fff);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 2px;
}

.texto-sublinhado-escuro{
background-image: linear-gradient(to right, #0D4CFC, #5880EFA1, #D9D9D900);
background-position: bottom;
background-repeat: no-repeat;
background-size: 100% 2px;
}

.linha{
  display: flex;
  flex-direction: row;
  gap: 50px;
  
}
.coluna{
  display: flex;
  flex-direction: column;
  gap: 50px;
  
}

.container{
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}



/* ============ navegacao.css ============ */

/*menus*/
/*menu principal*/

.desktop-menu nav ul{
  background-color: #fff;
  white-space: nowrap;
  }
  
  .desktop-menu nav ul li{
  list-style: none;
  display: inline-flex;
  margin-right: 10px;
  align-items: center;
  cursor: pointer;
  }
  
  .menu-item-has-children::after {
    content: "";
    margin-left: 5px;
    border-width: 5px 5px 0 5px;
    border-style: solid;
    border-color: var(--title-color) transparent transparent transparent;
    
    }

  .desktop-menu nav a{
  color: var(--title-color);
  text-decoration: none;
  }
  
  .desktop-menu nav{
  position: relative;
  display: inline-block;
  }

  .desktop-menu nav .sub-menu{
    display: none;
  }
  
  .sub-menu{
  color: var(--title-color);
  padding: 10px 20px;
  text-decoration: none;
  line-height: 2;
  }

.sub-menu li{
  cursor: pointer;
  }

.sub-menu li:hover{
  background-color: #e2e2e4;
  }
  
  /* Show submenu on hover */
  nav.main-nav li:hover .sub-menu {
  position: absolute;
  right: 5%;
  display: flex;
  flex-direction: column;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 999999;
  top: 24px;
  height: auto;
  padding: 10px 20px;
  }


/*Principal Mobile*/

.mobile-nav{
  background-color:var(--background-color);
  text-align: right;
  padding: 30px;
  position: absolute;
  top: 2em;
  right: 0;
  z-index: 999999;
  line-height: 1.4;
  /* Estado Inicial (Escondido) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px); /* Leve deslocamento para cima */
  transition: all 0.4s ease-in-out; /* Controla a velocidade da suavidade */
}
.mobile-nav.aparece {
  /* Estado Ativo (Visível) */
  top: 5em;
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Volta para a posição original */
}

.mobile-nav ul li{
list-style: none;
}

.mobile-nav ul li{
line-height: 2;
margin: 0;
}

.mobile-nav ul li a{
text-decoration: none;
cursor: pointer;
color: var(--title-color);
margin: 0;
}

.menu-icon{
font-size: 2em;
}
.close-icon{
font-size: 2em;
}

/*footer menu*/

.bottom-menu{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  }
  
  .bottom-menu h5{
    text-align: left;
  }
  .menu-bottom-desktop{
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 30px;
  }
  
  .bottom-menu nav{
  padding-left: 0;
  text-align: left;
  
  }
  .bottom-menu nav ul{
  padding-left: 0;
  }
  .bottom-menu nav ul li a{
  color: var(--text-color);
  }
  .bottom-menu ul{
  padding-left: 0;
  text-align: left;
  }
  
  .bottom-menu ul li{
  color: var(--text-color);
  }
  
  /* bottom menu mobile*/
  .menu-bottom-mobile div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid var(--title-color);
  align-items: center;
  gap: 30px;
  /* Adicionado cursor pointer para indicar que o título também é clicável */
  cursor: pointer;
}

span.seta {
  font-size: var(--base-font-size);
  font-family: 'Roboto', sans-serif;
  /* Transição suave para caso você decida rotacionar a seta no futuro */
  transition: transform 0.3s ease;
}

.menu-bottom-mobile nav {
  /* Substituído display: none por controle de altura e opacidade */
  display: block; 
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  margin-left: 10px;
  
  /* Define a suavidade da animação */
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease, visibility 0.4s;
}

/* Classe que o JavaScript irá ativar */
.menu-bottom-mobile nav.aberto {
  max-height: 500px; /* Altura máxima para permitir a expansão */
  opacity: 1;
  visibility: visible;
  margin-top: 10px; /* Pequeno espaçamento ao abrir */
  margin-bottom: 15px;
}
  
/* === MENU-SCROLL === */

.menu-scroll {
  padding: 20px;
  margin: 0px;
  max-width: 100%;
  overflow: hidden;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}

.menu-scroll ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-scroll ul.list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 0 15px;
  overflow-x: scroll;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu-scroll ul.list::-webkit-scrollbar {
  display: none;
}

.menu-scroll ul.list.dragging {
  cursor: grabbing;
}

.menu-scroll ul li {
  list-style: none;
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-scroll ul li a {
  text-decoration: none;
  color: inherit;
}

.menu-scroll ul li a:hover,
.menu-scroll ul li.selecionado a,
.menu-scroll ul li:hover a {
  text-decoration: none;
  color: #fff;
}
.menu-scroll ul li:hover,
.menu-scroll ul li.selecionado {
  background-color: var(--primary-color);
  color: #fff;
}

/* Wrapper gerado pelo wp_nav_menu (blog) */
.menu-blog-container {
  margin-top: 20px;
}
.menu-blog-container ul li a {
  text-decoration: none;
  color: var(--title-color);
}
.menu-blog-container ul li a:hover {
  color: #fff;
}

/* Customização Soluções Home */
.solucoes .menu-scroll ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: var(--title-color);
  margin-left: 5%;
  margin-right: 5%;
  border-radius: 50px;
  flex-wrap: wrap;
}
.solucoes .menu-scroll ul.list {
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 15px;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.solucoes .menu-scroll ul li {
  border: none;
  margin: 10px;
  padding: 10px 20px;
  cursor: pointer;
}
.solucoes .menu-scroll ul li:hover {
  background-color: var(--button-color);
  border-radius: 50px;
}

/* Estado selecionado global */
li.selecionado {
  background-color: var(--button-color);
  border-radius: 50px;
  color: #fff;
}



/* ============ layout.css ============ */

/*header*/
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 90px;
  margin-top: 0;
  max-width: 1900px;
  justify-content: space-between;
  gap: 30px;
  
  }

  header#post-single, header#search-page{
    flex-direction: column;
    height: 100%;
    padding-left: 10px;
    padding-right: 0;
    align-items: start;
  }


/*footer*/
footer{
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding-top: 50px;
  padding-bottom: 50px;
  
  }
  
  .footer-content{
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 80px;
  align-items: top;
  
  }
  
  .footer-logo{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 20px;
  }
  .icones-sociais{
  display: flex;
  flex-direction: row;
  gap: 10px;
  }
  .icones-sociais a{
  width: 100%;
  }
  
  /* secao direitos do rodape*/
  .direitos{
  text-align: center;
  font-size: 14px;
  line-height: 40px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  }
  
  .direitos {
  border-top: 1px solid var(--title-color);
  width: 90%;
  }
  
  .footer-content  ul li{
  list-style: none;
  line-height: 2;
  
  }
  .footer-content  ul li a{
  color: #ccc;
  text-decoration: none;
  
  }
  .direitos p{
    font-size: 1rem;
  }
  
  .direitos p a{
  text-decoration: none;
  color: var(--hover-color);
  }
  
  .direitos ul li{
  color: var(--text-color);
  }
  
  .footer-content h1{
  margin: 0;
  font-size: calc(var(--base-font-size) * 1.25);
  color: var(--text-color);
  line-height: 1.8;
  }

/*banner fale com um especialista*/

.especialista{
  position: relative;
}
.especialista button{
  position: absolute;
  left: 20%;
  top: 50%;
}

.especialista button:hover{
  background-color: #ffff;
  border: none;
  color: var(--primary-color);
}

.geral{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 90%;
  height: 350px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  margin-bottom: 50px;
  position: relative;
}

/* especialista home*/
.especialista-home{
background: var(--imagem-especialista-home-2);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}

.especialista-home-background{
  position: relative;
  background:var(--imagem-especialista-home);
  background-position: center center;
  background-repeat: no-repeat ;
  background-size: cover ;
  height: 400px;
}

.especialista-home{
  display: flex;
  flex-direction: row;
  align-items: center;
}

/*banner especialista produtos*/
  .especialista-produtos{
  background-image: var(--imagem-especialista-produtos);
}

/*banner especialista soluções*/
  .especialista-solucoes{
    background-image: var(--imagem-especialista-solucoes);
   
}
/*banner especialista segmentos*/
.especialista-segmentos{
  background-image: url(../assets/images/especialista-segmentos.webp);
  
}



/* ============ slideshow/slideshow.css ============ */

/* ============================================================
   SLIDESHOW UNIFICADO - Core + Fade + Horizontal + Temas
   Consolidado de: core, fade, horizontal, theme-topo,
   theme-depoimentos, theme-segmentos, theme-clientes, responsive
   ============================================================ */

/* ============================================================
   CORE - Estilos Base Compartilhados
   ============================================================ */

.slideshow-container {
  position: relative;
  overflow: visible;
  width: 100%;
  min-height: 300px;
  display: block;
}

.container-slide {
  position: relative;
  padding-bottom: 30px;
}

.slideshow-container .prev,
.slideshow-container .next {
  z-index: 99;
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  border: none;
  outline: none;
}

.slideshow-container .prev { left: 0; }
.slideshow-container .next { right: 0; }

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.navegacao {
  position: relative;
  margin-top: 20px;
  text-align: center;
  z-index: 10;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s;
}

.dot.ativa, .dot:hover {
  background-color: var(--primary-color);
}

.mySlides {
  display: block;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.mySlides.ativa {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 1;
}

.slide-item {
}

/* ============================================================
   FADE - Modo de Transição Fade
   ============================================================ */

.slideshow-mode-fade .mySlides {
  display: block;
}

.legenda-slide {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
}

.legenda-slide h2 {
  color: #fff;
  text-align: left;
  max-width: 55%;
}

.legenda-slide h2 a {
  color: inherit;
  text-decoration: none;
}

.legenda-slide h2 a:hover {
  text-decoration: none;
}

.legenda-slide p {
  color: #fff;
  text-align: left;
  max-width: 55%;
}

.slideshow-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slides-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

/* ============================================================
   HORIZONTAL - Modo de Transição Horizontal
   ============================================================ */

.slider,
.slider-instancia {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
  overflow: hidden;
  font-family: sans-serif;
  touch-action: pan-y;
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slide {
  flex: 0 0 25%;
  min-width: 25%;
  box-sizing: border-box;
  padding: 10px;
}

.slide-content {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Reserva de espaço para evitar layout shift (CLS) enquanto as imagens carregam */
.slider.layout-segmentos .slide-content,
.slider.layout-parceiros .slide-content {
  aspect-ratio: 3/4;
}

.slider.layout-segmentos .slide img,
.slider.layout-parceiros .slide img {
  height: 100%;
}

#logos-clientes .slide-content {
  aspect-ratio: auto;
}

/* Reserva espaço antes de o JS montar os sliders (evita CLS de criação) */
.slider-instancia#slider-segmentos,
.slider-instancia#slider-equipe {
  min-height: min(1200px, calc((100vw - 20px) * 4 / 3 + 110px));
}

@media (min-width: 769px) {
  .slider-instancia#slider-segmentos,
  .slider-instancia#slider-equipe {
    min-height: min(620px, calc((100vw / 2 - 20px) * 4 / 3 + 110px));
  }
}

@media (min-width: 993px) {
  .slider-instancia#slider-segmentos,
  .slider-instancia#slider-equipe {
    min-height: calc((min(400px, 100vw / 4) - 20px) * 4 / 3 + 110px);
  }
}

.slider-instancia#logos-clientes {
  min-height: 150px;
}

.slide-content:hover img {
  transform: scale(1.1);
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 10px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
}

.slider .caption-white {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  color: #333;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  pointer-events: none;
}

.caption-white strong {
  font-size: 0.95rem;
  text-transform: uppercase;
  display: block;
}

.caption-white span {
  font-size: 0.75rem;
  color: #666;
  font-weight: 400;
}

.slider .prev,
.slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  font-size: 1.2rem;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
  line-height: 1;
  outline: none;
}

.slider .prev:hover,
.slider .next:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.slider .prev { left: 15px; }
.slider .next { right: 15px; }

/* ============================================================
   THEME - SEGMENTOS
   ============================================================ */

.slider.layout-segmentos .slide-content {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 23px;
}

.slider.layout-segmentos .slide-content img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slider.layout-segmentos .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  pointer-events: none;
}

.slider.layout-segmentos .slide-content:hover .caption {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

/* ============================================================
   THEME - CLIENTES (Logos) e EQUIPE
   ============================================================ */

#logos-clientes {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

#logos-clientes .slider-track {
  align-items: center;
}

#logos-clientes .slide {
  text-align: center;
  padding: 15px;
}

#logos-clientes .caption,
#logos-clientes .caption-white {
  display: none;
}

#logos-clientes .prev,
#logos-clientes .next {
  display: none;
}

#logos-clientes .slide-content {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#logos-clientes .slide img {
  max-width: 180px;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

#logos-clientes .slide img:hover {
  transform: scale(1.05);
}

#slideshow-equipe .mySlides {
  display: flex;
  flex-direction: row;
}

.equipe-img {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: visible;
}

.equipe-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 15px 20px;
  width: 85%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 5;
}

.text p {
  margin: 0;
  color: var(--text-color, #333);
  font-family: "Roboto", sans-serif;
}

.text p:first-child {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #000;
}

.text p:last-child {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   THEME - TOPO (Slide Principal)
   ============================================================ */

.slide-topo .legenda-slide {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
}

.slide-topo .legenda-slide h2 {
  color: #fff;
  text-align: left;
  max-width: 55%;
}

.slide-topo .legenda-slide p {
  color: #fff;
  text-align: left;
  max-width: 55%;
}

.slide-topo .slides-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  font-size: var(--base-font-size);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.slide-topo .slides-cta:hover {
  background-color: transparent;
  border-color: #fff;
}

@media (max-width: 768px) {
  .slide-topo .legenda-slide {
    top: 20%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .slide-topo .legenda-slide h2 {
    text-align: center;
    font-size: 1.5rem;
    max-width: 100%;
  }

  .slide-topo .legenda-slide p,
  .slide-topo .legenda-slide .slide-post-conteudo {
    max-width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .slide-topo .legenda-slide h2 {
    max-width: 50%;
    font-size: calc(var(--base-font-size)* 1.5);
  }

  .slide-topo .legenda-slide p {
    max-width: 50%;
    font-size: calc(var(--base-font-size)* 1);
  }
}

/* ============================================================
   POSIÇÃO DA LEGENDA (TOPO)
   ============================================================ */

/* --- MEIO (padrão e valores legados left/center/right) --- */

.slide-topo .align-middle-left .legenda-slide,
.slide-topo .align-left .legenda-slide {
  left: 5%;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}

.slide-topo .align-middle-left .legenda-slide h2,
.slide-topo .align-middle-left .legenda-slide p,
.slide-topo .align-middle-left .legenda-slide .slide-post-conteudo,
.slide-topo .align-left .legenda-slide h2,
.slide-topo .align-left .legenda-slide p,
.slide-topo .align-left .legenda-slide .slide-post-conteudo {
  text-align: left;
}

.slide-topo .align-middle-center .legenda-slide,
.slide-topo .align-center .legenda-slide {
  left: 50%;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}

.slide-topo .align-middle-center .legenda-slide h2,
.slide-topo .align-middle-center .legenda-slide p,
.slide-topo .align-middle-center .legenda-slide .slide-post-conteudo,
.slide-topo .align-center .legenda-slide h2,
.slide-topo .align-center .legenda-slide p,
.slide-topo .align-center .legenda-slide .slide-post-conteudo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.slide-topo .align-middle-center .legenda-slide h2,
.slide-topo .align-center .legenda-slide h2 {
  max-width: 100%;
}

.slide-topo .align-middle-right .legenda-slide,
.slide-topo .align-right .legenda-slide {
  left: auto;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

.slide-topo .align-middle-right .legenda-slide h2,
.slide-topo .align-middle-right .legenda-slide p,
.slide-topo .align-middle-right .legenda-slide .slide-post-conteudo,
.slide-topo .align-right .legenda-slide h2,
.slide-topo .align-right .legenda-slide p,
.slide-topo .align-right .legenda-slide .slide-post-conteudo {
  text-align: right;
  margin-left: auto;
}

/* --- TOPO --- */

.slide-topo .align-top-left .legenda-slide {
  top: 8%;
  left: 5%;
  right: auto;
  text-align: left;
}

.slide-topo .align-top-left .legenda-slide h2,
.slide-topo .align-top-left .legenda-slide p,
.slide-topo .align-top-left .legenda-slide .slide-post-conteudo {
  text-align: left;
}

.slide-topo .align-top-center .legenda-slide {
  top: 8%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  text-align: center;
  width: 80%;
}

.slide-topo .align-top-center .legenda-slide h2,
.slide-topo .align-top-center .legenda-slide p,
.slide-topo .align-top-center .legenda-slide .slide-post-conteudo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.slide-topo .align-top-center .legenda-slide h2 {
  max-width: 100%;
}

.slide-topo .align-top-right .legenda-slide {
  top: 8%;
  right: 5%;
  left: auto;
  text-align: right;
}

.slide-topo .align-top-right .legenda-slide h2,
.slide-topo .align-top-right .legenda-slide p,
.slide-topo .align-top-right .legenda-slide .slide-post-conteudo {
  text-align: right;
  margin-left: auto;
}

/* --- BASE --- */

.slide-topo .align-bottom-left .legenda-slide {
  bottom: 8%;
  top: auto;
  left: 5%;
  right: auto;
  transform: none;
  text-align: left;
}

.slide-topo .align-bottom-left .legenda-slide h2,
.slide-topo .align-bottom-left .legenda-slide p,
.slide-topo .align-bottom-left .legenda-slide .slide-post-conteudo {
  text-align: left;
}

.slide-topo .align-bottom-center .legenda-slide {
  bottom: 8%;
  top: auto;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  text-align: center;
  width: 80%;
}

.slide-topo .align-bottom-center .legenda-slide h2,
.slide-topo .align-bottom-center .legenda-slide p,
.slide-topo .align-bottom-center .legenda-slide .slide-post-conteudo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.slide-topo .align-bottom-center .legenda-slide h2 {
  max-width: 100%;
}

.slide-topo .align-bottom-right .legenda-slide {
  bottom: 8%;
  top: auto;
  right: 5%;
  left: auto;
  transform: none;
  text-align: right;
}

.slide-topo .align-bottom-right .legenda-slide h2,
.slide-topo .align-bottom-right .legenda-slide p,
.slide-topo .align-bottom-right .legenda-slide .slide-post-conteudo {
  text-align: right;
  margin-left: auto;
}

@media (max-width: 768px) {
  .slide-topo .legenda-slide {
    top: 20%;
    bottom: auto;
    left: 50%;
    right: auto;
    width: 90%;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .slide-topo .legenda-slide h2 {
    text-align: center;
    max-width: 100%;
  }

  .slide-topo .legenda-slide p,
  .slide-topo .legenda-slide .slide-post-conteudo {
    max-width: 100%;
    text-align: center;
  }
}

/* ============================================================
   THEME - DEPOIMENTOS / CASES
   ============================================================ */

.slides-clientes-depoimentos {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  padding: 20px 50px;
}

.slideshow-img-depoimentos {
  width: 40%;
}

.slideshow-conteudo {
  width: 60%;
}

.slideshow-conteudo h2 {
  font-size: 1.5rem;
  text-align: left;
  margin-left: 0;
}

.slideshow-conteudo p {
  font-size: 1rem;
  color: var(--text-color);
}

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

@media (max-width: 768px) {
  .slides-clientes-depoimentos {
    flex-direction: column;
    padding: 20px;
  }

  .slideshow-img-depoimentos,
  .slideshow-conteudo {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .slideshow-img-depoimentos img {
    max-height: 300px;
    width: auto;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ============================================================
   RESPONSIVO - Media Queries Gerais
   ============================================================ */

@media (max-width: 480px) {
  .slideshow-container {
    display: block;
    justify-items: center;
  }

  .legenda-slide {
    position: absolute;
    top: 20%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .legenda-slide h2 {
    text-align: center;
    font-size: 1.5rem;
    max-width: 90%;
  }

  .slide-topo .legenda-slide p {
    max-width: 90%;
    text-align: center;
    font-size: 1rem;
  }

  article.slides-clientes-depoimentos {
    flex-direction: column;
  }

  .page-cases-bg .depoimentos-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .page-cases-bg {
    flex-direction: column;
  }

  .slideshow-conteudo {
    width: 100%;
  }

  .slideshow-img-depoimentos {
    width: 100%;
    height: auto;
    justify-items: center;
  }

  .slideshow-img-depoimentos img {
    max-height: 300px;
    width: auto;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .container-slide {
    width: 100%;
  }

  .item-galeria {
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .legenda-slide {
    position: absolute;
    top: 20%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .legenda-slide h2 {
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .slide-topo .legenda-slide p {
    max-width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .slideshow-container {
    display: block;
    width: 100%;
    justify-items: center;
  }

  article.slides-clientes-depoimentos {
    flex-direction: column;
  }

  .slideshow-conteudo {
    width: 100%;
  }

  .slideshow-img-depoimentos {
    width: 100%;
    height: auto;
    justify-items: center;
  }

  .slideshow-img-depoimentos img {
    max-height: 300px;
    width: auto;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .page-cases-bg .depoimentos-card {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .page-cases-bg {
    flex-direction: column;
  }

  #slideshow-equipe-mobile img {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .slide-topo .legenda-slide h2 {
    max-width: 50%;
    font-size: calc(var(--base-font-size)* 1.5);
  }

  .slide-topo .legenda-slide p {
    max-width: 50%;
    font-size: calc(var(--base-font-size)* 1);
  }

  .page-cases-bg .depoimentos-card {
    width: 50%;
  }
}

/* Horizontal responsivo */
@media (max-width: 1023px) {
  .slide {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media (max-width: 767px) {
  .slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .slider .prev { left: 8px; }
  .slider .next { right: 8px; }

  .slider .prev,
  .slider .next {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #slideshow-equipe-mobile img {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   TOPO - Altura Fixa (imagem 100% largura, altura fixa, corte)
   ============================================================ */

#slide-principal .slideshow-img,
#slide-principal .slideshow-img img {
  height: 460px;
}

#slide-principal,
#slide-principal-mobile {
  height: 460px;
  min-height: 460px;
}

#slide-principal .mySlides,
#slide-principal .slide-item,
#slide-principal article.slides-topo {
  width: 100%;
}

#slide-principal article.slides-topo {
  padding: 0;
}

#slide-principal .slideshow-img {
  width: 100%;
}

#slide-principal .slideshow-img img {
  width: 100%;
  object-fit: cover;
}

#slide-principal .slideshow-img,
#slide-principal-mobile .slideshow-img {
  position: relative;
  z-index: 1;
}

#slide-principal .slideshow-img::after,
#slide-principal-mobile .slideshow-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  #slide-principal-mobile,
  #slide-principal-mobile .slideshow-img,
  #slide-principal-mobile .slideshow-img img {
    height: 480px;
    min-height: 480px;
  }

  #slide-principal-mobile .mySlides,
  #slide-principal-mobile .slide-item,
  #slide-principal-mobile article.slides-topo {
    width: 100%;
  }

  #slide-principal-mobile article.slides-topo {
    padding: 0;
  }

  #slide-principal-mobile .slideshow-img {
    width: 100%;
  }

  #slide-principal-mobile .slideshow-img img {
    width: 100%;
    object-fit: cover;
  }
}



/* ============ cards.css ============ */

/* cards depoimentos simples*/
.depoimentos-card{
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 20px;
  width: 50%;
  }
  
  .header-card h3{
  font-size: 24px;
  text-align: left;
  }
  .depoimentos-card p{
    font-size: 14px;
    font-weight: 400;
    margin: 20px;
    }
    
    .depoimentos-foto{
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    width: 100%;
    }
    
    .icone-seta-cima img{
    max-width: 100px;
    height: auto;
    cursor: pointer;
    }

/* cards depoimentos com acordion*/

  
  .page-cases-bg{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 5%;
  }
  
  /* O container do conteúdo começa com altura 0 e invisível */
.conteudo-expandivel {
  display: grid;
  grid-template-rows: 0fr; /* Altura zero */
  transition: grid-template-rows 0.5s ease-in-out, opacity 0.3s ease;
  opacity: 0;
  overflow: hidden;
}

/* Quando o card estiver ativo, expande para o tamanho real do conteúdo */
.depoimentos-card.active .conteudo-expandivel {
  grid-template-rows: 1fr; /* Altura automática do conteúdo */
  opacity: 1;
  padding-top: 15px; /* Espaçamento opcional quando aberto */
}

/* Garante que o conteúdo interno não seja cortado durante a animação */
.inner-content {
  min-height: 0;
}

/* Animação do Ícone (Seta) */
.icone-expandir::after {
  content: url(../assets/icons/arrow-down.webp);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimentos-card.active .icone-expandir::after {
  transform: rotate(180deg); /* Gira a seta suavemente */
}

.depoimentos-card button{
  background-color: var(--background-color);
  border: none;
}

.depoimentos-card button:hover{
  background-color: #fff;
}

/*componente da página home, soluções e produtos*/

.solucoes{
  background-color: var(--secondary-color);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-left: 5%;
  margin-right: 5%;
  text-align: center;
  color: var(--background-color);
}
.solucoes-pagina{
  background-color: transparent;
}

.solucoes h2{
  color: var(--text-color);
}

.solucoes{
padding: 5%;
margin-top: 5%;
}

#conteudo-home-menu-solucoes{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
 }

.content-box {
  display: none;
  transition: transform 0.5s ease-in-out; /* Adiciona a transição */
}

.content-box.active {
  display: block;
  transform: translateX(0); /* Posição inicial */
  background-color: var(--button-color);
}

.box{
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 20px;
  margin: 5%;
  padding-bottom: 5%;
}

.card{
  background-color: var(--background-color);
  color:var(--title-color);
  border-radius: 30px;
  padding: 30px;
  text-align: left;
}

h3.bot{
  color: #8823d7;
  font-weight: bold;
}

h3.nf{
  color: #038d8d;
  font-weight: bold;
}
h3.pay{
  color: #44bc62;
  font-weight: bold;
}
h3.consult{
  color: #e81f76;
  font-weight: bold;
}
h3.code{
  color: #ef2ac1;
  font-weight: bold;
}
h3.cloud{
 color:#5503d4;
 font-weight: bold;
}
h3.erp{
 color: #3a01fd;
font-weight: bold;
}
h3.control{
color: #894de8;
font-weight: bold;
}
h3.help{
color: #e1251b;
font-weight: bold;
}
h3.team{
color: #f69508;
font-weight: bold;
}

/* content box */
.content-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
/*linha dentro do componente*/
.solucoes-pagina,
.produtos{
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}

.menu-box{
  display: none;
  }
  
.produtos-box{
  display: flex;
  flex-direction: column;
  gap: 30px;
  }
  
  .produtos-row,
  .solucoes-row{
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
  }
  .produtos-col img{
    width: 100%;
    height: auto;
  }
  .produtos-col,
  .solucoes-col{
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
  justify-content: space-evenly;
  
  }
  
  .logo{
    width: 50%;
    display: flex;
    justify-content: flex-start;
  }
  
  .logo img{
    max-width: 100%;
  }
  
  .produtos-box p{
  text-align: left;
  
  margin-top: 20px;
  }

.produtos-box {
  padding: 20px;
  margin-bottom: 10px;
}

.produtos-box {
  transition: transform 0.5s ease-in-out; /* Adiciona a transição */
}

.produtos-box.atual {
  display: block;
  transform: translateX(0); /* Posição inicial */
}

.produtos-parallax button:hover{
background-color: transparent;
}

/*Componnente acordion*/

.acordion-row{
  display: flex;
  flex-direction: row;
  gap: 20px;
  }
  
  .acordion-col{
  display: flex;
  flex-direction: column;
  width: 50%;
  }
  
  .acordion h2{
  margin: 0;
  line-height: 1.2;
  font-size: 16px;
  color: var(--title-color);
  font-weight: bold;
  }
  .acordion p{
  margin: 0;
  
  }
  .acordion p{
  font-size: 12px;
  }
  .acordion-margin{
  margin-top: 5%;
  }
  
  .acordion{
  background-color: #ffffff;
    color: var(--title-color);
     border: 1px solid var(--button-border); 
    border-radius: 5px;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    transition: 0.4s;
    margin-bottom: 10px;
  }
  .acordion:hover{
    border: 1px solid var(--primary-color);
  }
  
  
  /* Style the acordion panel. Note: hidden by default */
  .panel {
  padding: 0 18px;
  overflow: hidden;
  }
  
  .panel {
  display: block;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  }
  
  .panel p{
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  }

  .panel p:last-child{
    margin-bottom: 20px;
  }
  
  /* add icons*/
  
  .acordion h2:after {
  content:url(../assets/icons/arrow_right_24dp_5F6368_FILL0_wght400_GRAD0_opsz24.svg); 
  color: var(--text-color);
  float: right;
  margin-left: 10px;
  }
  
  .active-panel h2:after {
  content: url(../assets/icons/arrow_drop_down_24dp_5F6368_FILL0_wght400_GRAD0_opsz24.svg); 
  float: right;
  }

  .icone-certo li {
    list-style-image: url(../assets/icons/icone-ticado.svg);
    line-height: 1.5;
    text-align: left;
    margin-left: 20px;
    
}



/* ============ home.css ============ */

/*inner pages*/

/*News*/
/* posts da página home*/
.meta-info{
  display: flex;
  flex-direction: column;
  color: var(--off-color);
  font-size: 14px;
  margin: 20px;
  }
  
  .home .news {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content:center;
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  
  .home .news .thumbnail{
  width: 100%;
  height: 250px;
  object-position: center;
  }
  
  .home .news .thumbnail img{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 250px;
  }
  
  .featured{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  }
  .featured h1{
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
  }
  
  .featured h3{
  font-size: 1.2rem;
  color: var(--hover-color);
  }
  
  .featured p:first-child{
  color: var(--hover-color);
  font-weight: bold;
  font-size: 20px;
  }
  
  .titulo-news-home{
  text-align: center;
  }
  
  .news article {
  display: flex;
  flex-direction: column;
  width: 30%;
    margin-bottom: 5%;
  }
  
  .posts-show{
    display: flex;
    flex-direction: column;
    align-items: left;
    background-color: #fff;
   border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
    height: 100%;
    width: 100%;
  }
  .posts-show a{
  text-decoration: none;
  color: #000;
  margin: 0;
  }
  
  .posts-show:hover{
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
  }
  .home .news h5 {
  color: var(--title-news-color);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  }
  
  .home .news h5:hover{
  color: var(--hover-color);
  }
  
  .home .news .format-image h5,
  .home .news .format-video h5,
  .home .news .format-standard h5 {
  background: transparent;
  display: inline-block;
  }
  
  .home .news .secondary h5 {
  font-size: 8px;
  color: var(--title-news-color);
  }
  
  .home .news .posts-show p a{
  border: 1px solid var(--hover-color);
    border-radius: 5px;
  color: var(--hover-color);
  margin: 10px 0 ;
    text-transform: uppercase;
    width: fit-content;
    text-align: center;
    padding: 2px;
    font-size: 14px;
    font-weight: 400;
  }
  
  .home .news .posts-show p a:hover{
  background-color: var(--hover-color);
  color: #fff;
  }
  
  article button {
  border: none;
  color: var(--title-news-color);
  padding: 5px 15px;
  cursor:pointer;
  border-radius: 50px;;
  }
  article button:hover{
  color:#ffffff;
  background-color: var(--title-news-color);
  }
  
  .format-video .thumbnail img{
  width:  100%;
    object-fit: cover;
  }
  
  .format-image .wp-post-image img{
  width: 100%;
    object-fit: cover;
  }
  
  .format-standard .thumbnail img{
  width: 100%;
    object-fit: cover;
  }
  
  .format-video .wp-post-image img{
    width: 100%;
    object-fit: cover;
  }
  
  .format-image .wp-post-image img{
    width: 100%;
    object-fit: cover;
  }

/*home: sessão nossas soluções aceleram o crescimento da sua empresa*/

.intro-background{
  background-image: url(../assets/images/bg-intro.webp), url(../assets/images/background-video.svg);
  background-repeat: no-repeat no-repeat;
  background-position-x: right, left;
  background-position-y: top, bottom;
  background-size: 40%, 15%;
}

.intro{
  height: 100%;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom:50px;
  padding-top: 50px;
}

.intro .linha{
  align-items: center;
  gap: 100px;
}
.intro-texto{
width: 30%;
}
.intro-video{
  width: 50%;
}

.intro-video video{
width: 100%;
height: auto;
border-radius: 30px;
}
.intro-video img{
max-width: 100%;
height: auto;
margin: auto;
}

.intro h2{
  text-align: left;
  width: 60%;
  margin-left: 0;
  margin-top: 0;
}

.intro-texto p{
  margin-top: 20px;
  margin-bottom: 20px;
}

.icones-sociais ul li{
  display: inline-block;
}

.icones-sociais ul li{
  list-style: none;
}

/* home sessão avaliação fini */

.avaliacao-fini{
  background-color: var(--background-color);
}

.depoimento-fini{
  width: 30%;
}

.depoimento-fini h2{
  text-align: left;
  font-size: calc(var(--base-font-size) * 1.5);
}

.avaliacao-fini{
  display: flex;
  flex-direction: row;
  padding: 50px 80px;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.avaliacao-fini .fundo-imagem img{
  max-width:100%;
  height: auto;
}

.fundo-imagem img {
  display: flex;
  margin: auto;
  border-radius: 30px 120px 30px 120px;
}

.fundo-imagem {
  position: relative;
  background-color: var(--button-color);
  border-radius: 30px;
  margin-left: 10%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.stars img {
  max-width: 300px;
}
.stars {
  position: absolute;
  top: 70%;
  left: 30%;
}

/*home robo*/

#robo-desktop{
  background-image: url(../assets/images/fundo_banner_numeros-scaled.webp);
  background-repeat: no-repeat;
  height: 750px;
  background-position: center;
  }
  
  #robo-desktop .linha{
    gap: 28%;
    justify-content: center;
  }
  
  .robo-card{
  background: linear-gradient(#3b3e48,#131524);
  color: #fff;
  border-radius: 30px;
  padding: 20px;
  border: 1px solid #40444c;
  margin-top: 50px;
  }
  
  .robo-card{
    position: relative;
    animation: myrobo 5s 2s infinite;
    animation-direction: alternate;
  }


  
  @keyframes myrobo {
  0%   { top: 0px; top: 0px;}
  25%  { top: 30px; top: 0px;}
  50%  {top: 30px; top: 30px;}
  75%  { top: 0px; top: 30px;}
  100% {top: 0px; top: 0px;}
  }
  
  .robo-card p{
  font-size: var(--base-font-size);
  line-height: 1;
  text-align: center;
  font-weight: 500;
  letter-spacing: -7%;
  margin: 0;
  color: #fff;
  }
  .robo-card p:first-child{
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -1.5%;
  line-height: 1;
  text-align: center;
  margin: 0;
  color: #fff;
  }
  
  #robo-mobile .robo-card p:first-child{
  font-size: 1.2rem;
  }
  
  #robo-mobile .robo-card p{
    font-size: 0.8rem;
    line-height: 1.2;
  }
  
  .robo .coluna{
  display: flex;
  flex-direction: column;
  }
  
  #robo-mobile{
  background: url(../assets/images/Logibot_Feliz.webp),url(../assets/images/Banner-5.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain, cover;
  height: 650px;
  }
  
  #robo-mobile .linha{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: top;
  gap: 5px;
  padding-top: 60px;
  }
  
  #robo-mobile .robo-card{
    margin-top: 5px;
    width: 30%;
  }



/* ============ paginas.css ============ */

/* página Produtos*/
.produtos{
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

#conteudo-menu-produtos {
  margin-top: 40px;
}

.produtos-banner-desktop{
  background: url(../assets/images/banner-produtos.webp);
  background-repeat: no-repeat;
  height: 438px;
  width: 100%;
  background-size: cover;
  background-position: center;
  }

/* produtos banner esta dificil encontrar um profissional?*/
.banner-profissionais {
  background: url(../assets/images/banner-profissionais.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.banner-profissionais{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.banner-profissionais h1 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  padding: 0;
  margin: 0;
}
.banner-profissionais p {
  color: #fff;
  text-align: center;
  padding: 0;
  margin: 0;
}
/*produtos depoimentos*/

.produtos-depoimentos{
  display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 5% 10%;
}

/* página Soluções*/
.solucoes-pagina {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

#conteudo-menu-solucoes {
  margin-top: 40px;
}

/*pagina soluções banner precisa aumentar a produtividade?*/

.solucoes-banner-desktop{
  background: url(../assets/images/banner-solucoes-desktop.webp);
  border-radius: 0;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 438px;
  margin-left: auto;
  margin-right: auto;
  }

.banner-solucoes {
  background: url(../assets/images/banner-profissionais.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.banner-solucoes{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
}
.banner-solucoes h1 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  padding: 0;
  margin: 0;
}
.banner-solucoes p {
  color: #fff;
  text-align: center;
  padding: 0;
  margin: 0;
}
/* página Segmentos */

.banner-segmentos{
  background: url(../assets/images/banner-desktop-segmentos.webp),rgba(43, 80, 142, 0.9);
  height: 438px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  }
  
  
  .banner-segmentos .overlay{
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  }
  
  .overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  }
  
  .overlay h1{
    color: #fff;
  }
  
  .bloco-cards-segmentos{
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
  }
  
  .bloco-cards-segmentos h3{
  text-align: center;
  line-height: 1;
  }
  
  .segmentos-cards{
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 30px;
  }
  
  .segmentos-card{
  flex: 1;
  padding: 30px;
  }
  
  .segmentos-card{
  background: linear-gradient(white, white) padding-box, linear-gradient(25deg, #fff,#fff,#1d4eff, #1d4eff, #1d4eff, #fff, #fff) border-box;
  border-radius: 30px;
  border: 1px solid transparent;
  position: relative;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  }
  
  .segmentos-card p:first-child{
  font-weight: bold;
  font-size: 20px;
  }
  
  #fabrica{
  background: linear-gradient(white, white) padding-box, linear-gradient(25deg, #fff,#fff,#e81f76, #e81f76, #e81f76, #fff, #fff) border-box;
  }
  
  #rpa{
  background: linear-gradient(white, white) padding-box, linear-gradient(25deg, #fff,#fff,#894de8, #894de8, #894de8, #fff, #fff) border-box;
  }
  
  #automacao-fiscal{
  background: linear-gradient(white, white) padding-box, linear-gradient(25deg, #fff,#fff,#038d8d, #038d8d, #038d8d, #fff, #fff) border-box;
  }
  
  #automacao-faturamento{
  background: linear-gradient(white, white) padding-box, linear-gradient(25deg, #fff,#fff,#44bc62, #44bc62, #44bc62, #fff, #fff) border-box;
  }
  #pessoal{
  background: linear-gradient(white, white) padding-box, linear-gradient(25deg, #fff,#fff,#f69508, #f69508, #f69508, #fff, #fff) border-box;
  }
  #ams{
  background: linear-gradient(white, white) padding-box, linear-gradient(25deg, #fff,#fff,#e1251b, #e1251b, #e1251b, #fff, #fff) border-box;
  }

  /*galeria da página segmentos*/
  
  .segmentos-sessao-galeria{
  background-color: var(--background-color);
  justify-content: center;
  text-align: center;
  padding-top: 30px;
  }
  
  .segmentos-sessao-galeria h4{
  margin: 0;
  }

.segmentos-galeria{
  display: flex;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-bottom: 20px;
}
 .item-galeria{
  width: 16%;
  height: auto;
  position: relative;
  margin: 0;
  padding: 0;
  }
  
  .item-galeria img{
  max-width: 100%;
  height: auto;
  }
  
  .segmentos-overlay{
  position: absolute; 
  bottom: 30px; 
  color: var(--background-color); 
  width: 100%;
  color: white;
  text-align: center;
  line-height: 1;
  word-wrap: wrap;
  }
  
  p.segmentos-overlay{
  font-size: 1rem;
  max-width: 95%;
  margin-bottom: auto;
  margin-right: auto;
  line-height: 1.2;
  }

  /* pagina segmentos card depoimentos*/

  .segmentos-depoimentos{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    }
/* pagina Sobre*/

.sobre-intro{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
  }
  .sobre-intro p:first-child{
    white-space: nowrap;
  }
  .sobre-banner{
    background: url(../assets/images/Banner-sobre-desktop.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 438px;
    }
    
    .sobre-banner{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    }
    .sobre-banner h2{
    color: #fff;
   
      font-weight: 400;
      line-height: 1;
    }
  .sobre .linha{
    width: 90%;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .sobre-video{
    width: 50%;
  }
  .sobre-video video{
    width: 100%;
  }
  .sobre-video img{
    max-width: 100%;
    height: auto;
    margin: auto;
  }
  .sobre-texto{
    width: 50%;
	  margin-bottom: 50px;
  }
  
  .missao h4{
  width: fit-content;
  }
  
  .missao{
  background-image: url(../assets/images/logo-cortada-fundo.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position:left bottom;
  height: 100%;
  padding: 5%;
  }
  
  #missao{
    max-width: 50%;
    margin-left: 30%;
  }
  
  #visao{
    max-width: 50%;
    margin-left: 40%;
  }
  
  #valores{
    max-width: 50%;
    margin-left: 50%;
  
  }
  .missao h4{
  margin: 0;
  text-align: left;
  }
  
  .sobre-equipe{
  background-color: var(--background-color);
  padding: 60px 0;
  }
  
  .sobre-equipe h4{
  text-align: center;
  background-image: linear-gradient(to right, #3a01fd, #fff);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 20% 2px;
    line-height: 1.2;
    margin: 0;
  };
  
  .traco-embaixo{
  background-image: linear-gradient(to right,#3a01fd,#fff);
  height: 2px;
  width: 150px;
  }
  

  .equipe-intro{
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
  }
 

/* página Trabalhe Conosco*/
.trabalhe-conosco{
  padding: 5%;
  text-align: center;
  }
  
  .trabalhe-conosco{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .trabalhe-conosco .icones-sociais{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  
  .wpcf7{
  text-align: left;
  }
  
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 input[type="url"],
  .wpcf7 textarea{
  width: 100%;
  font-size: 1rem;
    font-weight: 100;
    color: var(--text-color);
    padding: 16px 16px 16px 16px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--button-border);
    border-radius: 16px;
  }
  
  .wpcf7 input[type="submit"] {
  background: var(--button-color);
  border: 0;
  color: #ffffff;
  text-transform: uppercase;
  width: initial;
  border-radius: 50px;
  padding: 15px;
  width: 100%;
  cursor: pointer;
  margin-bottom: 30px;
  margin-top: 50px;
  }
  .wpcf7 input[type="submit"]:hover{
    background-color: var(--primary-color);
  }
  
  .form-group {
  display: flex;
  flex-wrap: wrap; /* Permite que os elementos quebrem para a próxima linha se não houver espaço suficiente */
  justify-content:left;
  gap: 60px;
  align-items: center;
  }
  
  .form-group label {
  flex-basis: 50%; /* Define a largura mínima de cada label */
  }
  
  .form-group input {
  flex-grow:1; /* Permite que os inputs ocupem o espaço restante */
  }
  .formulario{
  border-radius: 30px;
  padding: 10%;
  transition: box-shadow 0.3s ease-in-out;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  margin: 60px;
  width: 100%;
  }


/* página Contato*/
.contato{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  gap: 30px;
  margin-left: auto;
  margin-right: auto;
  }
  
  .imagem-contato{
  position: relative;
  }
  
  .whats{
  display: flex;
  flex-direction: row;
  background-color: white;
  }
  
  .whats img{
  max-width: 30%;
  }
  
  .redes-sociais{
  display: flex;
  flex-direction: row;
  background-color: white;
  border-radius: 50%;
  gap: 5px;
  height: 100px;
  }
  
  .redes-sociais img{
  max-width: 30%;
  }

  /* página Imprensa*/

.imprensa{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  }
  
  .imprensa .row{
  display: flex;
  flex-direction: row;
  margin: 0;
  gap: 50px;
  }
  
  .imprensa .col{
  display: flex;
  flex-direction: column;
  width: 50%;
  text-align: center;
  }
  
  .imprensa .col{
  background: linear-gradient(white, white) padding-box, linear-gradient(25deg, #fff,#fff,#1d4eff, #1d4eff, #1d4eff, #fff, #fff) border-box;
  border-radius: 30px;
  border: 1px solid transparent;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  padding: 5%;
  }
  
  .imprensa h3{
  text-align: center;
  width: fit-content;
  }
  
  .imprensa .col h4{
  color: var(--primary-color);
  margin: 0;
  } 
.imprensa .col a{
    text-decoration: none;
  }
  .imprensa h5{
  text-align: center;
  }
  /* página Cases*/

  .pagina-cases{
    background: url(../assets/images/banner-pagina-clientes-desktop.webp);
    background-position: top center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 667px;
    }

/* página do Blog*/

.banner-blog-desktop{
  background: url(../assets/images/Banner-Blog-desktop.webp);
  background-size: cover;
  height: 483px;
  background-repeat: no-repeat;
  position: relative;
  background-position: center;
}

.banner-blog-desktop{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.banner-blog-desktop h2{
  color: #fff;
  max-width: 80%;
  line-height: 1;
  text-align: center;
}

.blog-area{
  margin-left: 10%;
  margin-right: 10%;
}


.blog-background{
  background: url(../assets/images/bg_contato_depoimento_servicos-scaled.webp);
  background-position: center center;
  background-repeat: no-repeat;
}

.blog-news{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.blog-news article{
  width: 30%;
}

.blog-news .thumbnail {
  width: 100%;
}
.blog-news .thumbnail img{
  width: 100%;
  height: 250px;
}

.blog-news article:hover{
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
  cursor: pointer;
}

.blog-news article .thumbnail{
  height: 250px;
}
.blog-news article .thumbnail img{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog-news .posts-show p a{
border: 1px solid var(--hover-color);
border-radius: 5px;
color: var(--hover-color);
margin-top: 10px;
margin-bottom: 10px;
text-transform: uppercase;
width: 200px;
text-align: center;
font-size: 14px;
font-weight: 400;
padding: 1% 2%;
}

.blog-news .posts-show p a:hover{
background-color: var(--hover-color);
color: #fff;
}

.blog-news .posts-show a{
color: var(--title-news-color);
font-size: 1.2rem;
font-weight: 400;
text-decoration: none;
}

.blog-news .posts-show p{
line-height: 2;
margin: 0 20px;
}

.blog-news .posts-show h2{
font-size: 1.2rem;
font-weight: 400;
line-height: 1.9rem;
line-height: 1.2;
margin: 0;
text-align: left;
cursor: pointer;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

.blog-news .posts-show h2:hover{
color:var(--hover-color);
}

/* search form */
#searchform >div{
  display: flex;
  flex-direction: row;
  gap: 10px;
}
input#searchsubmit{
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}
input#searchsubmit:hover{
  background-color: var(--hover-color);
}
input#s{
  border: 1px solid var(--button-border);
  padding-left: 20px;
}

.privacidade{
  padding: 5%;
}



/* ============ blog.css ============ */

/* conteudo dos posts individuais*/

header#post-single{
  flex-direction: column;
  height: 100%;
  padding-left: 10px;
  padding-right: 0;
  align-items: start;
}
article#post{
  display: flex;
  flex-direction: column;
}

.post-single{
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Cálculos individuais com a redução aplicada */
.post-single h1 { font-size: calc(var(--base-font-size) * 2.5 * var(--reduction)); }
.post-single h2 { font-size: calc(var(--base-font-size) * 2.0 * var(--reduction)); }
.post-single h3 { font-size: calc(var(--base-font-size) * 1.8 * var(--reduction)); }
.post-single h4 { font-size: calc(var(--base-font-size) * 1.75 * var(--reduction)); }
.post-single h5 { font-size: calc(var(--base-font-size) * 1.5 * var(--reduction)); }
.post-single h6 { font-size: calc(var(--base-font-size) * 1.25 * var(--reduction)); }

.post-single h1, 
.post-single h2, 
.post-single h3, 
.post-single h4, 
.post-single h5, 
.post-single h6{
  margin-top: 20px;
  text-align: left;
  font-weight: 800;
  --reduction: 0.7; /* Fator de redução de 30% */
}

.post-single .meta-info{
  margin: 0;
 padding: 0;
 font-size: calc(var(--base-font-size) * var(--fator-reducao));
  line-height: 1.2;
  justify-content: left;
}
.post-single .meta-info a{
  color: var(--primary-color);
  text-decoration: none;
  cursor: auto;
}
.post-single .meta-info p{
  color: var(--off-color);
  line-height: 1;
  margin: 0;
  padding: 0;
}
.img-single-post{
  max-width: 50%;
  height: auto;
  float: left;
  margin-right: 30px;
}

.post-single p{
  margin-top: 20px;
}

.post-single a{
  font-weight: 300;
  color: var(--off-color);
  text-decoration: none;
}
.post-single a:hover{
  color: var(--primary-color);
}
.post-tags{
  display: none;
}
/* comments*/

.comments-area a{
  text-decoration: none;
  color: var(--primary-color);
}
.comments-area p{
  font-size: var(--fator-reducao);
}
.comments-area h2{
  font-size: calc(var(--base-font-size)* 1.5);
}

.comment-list{
  list-style-type: none;
}
.comment-list img{
  border-radius: 5px;
}
.vcard{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
#commentform input[type="submit"]{     
  color: #FFFFFF;
  padding: 15px 25px;
  display: inline-block;
  background: var(--button-color);
  margin: 20px 0 0; 
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

#commentform input[type="submit"]:hover{
  background: var( --primary-color );
  transition: .5s all;
}

#commentform input[type="text"],
#commentform textarea{
    padding: 7px 10px;
    border: 1px solid var(--button-border);
    max-width: 50%;
}

#commentform > p.comment-form-comment{
  display: flex;
  flex-direction: column;
}

/* pagina dos posts individuais*/

.single-page .single-post img{
float: left;
 max-width: 50%;
 height: auto;
 margin-right: 30px;
 overflow-x: hidden;
 
}

.next-prox{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* posts relacionados*/

.posts-relacionados {
  background-color: var(--background-color);
  padding-top: 50px;
  padding-bottom: 50px;
}


/*paginação dos posts*/

.pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
 align-items: center;
  gap: 10px;
  text-align: center;
  margin: 50px auto;
  position: relative;
  }
  .pagination .prev{
    position: relative;
    float: left;
  }
  .pagination .next{
    position: relative;
    float: right;
  }
  
  .pagination .page-numbers {
  padding: 5px 10px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  }
  
  .pagination .page-numbers:hover {
  background: var(--text-color-fundo);
  }
  
  .pagination .current {
  background: var(--title-color);
  }

  /* Resultados das pesquisas*/
  .resultados-pesquisa{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
	  padding-bottom: 5%;
  }
  .resultados-pesquisa h1{
    font-size:calc(var(--base-font-size)*1.5);
  }

  .resultados-pesquisa article{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
.resultados-pesquisa article h2{
  text-align: left;
  margin: 0;
}

  .resultados-pesquisa article h2 a{
  text-decoration: none;
  color: var(--title-news-color);
  font-size:calc(var(--base-font-size)*1.5);
  }
.resultados-pesquisa header{
  display: flex;
  flex-direction: column;
  height: min-content;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.resultados-pesquisa article .meta-info{
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.resultados-pesquisa article .meta-info p{
  font-size: var(--base-font-size)* var(--fator-reducao);
  color: var(--off-color);
  margin: 0;
}



/* ============ formularios.css ============ */

/* Formulários - Contact Form 7 e Busca */

/* search form */
#searchform >div{
  display: flex;
  flex-direction: row;
  gap: 10px;
}
input#searchsubmit{
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}
input#searchsubmit:hover{
  background-color: var(--hover-color);
}
input#s{
  border: 1px solid var(--button-border);
  padding-left: 20px;
}

/* Contact Form 7 - Trabalhe Conosco */
.wpcf7{
  text-align: left;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea{
  width: 100%;
  font-size: 1rem;
  font-weight: 100;
  color: var(--text-color);
  padding: 16px 16px 16px 16px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--button-border);
  border-radius: 16px;
}

.wpcf7 input[type="submit"] {
  background: var(--button-color);
  border: 0;
  color: #ffffff;
  text-transform: uppercase;
  width: initial;
  border-radius: 50px;
  padding: 15px;
  width: 100%;
  cursor: pointer;
  margin-bottom: 30px;
  margin-top: 50px;
}
.wpcf7 input[type="submit"]:hover{
  background-color: var(--primary-color);
}

.form-group {
  display: flex;
  flex-wrap: wrap; /* Permite que os elementos quebrem para a próxima linha se não houver espaço suficiente */
  justify-content:left;
  gap: 60px;
  align-items: center;
}

.form-group label {
  flex-basis: 50%; /* Define a largura mínima de cada label */
}

.form-group input {
  flex-grow:1; /* Permite que os inputs ocupem o espaço restante */
}
.formulario{
  border-radius: 30px;
  padding: 10%;
  transition: box-shadow 0.3s ease-in-out;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  margin: 60px;
  width: 100%;
}

.privacidade{
  padding: 5%;
}



/* ============ responsivo.css ============ */

/* Media Queries - Deve ser o último CSS a ser carregado */

/* Esconder elementos para telas pequenas */
@media(max-width: 768px){

  .desktop-menu{
    display: none;
  }
  #segmentos-desktop{
    display: none;
  }
  #robo-desktop{
    display: none;
  }
  .desktop{
    display: none;
  }
  
  .mobile-menu{
    position: relative;
    padding-right: 5%;
  }
  header{
    padding-right: 0px;
  }
  #slide-desktop{
    display: none;
  }
  }
  
  /*esconder elementos para telas grandes*/
  
  @media(min-width:769px){
  #segmentos-mobile{
    display: none;
  }
  #robo-mobile{
    display: none;
  }
  .mobile{
    display: none;
  }
  .mobile-menu{
    display: none;
  }
  #slide-mobile{
    display: none;}
  }

/*Ajustes específicos para telas muito pequenas*/
@media (max-width: 480px){

}

/* Ajustes específicos para telas pequenas (celulares)*/
@media (max-width: 480px){
 header{
  justify-content: space-between;
  gap: 10px;
 }
 .searchbox{
  display: none;
 }

 :root {
  --base-font-size: 14px; /* diminui o tamanho base */
}

.linha{
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.menu-bottom-desktop{
  display: none;
}

  .item-galeria{
    width: 100%;
  }
  .footer-content{
    flex-direction: column;
    gap: 10px;
  }
  .menus-bottom{
    width: 80%;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
    
  }
div.mobile.menus-bottom{
  display: flex;
  flex-direction: column;
  align-items: start;
}
.legenda-slide{
  position: absolute;
  top:20%;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
 }
 .legenda-slide h2{
  text-align: center;
  font-size: 1.5rem;
  max-width: 90%;
 }
 .slide-topo .legenda-slide p {
  max-width: 90%;
  text-align: center;
  font-size: 1rem;
 }
 .slideshow-container{
  display: block;
  justify-items: center;
 }
 .especialista button{
  left: 5%;
  top: 70%;
 }
  /* home*/
  .intro-texto{
    width: 90%;
    margin-left: auto;
    margin-left: auto;
  }
  .intro .linha{
    gap: 20px;
  }
  .intro h2{
    width: 90%;
  }
  .intro-video{
    width: 90%;
  }
  .intro-background{
    background-position: top right, left center;
  }
 .box{
  flex-direction: column;
 }
 .depoimento-fini{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
 }
 .fundo-imagem{
  margin: 20px;
 }
 .avaliacao-fini {
  flex-direction: column;
  padding: 0;
  justify-items: center;
 }

 .home .news{
  flex-direction: column;
 }
 .news article{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
 }
 .container-slide{
  width: 100%;
 }
 .item-galeria {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}
/* página produtos*/
.produtos-row{
 flex-direction: column;
 width: 90%;
 margin-right: auto;
 margin-left: auto;
}
.produtos-col{
  width: 100%;
 margin-right: auto;
 margin-left: auto;
}
.produtos-depoimentos{
  flex-direction: column;
  padding: 0;
  gap: 0;
}
.icone-seta-cima{
  display: none;
}
.depoimentos-card{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.acordion-row{
  flex-direction: column;
  
}
.container{
  width: 100%;
}
.acordion-col{
  width: 100%;
}
/* pagina soluções*/
.solucoes-row{
  flex-direction: column;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.solucoes-col{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
/* pagina segmentos*/
.segmentos-cards{
  flex-wrap: wrap;
}
.segmentos-depoimentos{
  padding: 0;
}
.depoimentos-foto{
  gap: 0;
}

.item-galeria{
  width: 100%;
}
/*pagina cases*/
article.slides-clientes-depoimentos{
  flex-direction: column;
}
.page-cases-bg .depoimentos-card{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.page-cases-bg{
  flex-direction: column;
}
.slideshow-conteudo{
  width: 100%;
}
.slideshow-img-depoimentos{
  width: 100%;
  height: auto;
  justify-items: center;
}
.slideshow-img-depoimentos img{
 max-height: 300px;
 width: auto;
 display: block;
 margin-right: auto;
 margin-left: auto;
}
/*pagina sobre*/
.sobre-nos{
  flex-direction: column;
}
.sobre .linha{
  gap: 20px;
}
.sobre-video,
.sobre-texto{
  width: 100%;
}
.sobre-texto{
  margin-bottom: 0;
}
.missao{
    background-position: -70% bottom;
    height: 600px;
    justify-content: flex-start;
    padding: 10%;
    align-items: flex-start;
    background-size: 63%;

}
#missao{
  max-width: 100%;
        margin-top: 0;
        margin: 0 0 10% 0;
}
#visao{
  max-width: 100%;
        margin: 0 0 10% 15%;
}
#valores{
  margin: 0 0 10% 35%;
        max-width: 80%;
}
#slideshow-equipe-mobile img {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.sobre-nos-intro{
  flex-direction: column;
  padding-top: 0;
}
/*pagina fale conosco*/
.contato{
  flex-direction: column;
}
.contato img{
  max-width: 100%;
}
/* pagina imprensa*/
.imprensa .row{
  flex-direction: column;
}
.imprensa .col{
  width: 100%;
}
/* página blog*/
.blog-area{
  margin: 5%;
}
.blog-news{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.blog-news article{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
/* post individuais*/
.post-single article{
  display: flex;
  flex-direction: column;
}
.img-single-post{
  max-width: 100%;
}
}

/*Ajustes específicos para Tables*/
@media (min-width: 480px) and (max-width:768px){
  :root {
    --base-font-size: 16px; /* aumenta o tamanho base */
  }
  .legenda-slide{
    position: absolute;
    top:20%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
   }
   .legenda-slide h2{
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
   }
   .slide-topo .legenda-slide p {
    max-width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
   }
   .slideshow-container{
    display: block;
    width: 100%;
    justify-items: center;
   }
   .avaliacao-fini{
    flex-direction: column;
   }
   .depoimento-fini{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
   }
   .fundo-imagem{
    margin: 0;
   }
   .box{
    flex-direction: column;
   }
.home .news{
  flex-direction: column;
  
}
.news article{
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.linha{
  flex-direction: column;
  gap: 20px;
}
.intro .linha{
  gap: 20px;
}
.intro h2{
  width: 90%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.intro-video{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.intro-texto{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
/*pagina produtos*/
.produtos-depoimentos{
  flex-direction: column;
}
.depoimentos-card{
  width: 100%;
}
/* pagina soluções*/
.solucoes-row{
  flex-direction: column;
}
.solucoes-col{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
/* pagina segmentos*/
.segmentos-cards{
  flex-wrap: wrap;
}
/* pagina segmentos*/
.item-galeria{
  width: 100%;
 }
 /*pagina sobre*/
 .sobre-nos{
  flex-direction: column;
}
.sobre .linha{
  gap: 20px;
}
.sobre-video,
.sobre-texto{
  width: 100%;
}
.sobre-texto{
  margin-bottom: 0;
}
.missao{
    background-position: -70% bottom;
    height: 600px;
    justify-content: flex-start;
    padding: 10%;
    align-items: flex-start;
    background-size: 63%;

}
#missao{
  max-width: 100%;
        margin-top: 0;
        margin: 0 0 10% 0;
}
#visao{
  max-width: 100%;
        margin: 0 0 10% 15%;
}
#valores{
  margin: 0 0 10% 35%;
        max-width: 80%;
}
#slideshow-equipe-mobile img {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
/*pagina cases*/
article.slides-clientes-depoimentos{
  flex-direction: column;
}
.page-cases-bg .depoimentos-card{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.page-cases-bg{
  flex-direction: column;
}
.slideshow-conteudo{
  width: 100%;
}
.slideshow-img-depoimentos{
  width: 100%;
  height: auto;
  justify-items: center;
}
.slideshow-img-depoimentos img{
 max-height: 300px;
 width: auto;
 display: block;
 margin-right: auto;
 margin-left: auto;
}
/*pagina fale conosco*/
.contato{
  flex-direction: column;
}
.contato img{
  max-width: 100%;
}
/* pagina imprensa*/
.imprensa .row{
  flex-direction: column;
}
.imprensa .col{
  width: 100%;
}
/* página blog*/
.blog-news article{
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.blog-news{
  width: 90%;
}

}

/* Desktop Médio (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --base-font-size: 18px; /* Aumenta o tamanho base */
  }
  h2{
    font-size: calc(var(--base-font-size)* 2);
  }
  .slide-topo .legenda-slide h2{
    max-width: 50%;
    font-size: calc(var(--base-font-size)* 1.5);
  }
  .slide-topo .legenda-slide p{
    max-width: 50%;
    font-size: calc(var(--base-font-size)* 1);
  }
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 30px;
    
  }
  #robo-desktop .linha{
   gap: 40%;
  }
  .item-galeria{
    width: 30%;
  }
  /*pagina cases*/
  .page-cases-bg .depoimentos-card{
    width: 50%;
  }
 
}

/* Desktop Grande (até 1440px ) */
@media (min-width: 1024px) and (max-width: 1440px){
  :root {
    --base-font-size: 20px; /* Aumenta o tamanho base */
  }
}

/* Desktop muito Grande (1440px ou mais) */
@media (min-width: 1440px) {
  :root {
    --base-font-size: 22px; /* Aumenta o tamanho base */
  }

}

