/*
  Footer styles
  Developed by: Atenciones Web
  https://atencionesweb.com | contacto@atencionesweb.com
*/

.site-footer{
  margin-top: 40px;
  background: #2f3237; /* gris más neutro y corporativo */
  color: #ffffff;
}


.footer-wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 26px 0;
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 20px;
}

.footer-logo{
  height: 46px;
  width:auto;
  filter: brightness(1.2);
}

.footer-title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 70px;
  height: 4px;
  background: #0b4ea2; /* acento tipo “azul” */
}

.footer-text{
  margin: 12px 0 0;
  color: #e9e9e9;
  line-height: 1.6;
  max-width: 360px;
}

.footer-links{
  display:grid;
  gap: 8px;
}

.footer-links a{
  color: rgba(255,255,255,.86);
}

.footer-links a:hover{
  color: #fff;
  text-decoration: underline;
}

.is-muted{ color: rgba(255,255,255,.55); }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 12px 0;
  width: min(1100px, 92%);
  margin: 0 auto;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

/* Responsive footer */
@media (max-width: 860px){
  .footer-wrap{
    grid-template-columns: 1fr;
  }
  .footer-title::after{
    width: 90px;
  }
}

