@import url(banner.css);
*{
  box-sizing: border-box;
}
html, body{
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f9fb;
  color: #333;
}

/* evita que imagens estourem a largura no mobile */
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/*  */
a:link {
    color: #333;
	text-decoration:none;
}
a:visited {
    color: #333;
	text-decoration:none;
}
.capitalize {
    text-transform:capitalize;
}
.negrita {
   font-weight:bold;
}

.titulo-servicos {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #005f99;
}
/* Menu */
.site-nav {
    display: flex;
    gap: 1rem;
}

.site-nav a {
    text-decoration: none;
    color: #39393A;
    font-weight: 500;
}


.content {
    padding: 2rem;
}

.bloco-inicial {
    background-color: #dbe8f6;
    padding: 2rem;
    border-radius: 8px;
}

/* Começo do pre-footer     */
.pre-footer {
    display: flex;
    justify-content: space-between;
    background-color: #f0f2f8;
    padding: 2rem;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
    gap: 1rem;
}

.pre-footer .coluna {
    height: auto;
    max-height: none;
    overflow: visible; /* importante para não cortar a 4ª linha */
}

.pre-footer h3 {
    color:#39393A;
}

.coluna {
    flex: 1 1 220px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
}
.titulo-coluna {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #39393A;
    text-transform:capitalize;
}

.servicos-lista {
    margin: 0;
    padding: 0;
}

.servicos-lista li {
    border-bottom: 1px solid #ccc;
    padding: 4px 0;
    list-style: none;
}

.pre-footer form input,
.pre-footer form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pre-footer form button {
    background-color: #005f99;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 768px) {
    
    
    
    .pre-footer {
        flex-direction: column;
    }
}
/* Final do pre-footer */

/* Começo do footer */
.site-footer {
    display: flex;
    justify-content: space-between;
    background-color: #D7D9DB;
    padding: 1rem 2rem;
    border-top: 1px solid #ccc;
    font-size: 0.9rem;
}
/* Final do footer */

.mini-galeria {
    display: grid;
    grid-template-columns: repeat(3, 80px); /* 3 colunas fixas */
    /* força 4 linhas de 80px; com 12 imgs fecha certinho */
    grid-template-rows: repeat(4, 80px);
    gap: 10px;
    padding-top: .5rem;

    /* caso o pai tente “comprimir” a grade */
    align-content: start;
}

.mini-galeria img {
    width: 80px;
    height: 80px;
    display: block;           /* evita espaço de linha dos inline elements */
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ccc;
    transition: transform .2s;
}

.mini-galeria img:hover {
    transform: scale(1.05);
    border-color: #005f99;
}
/* Final da geleria do rodapé */

.servicos-colunas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    padding: 2rem 0;
}

.coluna-servico {
    flex: 1 1 30%;
    min-width: 280px;
    text-align: center;
}

.coluna-servico img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.coluna-servico h3 {
    margin: 0.5rem 0 0.2rem;
    color: #39393A;
    font-size: 1.1rem;
}

.coluna-servico p {
    font-size: 0.95rem;
    color: #444;
}
.titulo-ini {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #171818;
}
/* Final das colunas do rodapé */

/* Começo depoimentos */
.depoimentos {
  padding: 2rem 1rem;
  background-color: #f4f6fa;
  text-align: center;
}

.depoimentos h2 {
  font-size: 1.8rem;
  color: #39393A;
  margin-bottom: 1.5rem;
}

.carrossel {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.slides {
  display: none;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.slides img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.8rem;
}

.slides p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.slides strong {
  color: #005f99;
  font-size: 1rem;
}

.slides.ativo {
  display: block;
}

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #39393A;
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.anterior {
  left: -40px;
}

.proximo {
  right: -40px;
}
/* Fianal depoimentos */

/* Galeria de imagens */
.galeria {
  padding: 2rem 1rem;
  text-align: center;
}

.galeria h2 {
  color: #39393A;
  margin-bottom: 1rem;
}

.miniaturas2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.miniaturas2 img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: transform 0.2s;
}

