/* ==========================================================
       FOOTER MINIMO
    ========================================================== */
    .footer {
      border-top: 1px solid var(--border);
      padding: 40px 32px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
    }

    .footer-logo-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--cyan2), var(--cyan));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
    }

    .footer-logo-text {
      font-family: 'Poiret One', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: var(--text);
    }

    .footer-logo-text span {
      color: var(--cyan);
    }

    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 0.82rem;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--text);
    }

    .footer-copy {
      font-size: 0.78rem;
      color: var(--muted);
    }

    @media (max-width: 640px) {
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }
    }