<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tornería LH | 45 Años de Industria Argentina</title>
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
    <style>
        /* Estilos Generales Estilo Industrial */
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f4f4f4;
        }

        header {
            background-color: #ffffff;
            padding: 20px;
            text-align: center;
            border-bottom: 5px solid #6fa8dc; /* El azul de tu logo */
        }

        .logo {
            max-width: 300px;
            height: auto;
        }

        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&q=80&w=1500'); /* Imagen de fondo industrial */
            background-size: cover;
            background-position: center;
            height: 400px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero p {
            font-size: 1.5rem;
            background-color: #6fa8dc;
            padding: 5px 20px;
            margin-top: 10px;
        }

        .container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 20px;
            background: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .service-card {
            border: 1px solid #ddd;
            padding: 20px;
            text-align: center;
            border-left: 5px solid #333;
        }

        .contact-section {
            background-color: #2c3e50;
            color: white;
            padding: 50px 20px;
            text-align: center;
        }

        .btn-whatsapp {
            background-color: #25d366;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.2rem;
            display: inline-block;
            margin-top: 20px;
        }

        footer {
            text-align: center;
            padding: 20px;
            background: #1a1a1a;
            color: #888;
            font-size: 0.9rem;
        }

        .highlight { color: #6fa8dc; font-weight: bold; }
    </style>
</head>
<body>

<header>
    <img src="lh-logo-45-añosPNG.png" alt="Tornería LH Logo" class="logo">
</header>

<section class="hero">
    <h1>Tornería Automática</h1>
    <p>45 Años de Excelencia en Industria Argentina</p>
</section>

<div class="container">
    <section>
        <h2>Trayectoria y Precisión</h2>
        <p>En <strong>Tornería LH</strong>, combinamos décadas de experiencia con tecnología de precisión para ofrecer soluciones integrales a la industria. Nos especializamos en la fabricación de piezas bajo plano con los más altos estándares de calidad.</p>
    </section>

    <div class="services">
        <div class="service-card">
            <h3>Producción en Serie</h3>
            <p>Capacidad para grandes volúmenes con tiempos de entrega optimizados.</p>
        </div>
        <div class="service-card">
            <h3>Piezas Especiales</h3>
            <p>Mecanizados complejos y desarrollo de prototipos según necesidad.</p>
        </div>
        <div class="service-card">
            <h3>Calidad Garantizada</h3>
            <p>45 años avalan nuestro compromiso con la industria nacional.</p>
        </div>
    </div>
</div>

<section class="contact-section">
    <h2>¿Necesita un presupuesto?</h2>
    <p>Atención personalizada para empresas y particulares.</p>
    <p>Teléfono / WhatsApp: <strong>11 2564-2040</strong></p>
    <a href="https://wa.me/541125642040" class="btn-whatsapp" target="_blank">
        CONTACTAR POR WHATSAPP
    </a>
</section>

<footer>
    <p>&copy; 2024 Tornería LH - www.tornerialh.com.ar - Industria Argentina</p>
</footer>

</body>
</html>