/* templates/classic/css/footer.css */
/* ESTILO: TECH-GRID GOLD (Sin imágenes externas) */

/* --- ESTRUCTURA PRINCIPAL --- */
.footer-main {
    background-color: #050505; /* Negro profundo */
    color: #a0a0a0;
    font-family: 'Segoe UI', 'Roboto', Helvetica, Arial, sans-serif;
    padding-top: 70px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
    
    /* EFECTO DE GRILLA TECNOLÓGICA (CSS PURO) */
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; /* Tamaño de los cuadraditos */
    background-position: center top;
}

/* Línea de energía superior */
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Sombra interior para dar profundidad */
.footer-main::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(20,20,20,0), #000);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2; /* Para estar encima del fondo */
}

/* --- LOGO Y ESTADO --- */
.footer-logo {
    max-width: 160px;
    height: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
}
.footer-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
    drop-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #666;
}

/* Badge Online Animado */
.status-badge {
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid #2e7d32;
    padding: 6px 15px;
    border-radius: 50px; /* Redondo estilo cápsula */
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #4caf50;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(46, 125, 50, 0.2);
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 5px #00ff00;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(0, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

/* --- TÍTULOS --- */
.footer-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

/* Decoración debajo del título */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ffd700;
    box-shadow: 0 0 8px #ffd700;
    transition: width 0.3s;
}
.col-md-3:hover .footer-title::after {
    width: 100%; /* La línea crece al pasar el mouse por la columna */
}

/* --- ENLACES CON EFECTO SLIDE --- */
.footer-links, .footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    border-left: 2px solid transparent;
    padding-left: 0;
}

.footer-links a i {
    font-size: 0.7rem;
    margin-right: 10px;
    color: #444;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px; /* Se desplaza a la derecha */
    border-left-color: #ffd700; /* Aparece borde dorado */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer-links a:hover i { color: #ffd700; }

/* --- REDES SOCIALES (Botones) --- */
.footer-social li { margin-bottom: 8px; }

.footer-social a {
    background: rgba(255, 255, 255, 0.03);
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    font-size: 1rem;
}

.footer-social a:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --- INFO BOX --- */
.info-box p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
}
.info-box i { color: #ffd700; margin-right: 12px; font-size: 0.9rem; }

.server-tag {
    background: linear-gradient(135deg, #111, #000);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 12px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.server-tag span {
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.server-tag small {
    color: #4caf50;
    font-weight: 600;
}

/* --- FOOTER BOTTOM --- */
.footer-hr {
    border-color: #222;
    margin: 50px 0 25px 0;
}

.footer-bottom {
    font-size: 0.8rem;
    color: #444;
}

.footer-bottom strong { color: #888; }

.footer-bottom a {
    color: #555;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.2s;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
}

.footer-bottom a:hover { color: #ffd700; }