<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Poligono 357</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #1a1a1a;
font-family: "Arial Black", sans-serif;
text-align: center;
padding: 20px;
color: #ddd;
}

.container {
max-width: 90%;
width: 420px;
background: #2b2b2b;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
border: 2px solid #ffcc00;
text-transform: uppercase;
}

h1 {
font-size: clamp(20px, 5vw, 28px); /* Responsive font */
color: #ffcc00;
margin-bottom: 15px;
letter-spacing: 1px;
white-space: normal; /* Allows text wrapping */
word-break: break-word; /* Prevents overflow */
line-height: 1.2; /* Improves spacing */
}

p {
font-size: 16px;
line-height: 1.6;
color: #bbb;
font-family: "Arial", sans-serif;
}

.call-button, .whatsapp-button {
display: inline-block;
font-size: 18px;
font-weight: bold;
padding: 12px 20px;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s ease-in-out;
margin-top: 15px;
width: 80%;
text-align: center;
}

.call-button {
background-color: #ffcc00;
color: #1a1a1a;
border: 2px solid #ffcc00;
}

.call-button:hover {
background-color: #ff9900;
color: #fff;
border-color: #ff9900;
}

.whatsapp-button {
background-color: #25D366;
color: white;
border: 2px solid #25D366;
}

.whatsapp-button:hover {
background-color: #128C7E;
border-color: #128C7E;
}
</style>
</head>
<body>
<div class="container">
<h1>🚧 Poligono 357 🚧</h1>
<p>Sitio en construcción</p>
<a href="tel:+573168284982" class="call-button">📞 LLÁMANOS</a>
<br>
<a href="https://wa.me/573168284982" class="whatsapp-button" target="_blank">💬 WhatsApp</a>
</div>
</body>
</html>