  .footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #0d0d0d;
    color: #888;
    width: 100%;
    padding: 20px 0;
  }

  .copyright {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-top: 8px;
  }

  .disclaimer {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
  }

  .footer-contact {
    display: flex;
    gap: 20px;
    margin: 8px 0;
    flex-wrap: wrap;
  }

  .footer-contact p {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #888;
    margin: 0;
  }

  .footer-contact i {
    color: #d4af37;
    font-size: 16px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
    margin: 12px 0;
  }

  .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .footer-social-link:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
  }

  .footer-content {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 16px;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }

  .footer-section h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    margin-bottom: 8px;
  }

  .footer-section ul li a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .footer-section ul li a:hover {
    color: #d4af37;
  }

  .footer-mobile-spacer {
    display: none;
  }

@media (max-width: 991px) {
  .footer-mobile-spacer {
    display: block;
    height: 100px; /* Espaço para não ser coberto pelo menu flutuante */
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: row; /* Mantém lado a lado no mobile */
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 0; /* Permite texto quebrar */
  }
  
  .footer-section h3 {
    font-size: 14px;
  }
  
  .footer-section ul li a {
    font-size: 12px;
  }
  
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
}


.footer-prize-outside {
  width: 100%;
  background-color: #0d0d0d;
  color: #888;
  padding: 24px 0;
  display: block;
  position: relative;
  z-index: auto;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .footer-prize-outside {
    order: 7;
    background-color: transparent; 
    padding: 0;
    margin-top: 16px;
  }

  .prize-word-wrapper {
    display: flex;
    flex-direction: column;
  }

  .item2 {
    display: contents;
  }
}
