/* HERO */
.hero {
  background: linear-gradient(90deg, #000 60%, #111 100%);
  padding: 80px 20px;
  overflow: hidden;
}

/* CONTENIDO */
.hero .hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXTO */
.hero .hero-text {
  max-width: 550px;
}

.hero .hero-text h4 {
  color: #ccc;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero .hero-text h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .hero-text h1 span {
  color: red;
}

.hero .hero-text p {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 30px;
}

/* ICONOS */
.hero .hero-icons {
  display: flex;
  gap: 25px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.hero .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 120px;
}

.hero .icon-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;

  /* rojo */
  filter: brightness(0) saturate(100%) invert(22%) sepia(99%) saturate(7486%)
    hue-rotate(1deg) brightness(105%) contrast(119%);
}

.hero .icon-item span {
  color: #ccc;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

/* BOTONES */
.hero .hero-buttons {
  display: flex;
  gap: 15px;
}

/* BASE BOTÓN */
.hero .btn {
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* WHATSAPP */
.hero .btn-primary {
  background: red;
  color: #fff;
}

.hero .btn-primary:hover {
  background: #cc0000;
}

/* BOTÓN SECUNDARIO */
.hero .btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

.hero .btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* ICONO BOTÓN */
.hero .btn-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* IMAGEN */
.hero .hero-image img {
  width: 450px;
  max-width: 100%;
  object-fit: contain;
}

/* RESPONSIVE */
/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 50px 15px;
  }

  .hero .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  /* TEXTO */
  .hero .hero-text h4 {
    font-size: 14px;
  }

  .hero .hero-text h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero .hero-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* ICONOS */
  .hero .hero-icons {
    justify-content: center;
    gap: 15px;
  }

  .hero .icon-item {
    max-width: 90px;
  }

  .hero .icon-item img {
    width: 30px;
    height: 30px;
  }

  .hero .icon-item span {
    font-size: 9px;
  }

  /* BOTONES */
  .hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 13px;
    padding: 12px 16px;
  }

  /* IMAGEN */
  .hero .hero-image img {
    width: 280px;
  }
}
