/* CONTENEDOR */
.sub-banner {
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-family: "Open Sans", sans-serif;
}

/* DATOS (NEGRO) */
.sub-banner-data {
  flex: 3;
  display: flex;
  background: #0a0a0a;
}

/* ITEM */
.sub-banner-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-right: 1px solid #1f1f1f;
}

.sub-banner-item:last-child {
  border-right: none;
}

/* ICONO */
.sub-banner-item img {
  width: 52px;
  height: 52px;

  /* rojo branding */
  filter: brightness(0) saturate(100%) invert(22%) sepia(99%) saturate(7486%)
    hue-rotate(1deg) brightness(105%) contrast(119%);
}

/* TEXTO */
.sub-text {
  display: flex;
  flex-direction: column;
}

.number {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.label {
  font-size: 12px;
  color: #aaa;
}

/* CTA ROJO */
.sub-banner-action {
  flex: 1.2;
  background: linear-gradient(135deg, #e30613, #b80000);
  color: #fff;
  padding: 25px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TITULO */
.action-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* DESCRIPCIÓN */
.action-desc {
  font-size: 12px;
  margin-bottom: 15px;
  color: #f2f2f2;
}

/* BOTON */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #fff;
  color: #e30613;

  padding: 10px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;

  transition: 0.3s;
}

/* ICONO */
.btn-whatsapp img {
  width: 16px;
  filter: brightness(0) invert(0);
}

/* HOVER */
.btn-whatsapp:hover {
  background: #f2f2f2;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sub-banner {
    flex-direction: column;
  }

  .sub-banner-data {
    flex-direction: column;
  }

  .sub-banner-item {
    border-right: none;
    border-bottom: 1px solid #222;
  }

  .sub-banner-item:last-child {
    border-bottom: none;
  }
}
