/* FOOTER */
/*
footer {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  padding: 30px 15px;
  text-align: center;
  background: #000;
  border-top: 1px solid rgba(230,57,70,.25);
}

footer p {
  font-size: 18px;
  color: #aaa;
}

footer .social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

footer .social a {
  font-size: 22px;
  color: #00ffff;
  transition: .3s;
}

footer .social a:hover {
  color: #ffd166;
}
*/


.footer-legion {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(20,20,25,0.9), rgba(10,10,15,0.9));
    padding: 40px 0 20px;
}


.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 40px;
    height: 56px;
}

.footer-logo h3 {
    margin: 0;
    font-size: 18px;
    color: #ff3333;
    letter-spacing: 1px;
}

.footer-logo span {
    font-size: 13px;
    opacity: 0.8;
}

/* MENU */
.footer-center {
    display: flex;
    gap: 25px;
}

.footer-center a {
    color: #cfd8ff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-center a:hover {
    color: #4da3ff;
}

/* SOCIAL */
.footer-right {
    display: flex;
    gap: 15px;
}

.footer-right a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfd8ff;
    transition: 0.3s;
}

.footer-right a:hover {
    background: #4da3ff;
    color: #fff;
    border-color: #4da3ff;
}

/* DIVISOR */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 30px 0 15px;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

.footer-bottom small {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    opacity: 0.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-center {
        flex-wrap: wrap;
        justify-content: center;
    }
}