/* ------------------------- footer -- */
.footer{
   background:#1f2937;
   
}

.footer-container{
    max-width:1100px;
    margin:0 auto;
    padding:28px 20px 12px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px 28px;
}

.footer-container a{
    display:flex;
    align-items:center;
    gap:6px;
    color:rgba(255,255,255,.85);
    text-decoration:none;
    font-size:.95rem;
    transition:.3s;
}

.footer-container a:hover{
    color:#00ff99;
}

/* espaçador quebra de linha*/
.footer-break{
    display:none;
    flex-basis:100%;
    height:0;
}

/* copyright */
.footer-bottom{
    text-align:center;
    padding:8px 20px 18px;
}

.footer-bottom p{
    color:rgba(255,255,255,.65);
    font-size:.9rem;
}

.link-indicator {
    white-space: nowrap;
}

.link-indicator::after {
    content: " ↗";
    color: #ffffff;
}

/* ------------------------- mobile -- */
@media (max-width:768px){

    .footer-container{
        padding: 24px 10px 12px;
        display: grid;
        grid-template-columns: repeat(2, max-content);
        justify-content: center;
        column-gap: 24px;
        row-gap: 10px;
    }

    .footer-container a{
        width: auto;
        justify-content: flex-start;
    }

    .footer-break{
        display: none;
    }

    .footer-bottom p{
        font-size: .85rem;
        line-height: 1.4;
        text-align: center;
    }
}
