.general-container .general-footer {
  background: #3451A3 url('../../assets/img/backgrounds/footer_background.png') no-repeat center; /* Establece la imagen de fondo */
  background-size: cover;                   /* La imagen cubre todo el contenedor */
  border-width: 0px 1px 0px 1px; 
  border-style: solid; 
  border-color: #FFF #132441 #FFF #132441;
  padding: 20px 20px;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.general-footer .footer-slogan{
  display: flex;
  height: auto;
  flex-direction: row; 
  justify-content: center;
  align-items: center; 
}

.general-footer .footer-slogan .slogan{
  background: #87BBD7;
  width: 100%;
  padding: 20px 55px 20px 55px;
  color: #3451A3;
  font-weight: 700;
  border-radius: 20px;  
  text-align: center;
}

.general-footer .footer-section-buttons-icons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  padding: 20px 20px;   
}

.footer-section-buttons-icons .section-buttons-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-buttons-icons .section-button {
  background-color: transparent;
  padding: 10px 30px 10px 30px;
  color: #FFF;
  border: 2px solid #FFF;
  border-radius: 50px;
  text-decoration: none;
  width: 143px;
  text-align: center;
}

.section-buttons-icons .section-icon {
  color:#FFF;
  font-size: 30px;
  padding: 10px 10px;
}

@media (max-width: 768px) { 
  .general-footer .footer-slogan {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }

  .general-footer .footer-section-buttons-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) { 
  .general-footer .footer-slogan {
    display: flex;
    width: 100%;
    padding: 10px 25px 10px 25px;
    font-size: 14px;
  }
}