<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trajineras La Tóxica</title>
<style>
body{
font-family: Arial, sans-serif;
background: linear-gradient(45deg,#ff00cc,#ffcc00,#00e5ff);
text-align:center;
margin:0;
padding:0;
}
header{
background:#ff0077;
color:white;
padding:30px;
font-size:40px;
font-weight:bold;
}
.subtitulo{
font-size:25px;
color:white;
margin-bottom:20px;
}
.precio{
font-size:35px;
color:#ffe600;
font-weight:bold;
margin-top:20px;
}
.descuento{
font-size:22px;
color:white;
margin-top:10px;
}
.imagen{
margin-top:30px;
}
.imagen img{
width:80%;
max-width:900px;
border-radius:15px;
box-shadow:0px 10px 30px rgba(0,0,0,0.5);
}
.whatsapp{
margin-top:40px;
font-size:30px;
background:#25D366;
color:white;
padding:20px;
border-radius:10px;
display:inline-block;
text-decoration:none;
}
footer{
margin-top:50px;
font-size:30px;
color:white;
padding:30px;
background:#ff0077;
}
</style>
</head>
<body>
<header>
TRAJINERAS LA TÓXICA
</header>
<div class="subtitulo">
Diversión y ambiente familiar en Xochimilco
</div>
<div class="imagen">
<img src="trajineras_la_toxica.png" alt="Trajineras La Toxica">
</div>
<div class="precio">
$750 la hora
</div>
<div class="descuento">
¡Reserva más horas y obtén descuento!
</div>
<br><br>
<a class="whatsapp" href="https://wa.me/525543190328" target="_blank">
Reservar por WhatsApp 5543190328
</a>
<footer>
LA TÓXICA
</footer>
</body>
</html>