.footer-site {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  border-top: 1px solid #ddd;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 40px 10%;
}
.info-contato p{
  color: #000;
}
#link-footer{
    transition: 0.2s;
    color: #c08731;
}
#link-footer:hover{
transition: 0.2s;
    text-decoration: underline;
}
.footer-left h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: #111;
}

.footer-left .slogan {
  color: #c08731;
  margin-bottom: 20px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 25px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
.footer-left img{
  width: 200px;
}
.footer-menu a {
  text-decoration: none;
  color: #000;
   transition: 0.2s;
  font-weight: 500;
}
.footer-menu a:hover {
    transition: 0.2s;
  color: #c08731;
}

.footer-site #active {
  color: #c08731;
}

.footer-right {
  text-align: right;
  max-width: 500px;
}

.address {
  background: #111122;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

.subscribe h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #111;
}

.subscribe-box {
  display: flex;
}

.subscribe-box input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.subscribe-box button {
  background: #ff3b2f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-weight: bold;
}

.subscribe-box button:hover {
  background: #e62e24;
}

.footer-bottom {
  background-color: #0a0a0f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  font-size: 0.9rem;
  flex-wrap: wrap;
  border-top: 1px solid #222;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: #c08731;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
.footer-right {
    text-align: right;
    max-width: 100%;
}

  .subscribe-box {
    flex-direction: column;
  }

  .subscribe-box input, 
  .subscribe-box button {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
  }
.footer-menu {
    list-style: none;
    padding: 0;
    display: flex
;
    font-size: 8px;
    gap: 25px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
}
.footer-bottom {
    background-color: #0a0a0f;
    color: #fff;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 85px 8%;
    font-size: 0.9rem;
    flex-wrap: wrap;
    border-top: 1px solid #222;
}
  .subscribe{
    text-align: center;
  }.address {
    background: #111122;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    display: flex
;
    align-items: center;
    font-size: 10px;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}
}
