/* CONTENEDOR */
.banner-kyocera {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px;
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* IZQUIERDA */
.banner-brand {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-logo {
  width: 180px;
  margin-bottom: 20px;
}

.banner-intro {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* DERECHA */
.banner-content {
  max-width: 1200px;
  flex: 1;
}

.banner-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.banner-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: red;
  display: block;
  margin: 10px auto 0;
}

/* GRID */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* BENEFICIO */
.benefit {
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.benefit:hover {
  background: #f9f9f9;
  transform: translateY(-5px);
}

/* ICONO */
.benefit img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

/* TITULO */
.benefit h3 {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}

/* TEXTO */
.benefit p {
  font-size: 12px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .banner-kyocera {
    flex-direction: column;
    text-align: center;
  }

  .banner-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
