:root {
  --burbuja-ancho: 64px;
  --burbuja-icono-ancho: 32px;
  --burbuja-whastapp: #25D366;
  --burbuja-color: #fff;
  --burbuja-sombra: rgba(0, 0, 0, 0.1);
  --burbuja-inactivo: #ff0000;
  --chat-ancho: 360px;
  --chat-sombra: rgba(0, 0, 0, 0.1);
  --chat-cabecera: #161822;
  --chat-cabecera-texto: #fff;
  --chat-cabecera-activo: #ffe760;
  --chat-avatar-ancho: 52px;
  --chat-cuerpo-texto: #f5f6fb;
  --chat-cuerpo-texto-operador: rgba(245, 246, 251, 0.65);
  --chat-cuerpo-hora: rgba(245, 246, 251, 0.5);
  --chat-cuerpo-fondo: rgba(17, 19, 28, 0.92);
  --chat-cuerpo-dialogo: rgba(24, 27, 38, 0.95);
  --chat-cuerpo-dialogo-nombre: rgba(245, 246, 251, 0.55);
  --chat-pie: rgba(17, 19, 28, 0.98);
  --chat-boton: #ffb700;
  --chat-boton-texto: #fff;
  --mb-0-75: .75rem;
  --instagram: #d93074;
  --facebook: #3b5998;
  --twitter: #00acee;
  --linkedin: #0072b1;
  --primary-dark-color: #ffb700;
  --primary-dark-color-yellow: #ffd866;
  --primary-light-color: #fff1a3;
}

@media screen and (max-width: 420px) {
  :root {
    --chat-ancho: auto;
  }
}


.chat {
  -webkit-box-shadow: 0px 2px 8px 2px var(--chat-sombra);
          box-shadow: 0px 2px 8px 2px var(--chat-sombra);
  bottom: 110px;
  border-radius: 0.625rem;
  -webkit-clip-path: circle(0% at 100% 100%);
          clip-path: circle(0% at 100% 100%);
  position: fixed;
  right: 30px;
  -webkit-transition: -webkit-clip-path 0.5s ease-in-out;
  transition: -webkit-clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out, -webkit-clip-path 0.5s ease-in-out;
  width: var(--chat-ancho);
  z-index: 999;
}

.chat.open {
  -webkit-clip-path: circle(150% at 100% 100%);
          clip-path: circle(150% at 100% 100%);
}

.chat-cabecera {
  background-color: var(--chat-cabecera);
  border-radius: 0.625rem 0.625rem 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25rem;
  width: 100%;
}

.chat-cabecera-avatar {
  border-radius: 50%;
  position: relative;
  width: var(--chat-avatar-ancho);
}

.chat-cabecera-avatar img {
  border-radius: 50%;
  width: var(--chat-avatar-ancho);
}

.chat-cabecera-avatar:before {
  background-color: var(--chat-cabecera-activo);
  bottom: 10px;
  border-radius: 50%;
  content: '';
  height: 10px;
  position: absolute;
  right: 0;
  width: 10px;
}

.chat-cabecera-texto {
  color: var(--chat-cabecera-texto);
  margin: 0 0 0 0.625rem;
}

.chat-cabecera-texto-nombre {
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.25rem;
}

.chat-cabecera-texto-estado {
  font-size: 0.85rem;
  font-weight: normal;
  line-height: 1rem;
}

.chat-cuerpo {
  background: transparent url(../img/body-bg.png) center no-repeat;
}

.chat-cuerpo-dentro {
  padding: 1.25rem;
  background-color: var(--chat-cuerpo-fondo);
}

.chat-cuerpo-dialogo {
  background-color: var(--chat-cuerpo-dialogo);
  color: var(--chat-cuerpo-texto);
  border-radius: 0.625rem;
  display: inline-block;
  padding: 1rem 1rem 0.25rem 1rem;
  position: relative;
}

.chat-cuerpo-dialogo:before {
  border-left: 15px solid transparent;
  border-top-left-radius: 5px;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--chat-cuerpo-dialogo);
  border-bottom-left-radius: 5px;
  content: '';
  height: 0;
  left: -10px;
  top: 0;
  position: absolute;
  width: 0;
}

.chat-cuerpo-dialogo-nombre {
  color: var(--chat-cuerpo-dialogo-nombre);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0 0 0.25rem;
}

