/* ============================= */
/*            Footer             */
/* ============================= */

.footer {
    background-color: #00215E;
    padding: 40px 80px;
    padding-bottom: 10px;
    color: #fff;
}

.footer h2,
.footer h3,
.footer p {
    margin: 0;
}

/* ================= DESKTOP ================= */
.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.left-footer {
    max-width: 300px;
}

.left-footer img {
    max-width: 50px;
}

.left-footer .title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.left-footer h2 {
    font-size: 22px;
    line-height: 1.2;
}

.left-footer p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.middle-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.middle-footer h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.middle-footer p a {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.right-footer h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.right-footer p {
    font-size: 14px;
    line-height: 1.6;
}

.left-footer,
.middle-footer,
.right-footer {
    text-align: center;
}

.socials {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.socials a {
    color: #fff;
}

.socials img {
    width: 28px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.socials img:hover {
    transform: scale(1.1);
}

/* ================= MOBILE ================= */
.footer-container-mobile {
    display: none;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.footer-logo img {
    max-width: 120px;
    margin-bottom: 15px;
}

.footer-title {
    font-size: 26px;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px;
}

.footer-social a {
    color: #fff;
}

.footer-social img {
    width: 36px;
}

.footer-info {
    text-align: left;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-info p a{
    color: #fff;
}

.footer-info img {
    width: 18px;
}

/* ================= BOTTOM ================= */

.bottom-footer {
    margin-top: 25px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.bottom-footer p {
    font-size: 12px;
    opacity: 0.8;
}

/* ================= BREAKPOINT ================= */

@media (max-width: 970px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        display: none;
    }

    .footer-container-mobile {
        display: block;
    }
}