/* Classe base para o efeito Parallax */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* Overlay para garantir que o texto continue legível */
.parallax-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Ajuste a opacidade conforme necessário */
    z-index: 1;
}

/* Garante que o conteúdo da seção fique acima do overlay */
.parallax-bg .container {
    position: relative;
    z-index: 2;
}

/* IDs específicos para cada imagem de fundo */
#the-real-problem.parallax-bg { background-image: url('../img/parallax-problem.png'); }
#who-we-are.parallax-bg { background-image: url('../img/parallax-about.png'); }
#the-blueprint.parallax-bg { background-image: url('../img/parallax-blueprint.jpg'); }
#the-solyn.parallax-bg { background-image: url('../img/hero-img.jpg'); }
#about.parallax-bg { background-image: url('../img/hero-bg-2.jpg'); }

.zoom-link{
  position: relative;
  display: block;
}

.zoom-hint{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: auto;
  display: flex;
  align-items: center;
  gap: 6px;

  background: rgba(0,0,0,0.55);
  color: white;

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 500;

  transition: opacity .25s ease;
  pointer-events: none;
}

.zoom-link:hover .zoom-hint{
  opacity: 1;
}

@media (max-width: 768px) {
  #the-solyn .row {
    justify-content: center;
    text-align: center;
  }

  #the-solyn .col-md-3 {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
}

/* ===== FOOTER DESKTOP (mantém como está) ===== */
#footer .footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

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

  /* centraliza tudo */
  #footer {
    text-align: center;
  }

  /* colunas ocupam 100% */
  #footer .col-lg-4,
  #footer .col-lg-2,
  #footer .col-md-6,
  #footer .col-md-3 {
    width: 100%;
    max-width: 100%;
  }

  /* logo */
  #footer .logo {
    justify-content: center;
  }

  /* redes sociais */
  #footer .social-links {
    justify-content: center !important;
  }

  /* listas */
  #footer .footer-links {
    text-align: center;
    margin-top: 20px;
  }

  #footer .footer-links h4 {
    text-align: center;
  }

  #footer .footer-links ul {
    padding: 0;
    margin: 0 auto;
  }

  #footer .footer-links ul li {
    padding: 0;
    margin-bottom: 6px;
    list-style: none;
  }

  #footer .footer-links ul li a {
    display: inline-block;
    text-align: center;
  }

  /* parte inferior do footer */
  #footer .row.align-items-center {
    text-align: center;
  }

  #footer .col-6 {
    width: 100%;
    text-align: center !important;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {

  #footer .footer-links {
    text-align: center !important;
  }

  #footer .footer-links ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: fit-content;
  }

  #footer .footer-links ul li {
    padding-left: 0 !important;
    margin: 6px 0;
  }

  #footer .footer-links ul li a {
    display: block;
    text-align: center !important;
    width: 100%;
  }

  #footer .footer-links ul li::before {
    display: none !important;
  }

}