/* Reset de espaçamentos para o footer */
.tfm-footer1 {
    background-color: #14181C;
    padding: 40px 20px 20px;
    font-family: sans-serif;
    line-height: 1.3; /* reduz altura da linha */
}

/* Container principal (3 colunas) */
.tfm-footer1-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
    justify-content: space-between;
        color: #FFF;

}

/* Cada coluna */
.tfm-footer1-col {
    flex: 1;
    min-width: 180px;
}

/* Títulos */
.tfm-footer1-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    padding: 0;
    text-transform: uppercase;
}

/* Texto da primeira coluna */
.tfm-footer1-texto {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Menu de navegação (hardcoded) */
.tfm-footer1-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tfm-footer1-menu li {
    margin-bottom: 8px;  /* espaçamento pequeno entre itens */
}

.tfm-footer1-menu a {
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
        color: #FFF;
}

.tfm-footer1-menu a:hover {
    text-decoration: underline;
        color: #FFF;
}

/* Ícones de redes sociais */
.tfm-footer1-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tfm-footer1-social a {
    font-size: 1.2rem;
    transition: color 0.2s;
        color: #FFF;
}

.tfm-footer1-social a:hover {
    color: #FFF;
}

/* Seção dos logos (fundo branco) */
.tfm-footer1-logos-wrapper {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 10px;
}

.tfm-footer1-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tfm-footer1-logos-row a {
    display: inline-block;
    color: #FFF;
}

.tfm-footer1-logos-row img {
    max-height: 60px;
    width: auto;
    vertical-align: middle;
}

/* Copyright */
.tfm-footer1-copyright {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 20px;
}

/* Responsivo: empilhar colunas em telas pequenas */
@media (max-width: 768px) {
    .tfm-footer1-container {
        flex-direction: column;
        gap: 25px;
    }
    .tfm-footer1-logos-row {
        gap: 20px;
    }
    .tfm-footer1-logos-row img {
        max-height: 50px;
    }
}