 /* FOOTER */
    footer {
      padding: 60px 8% 30px;
      background: #1a1a1a;
      color: var(--white);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-col h4 {
      color: var(--accent-yellow);
      font-size: 18px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-col p, .footer-col a {
      color: #bbb;
      text-decoration: none;
      font-size: 14px;
      display: block;
      margin-bottom: 10px;
      transition: 0.3s;
    }

    .footer-col a:hover {
      color: var(--secondary-blue);
    }

    /* Redes Sociais */
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: #333;
      border-radius: 50%;
      display: flex !important;;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: 0.3s;
    }

    .social-icon:hover {
      transform: translateY(-3px);
      color: #000;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 30px;
      text-align: center;
      font-size: 13px;
      color: #777;
    }