/**
 * style-footer.css
 * Footer redesenhado para combinar com o header novo: claro, limpo,
 * magenta como accent (não dominante), SVG icons.
 */

/* Anula completamente o estilo legado do footer antigo (que ainda está em style.css). */
.site-footer,
footer.site-footer {
  background: #fff;
  color: #2a1a2a;
  margin-top: 64px;
  border-top: 1px solid #f0e9e3;
}

.site-footer__main {
  padding: 48px 0 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.site-footer__brand {
  text-align: center;
}
.site-footer__logo {
  height: 64px;
  width: auto;
  display: inline-block;
  filter: none;
}
.site-footer__tagline {
  font-family: "Pacifico", cursive;
  color: #a14e75;
  font-size: 1rem;
  margin: 8px 0 0;
}

.site-footer__heading {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2a1a2a;
  margin: 0 0 14px;
}

/* Menu sitemap */
.site-footer__nav {
  text-align: center;
}
.site-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__menu li {
  display: inline-block;
  margin: 0 4px 6px;
}
.site-footer__menu a {
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.9rem;
  color: #2a1a2a;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}
.site-footer__menu a:hover {
  color: #d36c87;
  background: rgba(211, 108, 135, 0.08);
  text-decoration: none;
}

/* Social */
.site-footer__social {
  text-align: center;
}
.site-footer__social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer__social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ececec;
  color: #2a1a2a;
  background: #fff;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.site-footer__social-list a:hover {
  color: #fff;
  background: #d36c87;
  border-color: #d36c87;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Bottom strip (copyright) */
.site-footer__bottom {
  background: #faf5f0;
  padding: 14px 0;
  border-top: 1px solid #f0e9e3;
}
.site-footer__copyright {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: #6b5a6b;
}

/* Tablet+: 3-col grid */
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 3fr 2fr;
    gap: 48px;
    align-items: center;
  }
  .site-footer__brand {
    text-align: left;
  }
  .site-footer__nav {
    text-align: left;
  }
  .site-footer__social {
    text-align: right;
  }
  .site-footer__social-list {
    justify-content: flex-end;
  }
  .site-footer__menu li {
    display: block;
    margin: 0 0 4px;
  }
  .site-footer__menu a {
    padding: 4px 0;
    background: transparent !important;
  }
  .site-footer__menu a:hover {
    color: #d36c87;
  }
}

/* Desktop: padding maior */
@media (min-width: 992px) {
  .site-footer__main {
    padding: 64px 0 48px;
  }
  .site-footer__logo {
    height: 80px;
  }
}
