/* === Reset y Variables === */
:root {
    /* Paleta Psicológica: Confianza, Tecnología y Energía */
    --bg-color: #0F172A;       /* Azul oscuro: Profesionalismo y profundidad */
    --text-primary: #E2E8F0;   /* Blanco humo: Legibilidad */
    --text-secondary: #94A3B8; /* Gris azulado: Elegancia */
    --accent-teal: #2DD4BF;    /* Cian/Teal: Ciberseguridad y Tech */
    --accent-orange: #F97316;  /* Naranja: Atención */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === Estilos Base === */
body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
    overflow: hidden; /* Evita scroll innecesario */
}

/* === Contenedor === */
.container {
    text-align: center;
    max-width: 650px;
    animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* === Tipografía e Impacto (Efecto Shimmer) === */
h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    
    /* Degradado para el efecto de brillo metálico */
    background: linear-gradient(
        to right,
        var(--text-secondary) 0%,
        #ffffff 50%,
        var(--text-secondary) 100%
    );
    
    /* Tamaño doble para permitir el movimiento */
    background-size: 200% auto;
    
    /* Recorte del texto */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* Animación del brillo (3 segundos) */
    animation: shineText 3s linear infinite;
}

h2 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--accent-teal);
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* === Elementos Visuales === */
.separator {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
    margin: 0 auto 2.5rem auto;
    opacity: 0.5;
}

.status-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.highlight {
    color: var(--text-primary);
    font-weight: 600;
}

/* === Caja de Aviso  === */
.btn-contact {
    display: inline-block;
    padding: 0.8rem 2rem;
    
    /* Animación de pulso suave (4 segundos) */
    animation: pulseBorder 4s ease-in-out infinite;
    
    /* Estilo Outline */
    border: 1px solid rgba(249, 115, 22, 0.5); 
    background-color: rgba(249, 115, 22, 0.05); 
    color: var(--accent-orange);
    
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    
    /* UX: No clicable */
    cursor: default; 
    pointer-events: none;
    transition: all 0.3s ease;
}

/* === Animaciones === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseBorder {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); } /* Expansión suave */
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

@keyframes shineText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Responsividad */
@media (max-width: 400px) {
    h1 { font-size: 2.2rem; }
    .status-message { font-size: 1rem; }
}