/* Estilo do footer */
.cyber-footer {
  background-color: var(--background); /* Tom escuro sutil */
  padding: 40px 20px;
}


/* Estilo das seções */
.footer-info, .links-footer, .cyber-footer div, .link {
  padding: 10px;
}

/* Títulos */
.footer-info h2, .links-footer h2, .cyber-footer div h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Texto da descrição */
.footer-info p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #a0a0a0;
  max-width: 250px;
}

/* Links do footer */
.links-footer ol {
  list-style:none;
}

.links-footer li {
  margin: 8px 0;
}

.links-footer a, .cyber-footer div a, .link a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.links-footer a:hover, .cyber-footer div a:hover, .link a:hover {
  color: #ffffff; /* Cor clara no hover */
}

/* Ícones */
.links-footer i, .cyber-footer div i, .link i {
  font-size: 1rem;
  color: #a0a0a0;
}

.links-footer a:hover i, .cyber-footer div a:hover i, .link a:hover i {
  color: #ffffff;
}

/* Texto do rodapé inferior */
.footer-text {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #666;
}

/* Cursor estático */
.cursor {
  color: #666;
}

/* Responsividade */
@media screen and (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, max-content);
    }
}

@media screen and (min-width: 1150px) {
    .footer-container {
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .footer-info p {
        max-width: 100%;
    }
}
