/* =========================================================
   FOOTER — BANCO SOL
   ========================================================= */

/* BASE */
.footer-sol {
  background: linear-gradient(180deg, #0c0f14 0%, #0a0d12 100%);
  color: #e6e9ef;
  font-size: 14px;
}

/* TÍTULOS */
.footer-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* TEXTO */
.footer-sol p {
  color: #b5bac4;
  line-height: 1.6;
}

.footer-sol strong {
  color: #ffffff;
}

/* LINKS */
.footer-sol a {
  color: #b5bac4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-sol a:hover {
  color: var(--sol-yellow);
}

/* LISTAS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
  font-size: 14px;
}

/* LINHAS DE APOIO */
.footer-links li a[href^="tel"],
.footer-links li a[href^="mailto"] {
  font-weight: 600;
  color: #ffffff;
}

/* NEWSLETTER */
.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #2a2f36;
  background: #0f1216;
  color: #ffffff;
}

.footer-newsletter input::placeholder {
  color: #8b9098;
}

.footer-newsletter button {
  background: var(--sol-yellow);
  color: #000;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-newsletter button:hover {
  background: #dcb000;
}

/* NOTA */
.footer-note {
  font-size: 12px;
  color: #9aa0aa;
}

.footer-note a {
  color: var(--sol-yellow);
}

/* BARRA INFERIOR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  font-size: 13px;
  color: #9aa0aa;
}

/* SOCIAL */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social span {
  margin-right: 0.5rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1f242b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--sol-yellow);
  color: #000;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 768px) {

  .footer-sol {
    text-align: left;
  }

  .footer-sol .container {
    padding: 2rem 1.25rem !important;
  }

  .footer-sol .row {
    display: block !important;
  }

  .footer-sol .row > [class^="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 2rem;
  }

  .footer-title {
    font-size: 13px;
    margin-bottom: 0.6rem;
  }

  .footer-sol p {
    font-size: 14px;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
  }

  .footer-newsletter {
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }

  .footer-note {
    font-size: 11px;
    margin-top: 0.5rem;
  }

  .footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-social {
    justify-content: flex-start;
  }
}