.chat-cuerpo-dialogo-saludo {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.chat-cuerpo-dialogo-saludo p {
  margin: 0 0 0.25rem;
}

.chat-cuerpo-dialogo-hora {
  color: var(--chat-cuerpo-hora);
  text-align: right;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.chat-pie {
  border-radius: 0 0 0.625rem 0.625rem;
  background-color: var(--chat-pie);
  padding: 1rem;
}

.chat-pie-boton {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--chat-boton);
  border-radius: 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #212121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.25rem;
  outline: none;
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.chat-pie-boton:hover {
  text-decoration: none;
}

.chat-pie-boton svg {
  margin-right: 0.625rem;
}

.burbuja {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--burbuja-color);
  border-radius: 50%;
  bottom: 30px;
  -webkit-box-shadow: 0px 2px 8px 2px var(--burbuja-sombra), 0px -2px 8px 2px var(--burbuja-sombra);
          box-shadow: 0px 2px 8px 2px var(--burbuja-sombra), 0px -2px 8px 2px var(--burbuja-sombra);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: var(--burbuja-ancho);
  position: fixed;
  z-index: 999;
  right: 30px;
  width: var(--burbuja-ancho);
}

.burbuja:after {
  background-color: var(--burbuja-inactivo);
  border-radius: 50%;
  content: '';
  height: 0.625rem;
  position: absolute;
  right: 0.625rem;
  top: 0;
  width: 0.625rem;
}

.burbuja-icono {
  width: var(--burbuja-icono-ancho);
  color: var(--burbuja-whastapp);
}

/* links social red */
.icon__social, .icon__social img  {
  width: 2.1rem;
  font-size: 2.1rem;
}

.icon__social {
  color: #ffb700;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon__social:hover {
  color: #ffd866;
  transform: translateY(-2px);
}

/* .yellow {
  color: var(--primary-light-color);
}

.terracota {
  color: var(--primary-dark-color);
}

.black {
  color: var(--primary-dark-color);
} */

/* Iconos sobre fondo oscuro */
/* Clases dinámicas para el sidebar */
.dark-theme {
    color:  var(--primary-dark-color-yellow) !important;
}

.light-theme {
    color:  var(--primary-dark-color) !important;
}

.dark-theme .line,
.dark-theme .double-dash {
    background: var(--primary-dark-color-yellow) !important;
}

.dark-theme .icon__social svg,
.dark-theme .icon__social i {
    color: var(--primary-dark-color-yellow)!important;
    
}

.light-theme .line,
.light-theme .double-dash {
    background: var(--primary-dark-color) !important;
}

.light-theme .icon__social svg,
.light-theme .icon__social i {
    color: var(--primary-dark-color) !important;
}



.home__social-link{
  color: rgb(0, 0, 0)
}

.home__social-link:hover {
  transform: scale(1.4);
}

.light-theme .icon__social.fb:hover i, 
.dark-theme .icon__social.fb:hover i, 
.fb:hover {
  color: var(--facebook) !important;
}

.light-theme .icon__social.ig:hover i,
.dark-theme .icon__social.ig:hover i,
.ig:hover {
  color: var(--instagram) !important;
}

.tw:hover {
  color: var(--twitter) !important;
}

.ld:hover {
  color: var(--linkedin) !important;
}

.light-theme .icon__social.tt:hover svg,
.dark-theme .icon__social.tt:hover svg,
.tt:hover {
  color: #000000 !important;
}

.container_sr {
  display: none;
}

.social_red-sidebar {
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: .5rem;
}

.social__red {
  display: none;
  padding: 10%;
}

.footer__logo .social__red,
.event__cultural-content .social__red,
.data .social__red {
  display: block;
  padding: 1rem;
}

.event__cultural-content .social__red .icon__social,
.data .social__red .icon__social {
  font-size: 3rem;
}



.double__line {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.6rem;
  margin: auto;
}

.double__line .line,
.double__line .dash, 
.double__line .double-dash {
  display: inline-block;
}

.double__line .line {
  width: 3px;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 183, 0, 0.55), rgba(212, 138, 0, 0.85));
  border-radius: 999px;
}

.double__line .dash {
  background: transparent;
}

.double__line .double-dash {
  width: 3px;
  height: 30px;
  background: rgba(255, 183, 0, 0.4);
  border-radius: 999px;
}

  /*# sourceMappingURL=main.css.map */
@media screen and (min-width: 768px) {
  .container_sr {
    display: block;
    position: fixed;
    width: 40px;
    bottom: 0%; /* Lo posiciona en la parte inferior */
    left: 0%; /* Lo posiciona en la parte izquierda */
    margin: 0;
    padding: 10px 10px 0px;
    z-index: 999;
  }
}

@media screen and (max-width: 768px) {
  .social__red {
    display: block;
  }
  .social__red .icon__social {
    color: var(--primary-light-color);
  }
}

@media screen and (max-width: 468px) {
  .social__red .icon__social{
    font-size: 1.5rem;
  }
}


@media screen and (max-width: 420px) {
  .chat {
    right: 10px;
  }
}

@media (max-width: 360px) {
  .chat {
    width: 250px;
  }
}

@media (max-width: 768px) and (max-height: 828px) {
  .social__red {
    padding: 1rem;
  }
}

