@charset "UTF-8";
.barra-canal {
  position: relative;
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px !important;
  /* reserva espacio para que el icono no tape contenido */
  padding: 25px;
  /* Ícono como “fondo” abajo-derecha */
  /* Ajustes responsive */
}
@media (max-width: 768px) {
  .barra-canal {
    margin-top: 0;
  }
}
.barra-canal.verde {
  background: #08c26b;
  min-height: 220px;
}
.barra-canal.verde .__btn {
  display: inline-flex;
  align-items: center;
  margin-top: clamp(12px, 2vw, 20px);
  padding: 14px 26px;
  border-radius: 999px;
  background: #0a3a8d;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  box-shadow: 0 8px 22px rgba(10, 58, 141, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.barra-canal.verde .__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(10, 58, 141, 0.3);
  opacity: 0.95;
}
.barra-canal.verde .__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(10, 58, 141, 0.25);
}
.barra-canal.rosado {
  background: #fff;
  border: 3px solid #b6267c;
  color: #b6267c;
  min-height: 220px;
}
.barra-canal.rosado .__btn {
  display: inline-flex;
  align-items: center;
  margin-top: clamp(12px, 2vw, 20px);
  padding: 14px 26px;
  border-radius: 999px;
  background: #0a3a8d;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  box-shadow: 0 8px 22px rgba(10, 58, 141, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.barra-canal.rosado .__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(10, 58, 141, 0.3);
  opacity: 0.95;
}
.barra-canal.rosado .__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(10, 58, 141, 0.25);
}
.barra-canal.verdeclaro {
  background: #E7FDF3;
  border: 2px solid #0a3a8d;
  color: #0a3a8d;
  min-height: 180px;
}
.barra-canal.verdeclaro .__btn {
  display: inline-flex;
  align-items: center;
  margin-top: clamp(12px, 2vw, 20px);
  padding: 0px 25px;
  color: #b6267c;
  text-decoration: none;
  font-weight: 400;
  font-size: 13px;
  font-weight: bold;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  background: url(arrow.svg);
  background-repeat: no-repeat;
  background-position: center left;
}
.barra-canal.verdeclaro .__btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.barra-canal.gris {
  background: #F5F8FF;
  border: 2px solid #0a3a8d;
  color: #0a3a8d;
  min-height: 180px;
}
.barra-canal.gris .__btn {
  display: inline-flex;
  align-items: center;
  margin-top: clamp(12px, 2vw, 20px);
  padding: 0px 25px;
  color: #b6267c;
  text-decoration: none;
  font-weight: 400;
  font-size: 13px;
  font-weight: bold;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  background: url(arrow.svg);
  background-repeat: no-repeat;
  background-position: center left;
}
.barra-canal.gris .__btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.barra-canal__inner {
  display: block;
  position: relative;
  z-index: 1;
}
.barra-canal__head {
  max-width: 980px;
}
.barra-canal__kicker {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 15px;
}
.barra-canal span {
  margin: 0 0 10px;
  font-weight: 300;
  font-size: 23px;
  line-height: 1.05;
}
.barra-canal__subtitle {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  opacity: 0.95;
}
.barra-canal__icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: auto;
  height: 50px;
  opacity: 0.95;
  z-index: -1;
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
  /* si usas SVG inline, estilízalo así:
  svg { width: 100%; height: auto; display: block; }
  */
}
.barra-canal__icon img {
  width: auto;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  .barra-canal {
    /* Reduce un poco el icono para que no invada */
    /* Si en móviles muy pequeños prefieres solaparlo más sin reservar tanto espacio: */
    /* padding-right: clamp(20px, 6vw, 60px);
       padding-bottom: clamp(20px, 6vw, 60px); */
  }
  .barra-canal__icon {
    width: clamp(56px, 18vw, 110px);
  }
}
