/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #1a2331;
    background-color: #151d2c;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #1f2531;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ec9a0e;
}

.maintenance {
    background: linear-gradient(135deg, #151d2c 0%, #1f2531 100%);
    padding: 120px 1rem 4rem;
    text-align: center;
    color: white;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-content {
    max-width: 800px;
    animation: fadeIn 2s ease-in-out;
}

.phoenix-icon {
    margin-bottom: 2rem;
    animation: pulse 3s infinite;
}

.phoenix-icon svg {
    filter: drop-shadow(0 0 10px #ec9a0e);
}

.maintenance-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ec9a0e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.maintenance-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

footer {
    background-color: #1f2531;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .maintenance-content h1 {
        font-size: 2rem;
    }

    .maintenance-content p {
        font-size: 1rem;
    }

    .phoenix-icon svg {
        width: 80px;
        height: 80px;
    }
}