@import url(banner.css);
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fb;
    color: #333;
}
/*  */
a:link {
    color: #333;
	text-decoration:none;
}
a:visited {
    color: #333;
	text-decoration:none;
}
.capitalize {
    text-transform:capitalize;
}
.negrita {
   font-weight:bold;
}
h2, h3, h4, h5, h6 {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}
h6 {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.titulo {
font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #220411;
    padding: 1rem 2rem;
    border-bottom: 1px solid #ccc;
}
.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 */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #ffffff;
}
.menu:hover {
    background:#DFDCDC;
}
.site-nav {
    display: flex;
    gap: 1rem;
}

.site-nav a {
    text-decoration: none;
    color: #ffffff;
    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) {
    .site-nav {
        display: none;
        flex-direction: column;
        background-color: #220411;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 1rem;
        border-radius: 5px;
    }
    .site-nav.ativo {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .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é */




.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;
}




/* 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;
}

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

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

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

.lightbox {
  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;
}

.lightbox 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 */



/* Galeria do produto Overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none; /* hidden por padrão */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox.is-open { display: flex; }

/* Imagem */
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  border-radius: 6px;
}

/* Botões */
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(0,0,0,.5);
  color: #fff;
  border: 0;
  cursor: pointer;
  line-height: 1;
  border-radius: 4px;
  padding: .5rem .7rem;
  font-size: 2rem;
  user-select: none;
}

.lightbox__close { top: 12px; right: 12px; font-size: 2.2rem; }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,.15);
}

/* Evita scroll no body quando aberto */
.no-scroll { overflow: hidden; }

/* Miniaturas opcionais: cursor de zoom */
.galeria-link img { cursor: zoom-in; }






.container{max-width:980px;margin:0 auto;padding:16px}
.card{position:relative;background:#fff;border:1px solid #e9e9e9;border-radius:10px;padding:16px;box-shadow:0 6px 18px rgba(0,0,0,.04)}
h1{font-size:1.4rem;margin:.2rem 0 .6rem}
img.principal{max-width:100%;height:auto;border:1px solid #eee;border-radius:8px}
.meta{color:#555}
.section{margin-top:12px}

.badge-file{display:inline-block;margin:6px 6px 0 0;padding:6px 10px;border-radius:999px;border:1px solid #ddd;background:#f6f6f6;font-size:.95rem}
.notice{margin-top:8px;padding:10px;border:1px dashed #caa;background:#fff8e6;color:#7a5200;border-radius:8px}

/* Botão verde fixo no canto superior direito */
#curso-detalhe [data-curso-btn]{
  position:absolute;
  top:16px;
  right:16px;
  background:#28a745;
  color:#fff;
  border:2px solid #fff;
  border-radius:999px;
  padding:10px 16px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 6px 14px rgba(0,0,0,.08);
}
#curso-detalhe [data-curso-btn]:hover:not([disabled]){
  background:#218838;
}
#curso-detalhe [data-curso-btn][disabled]{
  background:#6c757d;
  border-color:#fff;
  cursor:not-allowed;
  opacity:.85;
}

/* Modal */
.modal-mask{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:999}
.modal-box{background:#fff;max-width:900px;width:90%;margin:5vh auto;border-radius:10px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.25)}
.modal-header,.modal-footer{padding:12px 16px;background:#f5f5f5}
.modal-header h3{margin:0;font-size:18px}
.modal-close{float:right;border:0;background:transparent;font-size:22px;cursor:pointer}
.resp-video{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}
.resp-video iframe{position:absolute;top:0;left:0;width:100%;height:100%}



