<!DOCTYPE
html>
<html
lang="es">
<head>
<meta
charset="UTF-8">
<meta
name="viewport" content="width=device-width,
initial-scale=1.0">
<title>Lluvia
Services S.L.</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap"
rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: #f4f6f9;
}
/* HEADER
*/
header {
background: #0a2540;
color: white;
padding: 20px;
text-align: center;
}
header img
{
width: 80px;
display: block;
margin: 0 auto 10px;
}
/* NAV */
nav {
background: #0f3c68;
padding: 12px;
text-align: center;
}
nav a {
color: white;
margin: 0 20px;
text-decoration: none;
font-weight: 500;
}
/* HERO */
.hero {
background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c')
center/cover;
color: white;
padding: 140px 20px;
text-align: center;
}
.hero h2 {
font-size: 45px;
}
/* BUTTON
*/
.btn {
background: #ff7a00;
padding: 15px 30px;
border: none;
color: white;
font-weight: 600;
border-radius: 6px;
cursor: pointer;
}
/* SECTION */
.section {
padding: 60px 20px;
max-width: 1100px;
margin: auto;
}
/* SERVICES */
.services {
display: grid;
grid-template-columns:
repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}
.card {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: 0.3s;
}
.card:hover {
transform: translateY(-8px);
}
/* WHY */
.why {
text-align: center;
}
.why div {
margin: 10px 0;
font-size: 18px;
}
/* TESTIMONIOS */
.testimonials {
display: grid;
gap: 20px;
}
.testimonial {
background: white;
padding: 20px;
border-left: 5px solid #ff7a00;
}
/* CONTACT */
form input, form textarea {
width: 100%;
padding: 12px;
margin-bottom: 10px;
}
/* FOOTER */
footer {
background: #0a2540;
color: white;
text-align: center;
padding: 25px;
}
/* WHATSAPP */
.whatsapp {
position: fixed;
bottom: 25px;
right: 25px;
background: #25D366;
color: white;
padding: 16px;
border-radius: 50%;
font-size: 22px;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<!-- CAMBIA "logo.png" POR EL
NOMBRE DE TU IMAGEN -->
<img src="logo.png"
alt="Logo">
<h1>Lluvia Services S.L.</h1>
<p>Soluciones integrales para empresas y
particulares</p>
</header>
<nav>
<a
href="#servicios">Servicios</a>
<a
href="#nosotros">Nosotros</a>
<a
href="#contacto">Contacto</a>
</nav>
<section class="hero">
<h2>Confianza, calidad y
resultados</h2>
<p>Expertos en mantenimiento y
construcción en Bata</p>
<br>
<button class="btn"
onclick="document.getElementById('contacto').scrollIntoView()">Solicitar
presupuesto</button>
</section>
<section id="nosotros"
class="section">
<h2>Quiénes somos</h2>
<p>En Lluvia Services S.L. ofrecemos
soluciones profesionales en mantenimiento, construcción y servicios técnicos.
Trabajamos con empresas y particulares garantizando rapidez, calidad y
confianza.</p>
</section>
<section id="servicios"
class="section">
<h2>Servicios</h2>
<div class="services">
<div
class="card"><h3>🔧
Mantenimiento</h3></div>
<div
class="card"><h3>🚿
Fontanería</h3></div>
<div
class="card"><h3>⚡
Electricidad</h3></div>
<div
class="card"><h3>❄️
Climatización</h3></div>
<div
class="card"><h3>🧱
Construcción</h3></div>
<div
class="card"><h3>🧹
Limpieza</h3></div>
<div
class="card"><h3>🌿
Jardinería</h3></div>
<div
class="card"><h3>🎥 Seguridad
CCTV</h3></div>
</div>
</section>
<section class="section why">
<h2>¿Por qué elegirnos?</h2>
<div>✔ Atención rápida y profesional</div>
<div>✔ Técnicos cualificados</div>
<div>✔ Precios
competitivos</div>
<div>✔ Servicio integral
completo</div>
</section>
<section class="section">
<h2>Opiniones de clientes</h2>
<div class="testimonials">
<div
class="testimonial">"Servicio rápido y muy
profesional."</div>
<div
class="testimonial">"Muy recomendados para
empresas."</div>
<div
class="testimonial">"Gran calidad en sus
trabajos."</div>
</div>
</section>
<section id="contacto"
class="section">
<h2>Contacto</h2>
<p><strong>Bata, Guinea
Ecuatorial</strong></p>
<p>📞 +240 222 255
151</p>
<p>📧
melo_86@outlook.com</p>
<h3>Solicita presupuesto</h3>
<form>
<input type="text"
placeholder="Nombre" required>
<input type="email"
placeholder="Email" required>
<textarea
placeholder="Mensaje" required></textarea>
<button
class="btn">Enviar</button>
</form>
</section>
<footer>
<p>© 2026 Lluvia Services S.L.</p>
</footer>
<!-- WhatsApp -->
<a class="whatsapp"
href="https://wa.me/240222255151" target="_blank">💬</a>
</body>
</html>