.news-hero {
  margin: 28px 35px;
  padding: 45px;
  border-radius: 22px;
  background: linear-gradient(135deg, #061224, #0d3b78);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-text span {
  color: #22c55e;
  font-weight: bold;
  font-size: 14px;
}

.news-text h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: white;
  max-width: 620px;
}

.news-text strong {
  color: #22c55e;
  font-weight: 900;
}

.news-text p {
  margin-top: 16px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
}

.news-badge {
  margin-top: 18px;
  background: rgba(255,255,255,.1);
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 13px;
}

.news-img img {
  width: 300px;
}
.news-label {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.news-features {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(0, 150, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.feature strong {
  color: white;
  font-size: 14px;
}

.feature p {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
}
.feature-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.news-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.news-img img {
  width: 100%;
  max-width: 550px; /* 👈 aumentá esto */
  height: auto;
}
.news-hero {
  position: relative;
  overflow: hidden;
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 20%, rgba(34,197,94,.35) 21%, transparent 23%),
    linear-gradient(120deg, transparent 55%, rgba(14,165,233,.35) 56%, transparent 58%),
    linear-gradient(120deg, transparent 75%, rgba(34,197,94,.25) 76%, transparent 77%);
  opacity: .6;
  pointer-events: none;
  z-index: 0;
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, #22c55e 1px, transparent 2px),
    radial-gradient(circle, #38bdf8 1px, transparent 2px),
    radial-gradient(circle, #ffffff 1px, transparent 2px);
  background-size: 180px 120px, 260px 180px, 220px 150px;
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

.news-text,
.news-img {
  position: relative;
  z-index: 2;
}

.news-img img {
  animation: floatNews 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.35));
}

@keyframes floatNews {
  0% {
    transform: translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(-1deg);
  }
}
.news-date {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 150, 255, 0.6);
  color: #dbeafe;
  background: rgba(0, 0, 0, 0.2);
  font-size: 14px;
}
.news-hero,
.products-section {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
/* FIX HERO NOVEDADES MOBILE */
@media (max-width: 768px) {

  .news-hero h2 {
    font-size: 30px !important;
    line-height: 1.1 !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }

  .news-hero strong {
    display: block !important; /* 👈 baja a otra línea */
  }

  .news-hero {
    padding: 28px 18px !important;
  }

}
/* ELIMINAR IMAGEN EN NOVEDADES MOBILE */
@media (max-width: 768px) {
  .news-hero-img,
  .news-img,
  .news-hero .hero-img {
    display: none !important;
  }
}