/* Variables de diseño */
:root {
    --primary-color: #0056b3;
    --secondary-color: #00c2cb;
    --text-main: #2c3e50;
    --text-muted: #666;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
}

/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 550px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

/* Logo */
.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary-color);
}

/* Animación y Badge */
.status-indicator {
    margin-bottom: 2rem;
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.badge {
    background: #e0f2fe;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Contenido Principal */
h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Tarjeta de Contacto */
.contact-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

.email-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.email-link:hover {
    transform: translateY(-2px);
    color: var(--secondary-color);
}

/* Footer */
footer {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #a0aec0;
}

/* Animaciones Keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ajustes para móviles */
@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    .logo { font-size: 1.8rem; }
}