body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}




/* Links do footer */
.footer-link {
  color: #f8f9fa;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Banners: texto sobreposto */
.banner-slide {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem;
}

.banner-title {
  font-size: 2rem;
  font-weight: 700;
}

.banner-subtitle {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.btn-banner {
  width: 25%;
  min-width: 140px;
  max-width: 260px;
  text-align: center;
  display: inline-block;
  margin-left: 3%; /* margem para afastar do controle do slide */
}


@media (max-width: 768px) {
  .btn-banner {
    width: 60%;
    margin-left: 0; /* remove margem no mobile */
  }
}


/* Carousel de tecnologias */
.tech-logo {
  max-height: 80px;
  object-fit: contain;
}

#whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}


#contato-form h2 {
  font-weight: 700;
}

#contato-form .form-control {
  border-radius: 8px;
}

/**Bootstrap Custom Styles**/

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}


#tecnologiasCarousel .carousel-control-prev,
#tecnologiasCarousel .carousel-control-next {
    width: 5%; /* diminui a área clicável */
}

#tecnologiasCarousel .carousel-control-prev {
    left: -20px; /* empurra para fora */
}

#tecnologiasCarousel .carousel-control-next {
    right: -20px; /* empurra para fora */
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) brightness(0.3);
}

#lista-tecnologias .card-img-top {
    width: 100%;
    height: 180px; /* ajuste como preferir */
    object-fit: contain; /* mantém proporção sem cortar */
    background: #fff;
    padding: 10px;
}


.map-responsive {
    position: relative;
    width: 100%;
    height: 350px; /* altura ideal */
    overflow: hidden;
    border-radius: 10px; /* opcional */
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.share-box a.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 8px;
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
    transition: transform .2s ease;
}

.share-box a.share-btn:hover {
    transform: scale(1.15);
}

/* Cores oficiais */
.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000000; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.copy { background: #6c757d; }

#lista-categorias li a {
    color: #333;
    font-size: 16px;
    padding: 6px 0;
    display: block;
}

#lista-categorias li a:hover {
    color: #0d6efd;
    padding-left: 4px;
    transition: .2s;
}

.card img {
    max-height: 260px;
    object-fit: cover;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
}

.card-text {
    line-height: 1.4;
}

#lista-posts .card {
    transition: transform .2s ease;
}

#lista-posts .card:hover {
    transform: translateY(-4px);
}


.post-content img,
#conteudo img,
article img {
    max-width: 100%;
    height: auto;
    display: block;
}

.post-content table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
}

.post-content iframe {
    max-width: 100%;
}

.post-content pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.resultado-item a.resultado-titulo {
    text-decoration: none;
}

.resultado-item a.resultado-titulo:hover h5 {
    text-decoration: underline;
}

.resultado-link {
    color: #006621;
}

.resultado-descricao {
    margin-top: 4px;
}


#link-card{
    margin-left: 10px;
}