/* Variables CSS para mantener el control del diseño */
:root {
    --brand-blue: #0074d9;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}
.maintenance {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo-container {
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.logo-container img {
    max-width: 400px;
    height: auto;
    margin: 0;
}


.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--brand-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

h1 {
    color: var(--text-main);
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlight {
    color: var(--brand-blue);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background-color: var(--brand-blue);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsividad básica */
@media (max-width: 480px) {
    .maintenance-card {
        padding: 30px 20px;
    }
    h1 { font-size: 24px; }
    p { 
        font-size: 15px; 
    }
    .paragraphs {
        padding: 1.5rem;
    }
}
