
/* FOOTER */
.site-footer {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #7d9375;
  color: #FFF;
  flex-wrap: wrap;
  gap: 120px;
  text-align: left;
}

.site-footer .logo {
  width: 500px;
  flex-shrink: 0;
}

.site-footer .logo img {
  height: auto;
}

#footer-text {
  max-width: 800px;
  font-size: 1.3em;
  line-height: 2;
  text-shadow: 1px 1px 2px #444;
  color: #F7F2D3;
}

/* 👇 Responsivo no mobile */
@media screen and (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .site-footer .logo {
    width: 100%;
    max-width: 90%;
    position: relative;
    z-index: 0;
  }

  #footer-text {
    width: 90%;
    font-size: 1.1em;
  }
}

@media screen and (max-width: 768px) {
  #footer-text {
    font-size: 1.1em;
  }
}
