/* --- Paleta de colores basada en tu logo --- */
:root {
    --color-fondo: #2c3e50; /* Gris azulado oscuro del fondo */
    --color-primario: #1abc9c; /* Verde turquesa del triángulo */
    --color-texto: #ecf0f1; /* Blanco roto para el texto */
    --color-texto-secundario: #bdc3c7; /* Gris claro para el texto secundario */
}

/* --- Reseteo básico y estilos generales --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-fondo);
    color: var(--color-texto);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

/* --- Contenedor principal --- */
.construction-container {
    max-width: 600px;
    width: 100%;
}

/* --- Logo --- */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* --- Contenido de texto --- */
.text-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-texto);
}

.text-content p {
    font-size: 1.1rem;
    color: var(--color-texto-secundario);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* --- Barra de carga animada --- */
.loader {
    width: 100%;
    height: 6px;
    background-color: #34495e; /* Un tono más claro del fondo */
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.loader-bar {
    width: 40%; /* Simula un progreso */
    height: 100%;
    background-color: var(--color-primario);
    border-radius: 3px;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

/* --- Footer --- */
.footer p {
    font-size: 0.8rem;
    color: var(--color-texto-secundario);
}

/* --- Ajustes para móviles --- */
@media (max-width: 480px) {
    .text-content h1 {
        font-size: 1.5rem;
    }
    .text-content p {
        font-size: 1rem;
    }
    .logo {
        max-width: 150px;
    }
}