/**
 * Estilos del Footer - Performance Ready
 */
.pie-pagina {
    background: linear-gradient(135deg, #6a1b32 0%, #4a1122 100%);
    color: #ffffff;
    width: 100%;
    padding: 40px 0 20px;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 5px solid #d4af37;
}

.contenedor-footer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-columna {
    flex: 1;
    min-width: 220px;
}

.footer-columna h3 {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #d4af37;
    text-transform: uppercase;
}

.footer-columna ul {
    list-style: none;
    padding: 0;
}

.footer-columna ul li { margin-bottom: 10px; }

.enlace-footer {
    color: #eee;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.enlace-footer:hover { color: #d4af37; }

.logo-footer {
    height: auto;
    max-width: 180px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.denuncia {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d4af37;
    color: #6a1b32;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.denuncia:hover { transform: translateY(-2px); }

.contacto-079 {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.numero-079 {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    margin-right: 10px;
}

.copyright-text {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .contenedor-footer { flex-direction: column; text-align: center; }
    .footer-columna h3 { border-bottom: none; text-decoration: underline; text-decoration-color: #d4af37; }
    .contacto-079 { justify-content: center; }
}