/** Shopify CDN: Minification failed

Line 208:1 Expected "}" to go with "{"

**/
/* === FOOTER BASE === */
.footer {
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
  background: rgba(var(--color-background), 1);
  padding-top: 4rem;
}

/* Ensure credits area has no unintended background */
.footer__credits {
  display: inline-flex;
  align-items: center;
  background-color: rgba(0,0,0,0.5); /* override inline style */
  gap: 1.2rem;
}

/* === GRID PRINCIPAL (DESKTOP) === */
@media screen and (min-width: 990px) {
  .footer__content-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem 6rem;
    align-items: start;
    justify-content: space-between;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
  }

  .footer-block {
    text-align: left;
  }

  .footer-block__heading {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-block__details-content a {
    color: rgba(var(--color-foreground), 0.8);
    transition: color 0.2s ease;
  }

  .footer-block__details-content a:hover {
    color: rgba(var(--color-foreground), 1);
  }
}

/* === NEWSLETTER === */
.footer-block--newsletter {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.83);
  border-radius: 12px;
  padding: 2rem 2rem;
  margin-top: 1rem;
}

.footer-block__newsletter {
  flex: 1;
  text-align: left;
}

.footer-block__newsletter .footer-block__heading {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #f5f5f5;
}

.newsletter-form__field-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.newsletter-form__field-wrapper .field__input {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(var(--color-foreground), 0.15);
 
  flex: 1;
}

.newsletter-form__button {
  background: rgba(var(--color-foreground), 0.9);
  color: var(--color-background);
  padding: 1rem 1.8rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.newsletter-form__button:hover {
  background: rgba(var(--color-foreground), 1);
}

/* === PARTE INFERIOR (COPYRIGHT, POLÍTICAS, PAGAMENTOS) === */
.footer__content-bottom {
 
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer__content-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
  padding: 0 2rem;
}

/* Bottom legal row (copyright + policies + credits) */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Add room between payment icons row and the legal row */
.footer__content-bottom-wrapper.footer-bottom-bar {
  margin-top: 1.2rem;
}

.footer__column--info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer__payment .list-payment {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.footer__copyright {
  color: rgba(var(--color-foreground), 0.7);
  font-size: 3rem;
  padding-top: 3rem
}

.footer__copyright a {
  color: rgba(var(--color-foreground), 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__copyright a:hover {
  color: rgba(var(--color-foreground), 1);
}

/* === SOCIAL ICONS === */
.footer__list-social {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
}

.footer__list-social svg {
  width: 22px;
  height: 22px;
  color: #fff;
  transition: opacity 0.2s ease;
}

.footer__list-social svg:hover {
  opacity: 0.7;
}

/* === MOBILE AJUSTES === */
@media screen and (max-width: 749px) {
  .footer__content-top {
    display: block;
    padding: 2rem;
  }

  .footer-block--newsletter {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .footer__content-bottom-wrapper {
    justify-content: center;
    text-align: center;
  }

  /* Mobile layout for bottom legal row */
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

 