.miniaturas2 img:hover {
  transform: scale(1.05);
}

.lightbox2 {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox2 img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.anterior, .proximo {
  position: absolute;
  top: 50%;
  color: white;
  background: rgba(0,0,0,0.5);
  border: none;
  padding: 10px;
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.anterior { left: 10px; }
.proximo { right: 10px; }
/* Final Galeria de Imagens */

/* Seções do site */
.content-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

/* #################################################################################################### */

/* Coluna principal */
.content-area .principal {
    flex: 2 1 60%;
}

/* Coluna lateral */
.content-area .sidebar {
    flex: 1 1 30%;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

/* Lista e promoção aside*/
.sidebar ul {
    list-style: none;
    padding-left: 0;
}
.sidebar ul li {
    margin-bottom: 10px;
}
.sidebar .box-promo {
    margin-top: 20px;
    background: #fff5e1;
    padding: 10px;
    border-left: 5px solid orange;
}

/* ✅ Responsivo: empilhar no mobile */
@media screen and (max-width: 768px) {
    .content-area {
        flex-direction: column;
    }
    .content-area .principal,
    .content-area .sidebar {
        flex: 1 1 100%;
    }
}

/* Caicas do servprod */
.bloco-servico {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #f0f0f0; /* cinza claro */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.bloco-servico.zebra {
    background-color: #e0e0e0; /* cinza um pouco mais escuro */
}

.bloco-servico img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.conteudo-servico {
    flex: 1;
}

.conteudo-servico h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
}

.conteudo-servico p {
    margin: 0;
    color: #555;
}

/* Responsivo */
@media screen and (max-width: 768px) {
    .bloco-servico {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bloco-servico img {
        width: 100%;
        height: auto;
    }
}


.img-flutuante {
    float: left; /* ou right, se quiser a imagem do outro lado */
    width: 180px;
    height: auto;
    margin: 0 20px 10px 0;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Responsivo: remover float em telas pequenas */
@media screen and (max-width: 600px) {
    .img-flutuante {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
    }
}

/* Formulário */
form#form-contato {
    max-width: 600px;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form#form-contato input,
form#form-contato textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

form#form-contato textarea {
    resize: vertical;
    min-height: 120px;
}

form#form-contato button {
    padding: 12px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
}

form#form-contato button:hover {
    background-color: #555;
}

.mapa-localizacao {
    margin-top: 40px;
    text-align: center;
}
/*Campo inivisível*/
.honeypot {
    display: none !important;
    visibility: hidden;
    height: 0;
    width: 0;
    position: absolute;
    left: -9999px;
}
/* Final do Formulário */
/*  */



.diferenciais {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}
.diferenciais h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
.lista-diferenciais {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.lista-diferenciais li {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}



.cta {
    background-color: #141820;
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.cta h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
.cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.btn-cta {
    background-color: #e4a68b;
    color: #141820;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s ease;
}
.btn-cta:hover {
    background-color: #d68c74;
}



.parceiros {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}
.parceiros h2 {
    font-size: 2em;
    margin-bottom: 40px;
}
.logos-parceiros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.logos-parceiros img {
    max-height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.logos-parceiros img:hover {
    opacity: 1;
}




.blog {
    padding: 60px 20px;
    background: #fafafa;
}
.blog h2 {
    text-align: center;
    margin-bottom: 40px;
}
.blog article {
    max-width: 800px;
    margin: 0 auto 30px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.blog h3 a {
    color: #141820;
    text-decoration: none;
}
.blog h3 a:hover {
    text-decoration: underline;
}


.redes-sociais-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.redes-sociais-lista li {
  margin-bottom: 8px;
}

.redes-sociais-lista a {
  color: #141820;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.redes-sociais-lista a:hover {
  color: #e4a68b;
}


/* Atividade primiroa página */
.catalogo { padding: 2rem 1rem; }
.catalogo .wrap { max-width: 1100px; margin: 0 auto; }
.catalogo h2 { font-size: 1.6rem; margin: 0 0 1rem; }

.cards {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card { border: 1px solid #e5e7eb; border-radius: 12px; background: #f8fafc;
  box-shadow: 0 1px 2px rgba(0,0,0,.04); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card__link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }

.card__media { aspect-ratio: 4 / 3; background: #eef2f7; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card__body { padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.card__title { font-size: 1rem; margin: 0; line-height: 1.3; }
.card__desc { font-size: .95rem; color: #4b5563; margin: 0; line-height: 1.5; }

.card__cta {
  margin-top: auto; display: inline-block; font-weight: 600;
  border: 1px solid #d1d5db; border-radius: 999px; padding: .5rem .75rem;
}

.card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,.08); }
.card:hover .card__cta { border-color: #9ca3af; }

.servico-rodape{
  margin-top:10px; padding-top:10px;
  border-top:1px solid #e5e7eb;
  font-weight:600;
}
.servico-rodape a{ text-decoration:none; color:#111827; }
.servico-rodape a:hover{ text-decoration:underline; }
html { scroll-behavior: smooth; } /* rolagem suave */

/* ===== PATCH: hamburger menu fix (2025-10-29) ===== */

/* ====== MENU (desktop) ====== */
/* ===== HEADER LAYOUT (logo left, menu right) ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.site-header .nav-wrap{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
}

/* logo como imagem (pode ajustar) */
.site-header .logo img{
  max-height: 44px;
  height: auto;
  display: block;
}

/* botão do menu sanduíche */
.site-header .menu-toggle{
  display: none;           /* só mostra no mobile */
  margin-left: auto;
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* menu no desktop */
.site-header .site-nav{
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.site-header .site-nav a{
  padding: .55rem .9rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #39393A;
  white-space: nowrap;
}

.site-header .site-nav a:hover{
  background: #e6ecf5;
}

.site-header .site-nav a.active{
  background: #d8e4f5;
}

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

  /* o container vira referência pro dropdown */
  .site-header .nav-wrap{
    position: relative;
  }

  .site-header .menu-toggle{
    display: block;
    margin-left: auto;
    background: none;
    border: 0;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  .site-header .site-nav{
    display: none;
    position: absolute;
    top: 100%;     /* logo abaixo do header */
    right: 0;      /* encostado à direita do header */

    flex-direction: column;
    width: min(260px, 90vw); /* nunca passa da largura da tela */
    padding: 8px;
    gap: 4px;

    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    border-radius: 10px;
    z-index: 9999;
    box-sizing: border-box;
  }

  .site-header .site-nav.ativo{
    display: flex;
  }

  .site-header .site-nav a{
    display: block;
    white-space: normal;
    padding: .8rem 1rem;
  }
}

/* Formulário */
 .contato-form { max-width:480px; margin:0 auto; background:#fff; padding:20px; border-radius:8px; }
    .contato-form h1 { margin-top:0; font-size:1.4rem; }
    .contato-form label { display:block; margin-bottom:4px; font-weight:bold; }
    .contato-form input,
    .contato-form textarea { width:100%; padding:8px; margin-bottom:12px; box-sizing:border-box; }
    .contato-form button { padding:10px 16px; border:none; cursor:pointer; font-weight:bold; }
    .btn-enviar { background:#2563eb; color:#fff; border-radius:4px; }
    .msg-retorno { margin-bottom:12px; padding:8px; border-radius:4px; font-size:.9rem; }
    .msg-ok { background:#dcfce7; color:#166534; }
    .msg-erro { background:#fee2e2; color:#991b1b; }
    /* Campo honeypot (para bots) */
    .campo-oculto { display:none; visibility:hidden; height:0; overflow:hidden; }



.coluna-servico p {
    font-size: 0.95rem;
    color: #444;
}
.titulo-ini {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #171818;
}
/* Final das colunas do rodapé */

.produto-grade {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.produto-cx {
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  padding: 10px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.produto-cx:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

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

.produto-cx h3 {
  font-size: 16px;
  margin: 10px 0;
}

.produto-cx p {
  color: #333;
}

.produto-detalhes {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.imagem-principal img {
  max-width: 300px;
  margin-bottom: 20px;
}

.miniaturas img {
  width: 80px;
  height: 80px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.miniaturas img:hover {
  transform: scale(1.1);
}

.category-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.category-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  width: 200px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.category-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.category-item h3 {
  font-size: 18px;
  margin: 10px 0;
}
.category-item a {
  text-decoration: none;
  color: #007BFF;
}

/* boxes
----------------------------------------------- */
.box {
	background:#ddd;
	margin-bottom:20px;
	padding:10px 10px 1px 10px;
}
.box h2 {
	font-size:1em;
	font-weight:normal;
	text-transform:uppercase;
	color:#fff;
	background:#333;
	margin:-10px -10px 0 -10px;
	padding:12px 12px 0px;
}
.box h2 a,
.box h2 a.visible {
	color:#fff;
	background:#333 url("../img/switch_minus.gif") 97% 50% no-repeat;
	display:block;
	padding:6px 12px;
	margin:-6px -12px;
	border:none;
}
.grid_4 .box h2 a {
	background-position: 97% 50%;
}
.grid_5 .box h2 a {
	background-position: 98% 50%;
}
.grid_12 .box h2 a {
	background-position: 99% 50%;
}


.box h2 a.hidden,
.box h2 a.hidden:hover {
	background-image: url("../img/switch_plus.gif");
}
.box h2 a:hover {
	background-color:#111;
}
form {
	overflow:hidden;
}
fieldset {
	border:1px solid #bbb;
	padding:10px;
	position:relative;
	background:#e9e9e9;
	margin-bottom:10px;
}
legend {
    font-weight: bold;
	font-size:1.5em;
	padding:.4em .8em;
	background:#fff;
	border:1px solid #bbb;
}
fieldset.login p {
	margin-bottom:1em;
	margin-top:0pt;
}
fieldset p label {
	width:98%;
}
fieldset p input {
	width:98%;
}
fieldset p select {
	width:99%;
}
fieldset.login p label {
	float:left;
	line-height:2em;
	margin-right:3%;
	text-align:right;
	width:32%;
}
fieldset.login p input {
	width:60%;
}
fieldset.login input.button {
	margin-left:35%;
}
form p.notice {
	font-weight:bold;
}
input.search.text {
	width:66%;
}
input.search.button {
	width:28%;
	margin-left:2%;
}

/* ################################################################################# */
/* ===== GALERIA DE MINIATURAS ===== */

.miniaturas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
}

.miniaturas .screenshots {
    margin: 0;
}

.miniaturas .screenshots a {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    background: #121A2B; /* opcional, combina com seu tema */
}

.miniaturas .screenshots img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.miniaturas .screenshots img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

 /* c####################################### */
/* ===== LIGHTBOX ===== */

/* LIGHTBOX – estado padrão, escondido */
.lightbox {
    display: none;               /* fica invisível por padrão */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;

    /* NÃO repita display:flex aqui */
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Quando abrir (classe .active), aí sim vira flex */
.lightbox.active {
    display: flex;
}


.lightbox.active {
    display: flex;
}

.lb-image {
    max-width: 90vw;
    max-height: 75vh;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.lb-caption {
    margin-top: 10px;
    max-width: 80vw;
    color: #f0f0f0;
    font-size: 14px;
    text-align: center;
}

/* Botão fechar (X) */

.lb-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
}

/* Navegação (setas) */

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.4);
    color: #ffffff;
    font-size: 26px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

.lb-nav:hover {
    background: rgba(0,0,0,0.7);
}

/* Responsivo */

@media (max-width: 600px) {
    .miniaturas .screenshots img {
        height: 70px;
    }

    .lb-image {
        max-width: 95vw;
        max-height: 65vh;
    }
}



