:root {
    --primary-color: #1a365d; /* Azul oscuro del logo */
    --accent-color: #f05423; /* Naranja/Rojo del logo */
    --accent-light: #52b8c5; /* Celeste del logo */
    --accent-yellow: #f2aa2a; /* Amarillo del logo */
    --bg-color: #f8fafc;
    --text-color: #334155;
    --text-muted: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(82, 184, 197, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(240, 84, 35, 0.05) 0%, transparent 25%);
    padding: 20px;
}

.construction-container {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0,0,0,0.02);
    text-align: center;
    max-width: 550px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.construction-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--accent-light), 
        var(--accent-yellow), 
        var(--accent-color)
    );
}

.logo-wrapper {
    margin-bottom: 2rem;
}

.logo {
    max-width: 280px;
    height: auto;
    object-fit: contain;
    animation: fadeIn 1s ease-in-out 0.3s forwards;
    opacity: 0;
}

.badge {
    display: inline-block;
    background: rgba(240, 84, 35, 0.08);
    color: var(--accent-color);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

h1 {
    color: var(--primary-color);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 450px;
    margin-inline: auto;
}

/* Animación de carga */
.loader {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    background-color: var(--accent-light);
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    background-color: var(--accent-yellow);
    animation-delay: -0.16s;
}

.dot:nth-child(3) {
    background-color: var(--accent-color);
}

footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

footer p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: #94a3b8;
}

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
    } 40% { 
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .construction-container {
        padding: 2.5rem 1.5rem;
    }
    h1 {
        font-size: 1.85rem;
    }
    .logo {
        max-width: 220px;
    }
    p {
        font-size: 1rem;
    }
}
