/**
 * Footer Styles para SkySales Pro
 */

.footer {
    background-color: #185480;
    width: 100%;
    padding: 3.5rem 5%;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

.footer * {
    box-sizing: border-box;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 900px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Left Column */
.footer-col-left {
    align-items: flex-start;
}

.footer-logo {
    width: 260px;
    max-width: 100%;
    margin-bottom: 2rem;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-links li,
.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 300;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    margin-top: 0;
}

/* Center Column */
.footer-col-center {
    align-items: center;
    text-align: center;
}

.footer-heading {
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.footer-links-center {
    align-items: center;
    gap: 0.75rem;
}

.footer-links-center a {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Right Column */
.footer-col-right {
    align-items: center;
    text-align: center;
}

@media (min-width: 900px) {
    .footer-col-right {
        align-items: flex-end;
        text-align: right;
    }
}

.footer-lang {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    font-weight: 400;
}

.footer-lang a {
    color: #ffffff;
    text-decoration: none;
    padding: 0 0.25rem;
}

.footer-lang a.active {
    font-weight: 700;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background-color: #ffffff;
    color: #185480;
    transform: translateY(-2px);
}

.footer-powered {
    font-size: 1.1rem;
    font-weight: 300;
}