<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Avicampo | Sitio en Construcción</title>
<style>
/* Estilos generales */
body, html {
height: 100%;
margin: 0;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
background-image: linear-gradient( #F2620F);
}
.container {
text-align: center;
padding: 30px;
max-width: 700px;
width: 90%;
background: white;
border-radius: 20px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
/* Estilo del Logo */
.logo {
max-width: 220px;
height: auto;
margin-bottom: 20px;
}
/* Estilo de la imagen de construcción */
.construction-img {
max-width: 100%;
height: auto;
margin-bottom: 20px;
}
.info-text {
font-size: 1.1rem;
color: #666;
margin-bottom: 30px;
line-height: 1.5;
}
/* Contenedor de botones */
.button-group {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
display: inline-block;
padding: 14px 28px;
text-decoration: none;
font-weight: bold;
border-radius: 8px;
transition: all 0.3s ease;
cursor: pointer;
border: none;
font-size: 1rem;
}
/* Botón de Soporte (Avicampo / Naranja Construcción) */
.btn-contact {
background-color: #F2620F; /* Color Naranja */
color: white;
}
.btn-contact:hover {
background-color: #F2B749;
transform: translateY(-2px);
}
/* Botón de Regresar */
.btn-back {
background-color: #27ae60;
color: white;
border: 2px solid #ddd;
}
.btn-back:hover {
background-color: #219150;
transform: translateY(-2px);
}
.footer {
margin-top: 40px;
font-size: 0.85rem;
color: #aaa;
}
</style>
</head>
<body>
<div class="container">
<img src="assets/img/LOGO.png" alt="Logo Avicampo" class="logo">
<br>
<img src="assets/img/construccion.png" alt="Sitio en Construcción" class="construction-img">
<div class="info-text">
<p>En <strong>Avicampo</strong> estamos renovando nuestra plataforma digital <br> para brindarte una mejor experiencia.</p>
</div>
<div class="button-group">
<button onclick="window.history.back();" class="btn btn-back">Regresar</button>
<a href="https://app.smartsheet.com/b/form/07e13fdb2f22449bb1c49f02be384d13" target="_blank" class="btn btn-contact">Contactar soporte</a>
</div>
<div class="footer">
© 2026 Avicampo. Todos los derechos reservados.
</div>
</div>
</body>
</html>