/* 1. Importar las fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* <weight>: Use a value from 100 to 900 */
/* <uniquifier>: Use a unique and descriptive class name */

.roboto-conab {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* <weight>: Use a value from 100 to 900 */
/* <uniquifier>: Use a unique and descriptive class name */

.raleway-conab {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}



.footer-wrapper{
  width:100%;
  background: #000000;
  /* margin-top:4rem; */
}

.footer{
  max-width:1200px;
  max-height: 100%;
  margin:0 auto;                 /* Centrado real */
  padding:3rem 1px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
  align-items:start;
}

.footer-col{
  text-align:center;             /* Centrado visual */
}

.footer-col h4{
  font-size:16px;
  margin-bottom:12px;
  letter-spacing:1px;
  color:#fff;
}

.footer-col span{
  font-size:16px;
  margin:50px 0 12px 0;
  letter-spacing:1px;
  color:#fff;
}

.footer-cred{
  text-align: center; 
  padding: 25px 0 30px 0; 
  border-top: 1px solid #d0d0d0; 
  color: #ccc; 
  font-size: 12px; 
  width: 100%; 
  background: #363636;
  color: #ccc;
}

.footer-cred span{

  display: flex;
  align-items: center; /* Centrado vertical */
  justify-content: center; /* Centrado horizontal (opcional) */
  /*height: 100vh;  Altura necesaria para ver el centrado */
}

.footer-cred a {
  color:#ccc;
  text-decoration: none;
}

.footer-cred a:hover {
  text-decoration: underline; /* Subrayado al pasar el ratón */
  color:#999;
}

.footer-cred img{
  margin-left: 10px; 
  width:50px; 
}

@media(max-width:768px){
  .footer-cred{
    width:100%; 
  }
  .img{ 
    width:30px; 
  }
  .span{
    margin-left: 37px; 
    font-size: 10px;
  }
}

.copi{
  margin-top: 25px;

}

.footer-col p,
.footer-col a{
  font-size:14px;
  line-height:1.6em;
  color:#ccc;
  text-decoration:none;
}



/* Responsive */
@media(max-width:768px){
  .footer{
    grid-template-columns:1fr;
    text-align:center;
  }
}