/* ----------- GLOBAL ----------- */

.footer-container {
    background-color: #0f4a4d;
    padding: 50px 60px 30px;
    color: white;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* ----------- COLUMNS ----------- */

.footer-col {
    min-width: 150px;
    margin-bottom: 20px;
}

.footer-brand {
    max-width: 200px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 15px;
}

.footer-title {
    margin-bottom: 12px;
}

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

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

.footer-list a {
    color: #A0ADAB;
    text-decoration: none;
    transition: 0.2s;
}

.footer-list a:hover {
    opacity: 0.7;
}

/* ----------- SOCIAL ICONS ----------- */

.footer-social-icons a {
    font-size: 22px;
    color: #d1e8e9;
    margin-right: 12px;
    transition: 0.2s;
}

.footer-social-icons a:hover {
    color: white;
    opacity: 0.8;
}

/* ----------- SEPARATOR ----------- */

.footer-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 30px 0;
}

/* ----------- BOTTOM BAR ----------- */

.footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    margin: 0 10px;
    color: #d1e8e9;
    text-decoration: underline;
    transition: 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-copy {
    opacity: 0.85;
}

/* ----------- RESPONSIVE ----------- */

@media (max-width: 800px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 15px;
    }
}
