//* =========================================
   BANNER SOCIAL
========================================= */
 
.banner-social {
  width: 100%;
  min-height: 51px;
 
  background: #E6F8EE;
 
  display: flex;
  align-items: center;
  justify-content: center;
 
  box-sizing: border-box;
}
 
 
/* =========================================
   CONTENIDO DEL BANNER
========================================= */
 
.banner-social__contenido {
  width: 100%;
 
  display: flex;
  align-items: center;
  justify-content: center;
 
  gap: 18px;
 
  padding: 10px 16px;
 
  box-sizing: border-box;
    background: #E6F8EE;
}
 
 
/* =========================================
   TEXTO
========================================= */
 
.banner-social__texto {
  color: #124734;
 
  font-family: Arial, sans-serif;
 
  font-size: 16px;
  font-weight: 400;
 
  line-height: 20px;
 
  text-align: center;
}
 
.banner-social__texto strong {
  font-weight: 700;
}
 
 
/* =========================================
   REDES SOCIALES
========================================= */
 
.banner-social__redes {
  display: flex;
  align-items: center;
  justify-content: center;
 
  gap: 25px;
 
  flex-shrink: 0;
}
 
 
/* =========================================
   ENLACES
========================================= */
 
.banner-social__icono {
  width: 19px;
  height: 19px;
 
  display: flex;
  align-items: center;
  justify-content: center;
 
  color: #124734;
 
  text-decoration: none;
 
  transition: opacity 0.2s ease;
}
 
 
/* =========================================
   SVG
========================================= */
 
.banner-social__icono svg {
  width: 19px;
  height: 19px;
 
  display: block;
 
  fill: #124734;
}
 
 
/* =========================================
   HOVER
========================================= */
 
.banner-social__icono:hover {
  opacity: 0.65;
}
 
 
/* =========================================
   FOCUS
========================================= */
 
.banner-social__icono:focus-visible {
  outline: 2px solid #124734;
  outline-offset: 4px;
  border-radius: 3px;
}
 
 
/* =========================================
   TABLET
========================================= */
 
@media (max-width: 767px) {
 
  .banner-social {
    min-height: 56px;
  }
 
  .banner-social__contenido {
    gap: 16px;
    padding: 10px 16px;
  }
 
  .banner-social__texto {
    font-size: 14px;
    line-height: 18px;
  }
 
  .banner-social__redes {
    gap: 18px;
  }
 
  .banner-social__icono {
    width: 18px;
    height: 18px;
  }
 
  .banner-social__icono svg {
    width: 18px;
    height: 18px;
  }
 
}
 
 
/* =========================================
   MOBILE PEQUEÑO
========================================= */
 
@media (max-width: 390px) {
 
  .banner-social__contenido {
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
 
  .banner-social__texto {
    font-size: 13px;
    line-height: 17px;
  }
 
  .banner-social__redes {
    gap: 15px;
  }
 
  .banner-social__icono {
    width: 17px;
    height: 17px;
  }
 
  .banner-social__icono svg {
    width: 17px;
    height: 17px;
  }
 
}