/* ============================================================
   FILBB 2026 – footer.css
   ============================================================ */

.filbb-footer {
    background: var(--filbb-oscuro);
    color:      var(--filbb-blanco);
    padding-top: var(--gap-xl);
}

.filbb-footer__inner {
    display:   grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:       var(--gap-xl);
    padding-bottom: var(--gap-xl);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

/* ── Columna contacto ── */
.filbb-footer__label {
    font-size:     var(--text-xs);
    font-weight:   700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:         rgba(255,255,255,.5);
    margin-bottom: var(--gap-sm);
}

.filbb-footer__dato {
    display:     flex;
    align-items: center;
    gap:         .5rem;
    color:       rgba(255,255,255,.8);
    font-size:   var(--text-sm);
    margin-bottom: .4rem;
    transition:  color var(--transicion);
}
.filbb-footer__dato:hover { color: var(--filbb-blanco); }
.filbb-footer__icono { font-style: normal; font-size: 1rem; }

/* ── Columna lugar ── */
.filbb-footer__lugar { text-align: center; }
.filbb-footer__lugar-icono { font-size: 1.5rem; margin-bottom: .5rem; }
.filbb-footer__lugar-nombre {
    font-size:   var(--text-md);
    font-weight: 700;
    color:       var(--filbb-blanco);
}
.filbb-footer__lugar-dir {
    font-size: var(--text-sm);
    color:     rgba(255,255,255,.6);
    margin-top: .25rem;
}

/* ── Columna logo Trafkintu ── */
.filbb-footer__logo-trafkintu {
    display:         flex;
    align-items:     center;
    justify-content: flex-end;
}
.filbb-footer__logo-img {
    max-height: 70px;
    width:      auto;
    filter:     brightness(0) invert(1);  /* Lo vuelve blanco */
    opacity:    .9;
}
.filbb-footer__logo-placeholder {
    color:      rgba(255,255,255,.7);
    font-size:  var(--text-md);
    text-align: right;
    line-height: 1.3;
}
.filbb-footer__logo-placeholder em { font-style: normal; font-weight: 700; font-size: 1.2em; }

/* ── Barra de copyright ── */
.filbb-footer__copy {
    background: rgba(0,0,0,.3);
    padding:    var(--gap-sm) 0;
    text-align: center;
}
.filbb-footer__copy p {
    font-size: var(--text-xs);
    color:     rgba(255,255,255,.4);
    margin:    0;
}
