/* Header da campanha — mesmo visual do doar.html (Salve Cão) */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap");

.salvecao-site-header {
  background: linear-gradient(90deg, #b65a2f 0%, #d97742 50%, #b65a2f 100%);
  background-size: 200% 100%;
  animation: salvecao-header-gradient 6s linear infinite;
  color: #fff;
  padding: 14px 16px;
  box-shadow: 0 8px 20px rgba(182, 90, 47, 0.25);
  position: relative;
  z-index: 10;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

@keyframes salvecao-header-gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.salvecao-site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.salvecao-site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.salvecao-site-header__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.salvecao-site-header__title {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

@media (max-width: 380px) {
  .salvecao-site-header__title {
    font-size: 0.92rem;
  }

  .salvecao-site-header__logo {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .salvecao-site-header {
    animation: none;
    background: linear-gradient(90deg, #b65a2f 0%, #d97742 100%);
  }
}

/* Espaço entre o header e o VSL — no mobile o styles.css da campanha força margin-top: 0 no collage */
@media (max-width: 47.999em) {
  .campaign-page_campaign__SFW7x .p-campaign-collage {
    margin-top: 10px;
  }
}

/* Acompanhe o abrigo — grid 2×2 com botões do mesmo tamanho */
.social-section {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  margin: 20px 0;
}

.social-section__title {
  font-size: 24px;
  margin: 0 0 20px;
  color: #1c1c1c;
}

.social-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 420px;
  margin: 20px auto 0;
  width: 100%;
}

.social-section__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 16px;
  background: #ffffff;
  color: #2a2a2a;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(16, 36, 60, 0.12);
  box-shadow: 0 12px 24px rgba(16, 36, 60, 0.08);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.95rem;
}

.social-section__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-section__icon--tiktok {
  background-size: cover;
}
