/* =====================================================
       TML FOOTER
       Lightweight / Responsive / No JS
    ===================================================== */

    .tml-footer {
        width: 100%;
        background: #0d1f3d;
        color: #ffffff;
        box-sizing: border-box;
    }

    .tml-footer *,
    .tml-footer *::before,
    .tml-footer *::after {
        box-sizing: border-box;
    }


    /* INNER */

    .tml-footer-inner {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
    }


    /* MAIN */

    .tml-footer-main {
        display: grid;

        grid-template-columns:
            1.6fr
            1fr
            1fr
            1.25fr;

        gap: 55px;

        padding: 65px 20px 55px;
    }


    /* BRAND */

    .tml-footer-brand {
        max-width: 370px;
    }

    .tml-footer-logo {
        display: inline-block;
        margin-bottom: 18px;
        text-decoration: none;
    }

    .tml-footer-logo img {
        display: block;
        width: 190px;
        max-width: 100%;
        height: auto;
    }

    .tml-footer-brand p {
        margin: 0;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 1.7;

        color: #b8c5d8;
    }


    /* CTA */

    .tml-footer-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;

        margin-top: 23px;
        padding: 11px 17px;

        border-radius: 6px;

        background: #f7931e;
        color: #ffffff;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 13px;
        font-weight: 700;

        text-decoration: none;

        transition:
            background-color .2s ease,
            transform .2s ease;
    }

    .tml-footer-cta:hover {
        background: #ff9f2f;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .tml-footer-cta span {
        font-size: 17px;
    }


    /* COLUMNS */

    .tml-footer-column h2 {
        margin: 4px 0 20px;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 15px;
        line-height: 1.3;
        font-weight: 700;

        color: #ffffff;
    }

    .tml-footer-column ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .tml-footer-column li {
        margin: 0 0 12px;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 13px;
        line-height: 1.5;

        color: #b8c5d8;
    }

    .tml-footer-column a {
        color: #b8c5d8;
        text-decoration: none;
        transition: color .2s ease;
    }

    .tml-footer-column a:hover {
        color: #f7931e;
    }


    /* CONTACT */

    .tml-footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
    }

    .tml-footer-icon {
        flex: 0 0 18px;
        color: #f7931e;
        font-size: 14px;
    }


    /* WHATSAPP */

    .tml-footer-whatsapp {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: 9px;

        margin-top: 8px;
        padding: 10px 17px;

        border: 1px solid rgba(255,255,255,.18);
        border-radius: 6px;

        color: #ffffff !important;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: 700;

        text-decoration: none;
    }

    .tml-footer-whatsapp:hover {
        border-color: #f7931e;
        color: #f7931e !important;
    }

    .tml-footer-whatsapp b {
        font-size: 16px;
        font-weight: 400;
    }


    /* BOTTOM */

    .tml-footer-bottom {
        min-height: 65px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;

        padding: 18px 20px;

        border-top: 1px solid rgba(255,255,255,.10);
    }

    .tml-footer-bottom p {
        margin: 0;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 1.5;

        color: #8fa1ba;
    }

    .tml-footer-bottom strong {
        color: #c3cede;
    }

    .tml-footer-bottom-links {
        display: flex;
        align-items: center;
        gap: 10px;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
    }

    .tml-footer-bottom-links a {
        color: #8fa1ba;
        text-decoration: none;
    }

    .tml-footer-bottom-links a:hover {
        color: #f7931e;
    }

    .tml-footer-bottom-links span {
        color: #566b88;
    }


    /* TABLET */

    @media (max-width: 900px) {

        .tml-footer-main {
            grid-template-columns:
                1.5fr
                1fr
                1fr;

            gap: 35px;

            padding-top: 50px;
            padding-bottom: 45px;
        }

        .tml-footer-brand {
            grid-column: span 3;
            max-width: 600px;
        }

    }


    /* MOBILE */

    @media (max-width: 600px) {

        .tml-footer-main {
            grid-template-columns:
                repeat(2, minmax(0, 1fr));

            gap: 35px 22px;

            padding: 45px 18px 35px;
        }

        .tml-footer-brand {
            grid-column: span 2;
            max-width: none;
        }

        .tml-footer-logo img {
            width: 170px;
        }

        .tml-footer-brand p {
            font-size: 13px;
            line-height: 1.65;
        }

        .tml-footer-column h2 {
            margin-bottom: 15px;
            font-size: 14px;
        }

        .tml-footer-column li {
            margin-bottom: 10px;
            font-size: 12px;
        }

        .tml-footer-contact {
            grid-column: span 2;
        }

        .tml-footer-bottom {
            min-height: auto;

            flex-direction: column;
            align-items: flex-start;

            gap: 9px;

            padding: 18px;
        }

        .tml-footer-bottom-links {
            flex-wrap: wrap;
            font-size: 11px;
        }

    }


    /* SMALL MOBILE */

    @media (max-width: 380px) {

        .tml-footer-main {
            padding-left: 14px;
            padding-right: 14px;
            column-gap: 16px;
        }

        .tml-footer-bottom {
            padding-left: 14px;
            padding-right: 14px;
        }

    }
