@import url(../global/colors.css);
@import url(../global/fonts.css);

footer {
    min-height: 72px;
    margin-top: 0;
    background-color: #848484;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-1 {
    min-height: 72px;
    margin-top: 40px;
    background-color: #848484;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: white;
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box;
    gap: 0;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-1 h1 {
    font-family: baumans, Arial, Helvetica, sans-serif !important;
    font-weight: 400 !important;
    font-size: 28px;
    margin: 0;
}

.footer-center {
    flex: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.icones {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.icones img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

address {
    display: flex;
    align-items: center;
    margin: 0;
}

address h4 {
    font-family: inter;
    font-weight: var(--medium-inter);
    font-size: 20px;
    color: var(--text-color);
    margin: 0;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-copy {
    font-family: inter;
    font-size: 15px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    margin: 0;
}

.footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topo-btn {
    border: 2px solid white;
    background: transparent;
    padding: 4px 12px;
    border-radius: 7px;
    color: white;
    font-family: inter;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 13px;
    line-height: 1.2;
    margin: 0;
}

.topo-btn:hover {
    background: rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .footer-1 {
    flex-direction: column;
    gap: 10px;
    padding: 16px 4px;
  }
  .footer-left, .footer-center, .footer-right {
    justify-content: center !important;
    width: 100%;
  }
  .footer-1 h1, .footer-copy, .topo-btn {
    margin: 0;
  }
}
