LANDINGBLACKHAIR

export default function BlackHairLanding() {
  const sections = [
    {
      title: "HERO SECTION",
      subtitle: "ADIÓS CANAS, HOLA CABELLO NEGRO",
      text: "Resultados reales desde la primera aplicación",
      bg: "from-green-500/30 to-black",
      button: "¡ORDENA HOY!",
    },
    {
      title: "ANTES Y DESPUÉS",
      subtitle: "MIRA EL CAMBIO",
      text: "Resultados visibles en minutos",
      bg: "from-green-400/20 to-black",
    },
    {
      title: "BENEFICIOS",
      subtitle: "¿POR QUÉ TODOS LO ESTÁN COMPRANDO?",
      text: "✔ Cubre canas\n✔ Fórmula natural\n✔ Fácil aplicación\n✔ Resultado natural",
      bg: "from-green-500/20 to-black",
    },
    {
      title: "CÓMO USAR",
      subtitle: "FÁCIL Y RÁPIDO",
      text: "1. Aplicar\n2. Masajear\n3. Esperar\n4. Enjuagar",
      bg: "from-green-400/20 to-black",
    },
    {
      title: "TESTIMONIOS",
      subtitle: "MILES DE PERSONAS YA LO PROBARON",
      text: "⭐️⭐️⭐️⭐️⭐️\n‘Parezco 10 años más joven’",
      bg: "from-green-500/20 to-black",
    },
    {
      title: "OFERTA ESPECIAL",
      subtitle: "🔥 PROMOCIÓN MÁS VENDIDA 🔥",
      text: "1 Caja → $59.900\n3 Cajas → $119.900",
      bg: "from-red-500/20 via-green-500/20 to-black",
      button: "QUIERO EL MÍO AHORA",
    },
    {
      title: "CTA FINAL",
      subtitle: "NO SIGAS OCULTANDO TUS CANAS",
      text: "Recupera tu cabello negro hoy mismo",
      bg: "from-green-500/30 to-black",
      button: "¡ORDENA AHORA Y PAGA AL RECIBIR!",
    },
  ];

  return (
    <div className="bg-black text-white min-h-screen font-sans">
      {/* Sticky CTA */}
      <div className="fixed bottom-4 left-1/2 -translate-x-1/2 z-50 w-[90%] max-w-md">
        <button className="w-full bg-green-500 text-black font-extrabold text-lg py-4 rounded-2xl shadow-[0_0_30px_rgba(34,197,94,0.8)] animate-pulse">
          📲 PEDIR POR WHATSAPP
        </button>
      </div>

      {/* Hero */}
      <section className="relative overflow-hidden bg-gradient-to-b from-green-500/20 to-black px-6 py-16 text-center border-b border-green-500/20">
        <div className="absolute inset-0 bg-[radial-gradient(circle_at_center,rgba(34,197,94,0.25),transparent_70%)]"></div>

        <div className="relative z-10 max-w-6xl mx-auto grid md:grid-cols-2 gap-10 items-center">
          <div className="space-y-6 text-left">
            <div className="inline-block bg-red-500 text-white px-4 py-2 rounded-full text-sm font-bold animate-pulse">
              🔥 OFERTA LIMITADA
            </div>

            <h1 className="text-5xl md:text-7xl font-black leading-none uppercase">
              Adiós Canas <br />
              <span className="text-green-400 drop-shadow-[0_0_20px_rgba(34,197,94,1)]">
                Hola Cabello Negro
              </span>
            </h1>

            <p className="text-xl text-zinc-300">
              Resultados reales desde la primera aplicación.
            </p>

            <div className="space-y-2 text-lg font-semibold">
              <p>✔ Cubre canas rápidamente</p>
              <p>✔ Fórmula natural</p>
              <p>✔ Nutre el cabello</p>
              <p>✔ Resultado instantáneo</p>
            </div>

            <div className="bg-zinc-900 border border-green-500 rounded-3xl p-6 shadow-[0_0_30px_rgba(34,197,94,0.4)] w-fit">
              <p className="text-red-400 line-through text-xl">ANTES $99.900</p>
              <p className="text-5xl font-black text-green-400">$59.900</p>
            </div>

            <button className="bg-green-500 hover:scale-105 transition text-black font-black text-xl px-10 py-5 rounded-2xl shadow-[0_0_35px_rgba(34,197,94,0.9)]">
              ¡ORDENA HOY!
            </button>
          </div>

          <div className="relative flex justify-center">
            <div className="w-[320px] h-[420px] rounded-[40px] overflow-hidden border-2 border-green-500 bg-zinc-900 shadow-[0_0_60px_rgba(34,197,94,0.5)] flex items-center justify-center">
                <img
                  src="https://images.unsplash.com/photo-1527799820374-dcf8d9d4a388?q=80&w=1200&auto=format&fit=crop"
                  alt="Black Hair Shampoo"
                  className="w-full h-full object-cover"
                />
              </div>
            </div>
          </div>
        </div>
      </section>

      {/* Dynamic Sections */}
      <div className="max-w-6xl mx-auto px-4 py-10 space-y-10">
        {sections.slice(1).map((section, idx) => (
          <section
            key={idx}
            className={`rounded-[40px] border border-green-500/30 bg-gradient-to-b ${section.bg} p-8 md:p-14 shadow-[0_0_40px_rgba(34,197,94,0.15)]`}
          >
            <div className="grid md:grid-cols-2 gap-10 items-center">
              <div className="space-y-6">
                <p className="text-green-400 font-bold tracking-[4px] uppercase">
                  {section.title}
                </p>

                <h2 className="text-4xl md:text-6xl font-black uppercase leading-none">
                  {section.subtitle}
                </h2>

                <div className="text-zinc-300 whitespace-pre-line text-lg leading-relaxed">
                  {section.text}
                </div>

                {section.button && (
                  <button className="bg-green-500 hover:scale-105 transition text-black font-black text-lg px-8 py-4 rounded-2xl shadow-[0_0_35px_rgba(34,197,94,0.8)]">
                    {section.button}
                  </button>
                )}
              </div>

              <div className="flex justify-center">
                <div className="w-full h-[380px] rounded-[35px] overflow-hidden border-2 border-green-500 bg-black/60 shadow-[0_0_40px_rgba(34,197,94,0.35)]">
                  <img
                    src="https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=1200&auto=format&fit=crop"
                    alt="Section preview"
                    className="w-full h-full object-cover"
                  />
                </div>
              </div>
              </div>
            </div>
          </section>
        ))}
      </div>

      {/* Footer */}
      <footer className="text-center py-12 border-t border-green-500/20 text-zinc-400">
        <p>🚚 Envíos a toda Colombia</p>
        <p>💵 Pago contra entrega</p>
        <p>🔒 Compra segura</p>
      </footer>
    </div>
  );
}