.voluntarios {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  padding: 0 clamp(0.65rem, 2vw, 1rem);
}

.voluntarios__card {
  position: relative;
  overflow: hidden;
  width: min(100%, 840px);
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: clamp(22px, 3.5vw, 40px);
  background: linear-gradient(90deg, #e8126a 0%, #f53d92 52%, #ff6fac 100%);
  box-shadow: 0 12px 32px rgba(248, 21, 113, 0.22);
  text-align: center;
  color: var(--white);
}

.voluntarios__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/bg-texture.svg');
  background-repeat: repeat;
  background-size: clamp(160px, 22vw, 280px) auto;
  opacity: 0.22;
  pointer-events: none;
}

.voluntarios__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
}

.voluntarios__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.15rem, 0.5vw, 0.35rem);
}

.voluntarios__lead {
  margin: 0;
  font-size: clamp(1.15rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.voluntarios__lead strong {
  font-weight: 700;
}

.voluntarios__title {
  margin: 0;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
}

.voluntarios__cta {
  margin-top: clamp(0.35rem, 1vw, 0.75rem);
  padding: clamp(0.85rem, 1.6vw, 1rem) clamp(1.75rem, 3vw, 2.35rem);
  background: #c10a57;
  font-size: clamp(0.9rem, 1.4vw, 1.08rem);
  font-weight: 800;
}

.voluntarios__cta:hover {
  background: #a8094a;
}

@media (max-width: 620px) {
  .voluntarios__card {
    padding: clamp(1.45rem, 5vw, 2rem) clamp(0.85rem, 4vw, 1.25rem);
  }

  .voluntarios__inner {
    gap: clamp(0.6rem, 2.5vw, 0.9rem);
  }

  .voluntarios__heading {
    gap: clamp(0.1rem, 0.8vw, 0.25rem);
    width: 100%;
  }

  .voluntarios__lead {
    font-size: clamp(0.72rem, 3.35vw, 1.05rem);
    letter-spacing: 0.02em;
    line-height: 1.08;
    white-space: nowrap;
  }

  .voluntarios__title {
    font-size: clamp(1.75rem, 8.5vw, 2.65rem);
    line-height: 1;
    white-space: nowrap;
  }

  .voluntarios__cta {
    margin-top: clamp(0.25rem, 1.5vw, 0.5rem);
    padding: clamp(0.7rem, 2.8vw, 0.85rem) clamp(1.25rem, 5vw, 1.75rem);
    font-size: clamp(0.78rem, 3vw, 0.9rem);
    max-width: 100%;
  }
}
