import React from 'react';
import Button from './common/Button';
import { Clock, Flame } from 'lucide-react'; // Changed Fire to Flame

export default function Hero() {
  return (
    <section className="bg-black text-white py-20">
      <div className="container mx-auto px-4">
        {/* Timer Bar */}
        <div className="bg-red-600 text-white p-4 rounded-lg mb-12 flex items-center justify-center gap-3">
          <Clock className="h-5 w-5" />
          <span className="font-bold">OFERTA POR TEMPO LIMITADO!</span>
          <Clock className="h-5 w-5" />
        </div>

        <div className="text-center max-w-4xl mx-auto">
          <div className="flex items-center justify-center gap-2 mb-6">
            <Flame className="h-6 w-6 text-yellow-500" />
            <span className="bg-yellow-500 text-black px-4 py-2 rounded-full text-sm font-bold">
              PROMOÇÃO ESPECIAL
            </span>
            <Flame className="h-6 w-6 text-yellow-500" />
          </div>

          <h1 className="text-5xl sm:text-6xl font-bold mb-6 leading-tight">
            Descubra Como Avaliar e Comprar
            <span className="text-yellow-500"> Carros Seminovos </span>
            Sem Cair em Armadilhas!
          </h1>

          <p className="text-xl mb-8 text-gray-300">
            Aprenda com quem já ajudou mais de 1.000 pessoas avaliando seus carros, economizando
            dinheiro e evitando dores de cabeça em carros seminovos e usados
          </p>

          <div className="bg-white/10 p-6 rounded-lg mb-8">
            <div className="grid grid-cols-1 md:grid-cols-3 gap-6">
              <div className="text-center">
                <div className="text-3xl font-bold text-yellow-500">1000+</div>
                <div className="text-sm">Vistorias Realizadas</div>
              </div>
              <div className="text-center">
                <div className="text-3xl font-bold text-yellow-500">25+</div>
                <div className="text-sm">Anos de Experiência</div>
              </div>
              <div className="text-center">
                <div className="text-3xl font-bold text-yellow-500">100%</div>
                <div className="text-sm">Garantia de Satisfação</div>
              </div>
            </div>
          </div>

          <div className="flex flex-col sm:flex-row gap-4 justify-center">
            <a 
              href="https://app.monetizze.com.br/checkout/DCK297945" 
              target="_blank" 
              rel="noopener noreferrer"
            >
              <Button size="lg" variant="primary">
                QUERO GARANTIR MEU EBOOK →
              </Button>
            </a>
          </div>

          <p className="text-sm mt-6 text-gray-400">
            🔒 Pagamento 100% seguro e processado em ambiente protegido
          </p>
        </div>
      </div>
    </section>
  );
}