/* =========================================================
   TIERSTRATEGY — FOOTER
   ========================================================= */

.ts-footer {
    margin-top: 96px;
    background: #111827;
    color: #ffffff;
}

.ts-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px;
    
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
}

/* =========================================================
   MARCA
   ========================================================= */

.ts-footer__brand {
    max-width: 360px;
}

.ts-footer__logo {
    display: inline-block;
    margin-bottom: 18px;

    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.ts-footer__brand p {
    margin: 0;

    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================================
   COLUMNAS
   ========================================================= */

.ts-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ts-footer__column h3 {
    margin: 0 0 20px;

    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.ts-footer__column a {
    display: inline-block;
    margin-bottom: 12px;

    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.ts-footer__column a:hover {
    color: #2563eb;
    transform: translateX(3px);
}

/* =========================================================
   BARRA INFERIOR
   ========================================================= */

.ts-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    max-width: 1200px;
    margin: 0 auto;

    padding: 22px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ts-footer__bottom p {
    margin: 0;

    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .ts-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .ts-footer__brand {
        grid-column: 1 / -1;
        max-width: 500px;
    }

    .ts-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {

    .ts-footer {
        margin-top: 72px;
    }

    .ts-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;

        padding: 48px 24px;
    }

    .ts-footer__brand {
        grid-column: auto;
    }

    .ts-footer__logo {
        font-size: 22px;
    }

    .ts-footer__bottom {
        padding: 20px 24px;
    }
}