/* ============================================
   PÁGINA DE SISTEMA INACTIVO - LX BASE
   Siguiendo exactamente el patrón del login
   ============================================ */

/* Status icon con animación */
.status-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
}

/* Contact info card - siguiendo el patrón del sistema */
.contact-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #0cb890;
}

.contact-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0cb890;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-details {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-link {
    color: #0cb890;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0aa078;
    text-decoration: underline;
}

/* Status badge - código de error */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

/* Contact items styling */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Text centering overrides para títulos */
.inactivo-title {
    text-align: center;
}

.inactivo-message {
    text-align: center;
}

/* Footer link styling */
.footer-link {
    color: #0cb890;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .status-icon {
        width: 60px;
        height: 60px;
    }
    
    .status-icon i {
        font-size: 2rem !important;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .status-badge {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .contact-info {
        padding: 0.8rem;
    }
}

/* Accessibility improvements */
.contact-link:focus {
    outline: 2px solid #0cb890;
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .status-icon {
        animation: none;
    }
}