
/* Contenedor principal */
.ctn-footer-ley {
  width: 100%;
  background-color: var(--footer, #f9f9f9);
  color: var(--gray-two);
  padding: 10px 40px; 
  box-sizing: border-box;
  
  display: flex;
  justify-content: space-between;
  align-items: baseline; 
  gap: 20px;
}

/* Sección de texto */
.footer-texto-ley p {
  font-family: 'Roboto', sans-serif !important;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

/* Sección de redes sociales */
.redes-sociales-ley {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.redes-sociales-ley > p {
  font-weight: 700;
  margin: 0 0 8px 0;
}

/* Contenedor de íconos */
.redes-sociales-icons {
  display: flex;
  gap: 10px;
}

/* Estilos para íconos */
.iconos-redes-sociales {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #e9eaea;
  border: 1px solid #000;
  border-radius: 50%;
  transition: background-color 0.3s, border-color 0.3s;
}

.iconos-redes-sociales img {
  width: 24px;
  height: 24px;
}

.iconos-redes-sociales:hover {
  background-color: #E11E00;
  border-color: #E11E00;
}

.iconos-redes-sociales:hover img {
  filter: invert(1);
}

/* Media queries para responsividad */
@media (max-width: 1025px) {
  .ctn-footer-ley {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-texto-ley,
  .redes-sociales-ley {
    width: 100%;
  }
  
  .redes-sociales-ley {
    align-items: center;
    text-align: center;
  }
}