/* === CORES BASEADAS NO LOGO === */
:root {
  --azul: #0047AB;
  --vermelho: #D00000;
  --cinza: #F5F5F5;
  --texto: #212529;
}

/* === RESET E BASE === */
body {
  font-family: "Segoe UI", sans-serif;
  background-color: var(--cinza);
  color: var(--texto);
  margin: 0;
  padding: 0;
}

/* === MENU NAVBAR === */
.navbar-light {
  background-color: var(--azul);
}
.navbar-light .nav-link {
  color: white;
  font-weight: 500;
  padding: 10px 12px;
  transition: color 0.3s;
}
.navbar-light .nav-link:hover {
  color: var(--vermelho);
}

/* === BOTÕES === */
.btn-primary {
  background-color: var(--azul);
  border-color: var(--azul);
}
.btn-primary:hover {
  background-color: #003a91;
}

.btn-outline-primary {
  color: var(--azul);
  border-color: var(--azul);
}
.btn-outline-primary:hover {
  background-color: var(--azul);
  color: white;
}

.btn-danger {
  background-color: var(--vermelho);
  border-color: var(--vermelho);
}
.btn-danger:hover {
  background-color: #a40000;
}

/* === CARDS === */
.card {
  border: none;
  border-radius: 0.5rem;
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
}

/* === SEÇÕES === */
section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* === BANNERS === */
.bg-primary,
.bg-secondary,
.bg-dark {
  background-size: cover;
  background-position: center;
}

/* === RODAPÉ === */
footer {
  font-size: 14px;
  background-color: #1c1c1c;
  color: white;
}
footer h5 {
  font-size: 16px;
  font-weight: bold;
}

/* === GALERIA, PARCEIROS === */
.img-fluid {
  object-fit: cover;
}
.parceiros img {
  height: 60px;
  max-width: 100%;
  object-fit: contain;
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .navbar-nav.d-flex {
    flex-direction: column;
    gap: 0;
  }

  .modal-dialog {
    max-width: 90%;
  }

  .footer .row > div {
    margin-bottom: 20px;
  }
}


.card-servico {
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  transform: scale(0.9); /* Redução de 10% */
}

.card-servico:hover {
  background-color: #e6f0ff;
  transform: scale(0.93); /* Suave no hover */
}

.card-servico img {
  object-fit: cover;
  width: 100%;
  height: 150px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.secao-info {
  background: url('../../assets/img/bg-info.jpg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.secao-info::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* escurecer levemente */
  z-index: -1;
}

.secao-info .bg-light {
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.card-img-top {
  border-radius: 0.5rem 0.5rem 0 0;
}
/* === AJUSTES PARA LIGHTBOX FUNCIONAR === */
#lightboxOverlay {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 9999 !important;
}

#lightboxContainer {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

#lightboxImage {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}

.lb-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}



footer a {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, color 0.2s ease;
}

footer a:hover {
  color: var(--vermelho);
  transform: scale(1.05);
}
.carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
.parceiro-card {
  background: #fff;
  padding: 10px;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parceiro-card:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.parceiro-card img {
  height: 60px;
  object-fit: contain;
  max-width: 100%;
}
.parceiro-card {
  background: #fff;
  padding: 10px;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parceiro-card:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.parceiro-card img {
  height: 60px;
  object-fit: contain;
  max-width: 100%;
}
.card-servico {
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  transform: scale(0.9);
}
.card-servico:hover {
  background-color: #e6f0ff;
  transform: scale(0.93);
}
.card-servico img {
  object-fit: cover;
  width: 100%;
  height: 150px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
