.initial-loader {
  min-height: 100vh;
  color: #8f249f;
  background: #fdf8fc;
  font-family: Arial, sans-serif;
}

.initial-header {
  border-bottom: 1px solid #eadfe7;
  background: rgba(255, 255, 255, 0.98);
}

.initial-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: calc(100% - 2rem);
  min-height: 5.25rem;
  margin: 0 auto;
}

.initial-header__brand {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.initial-header__brand::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  color: #f0edef;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  line-height: 1;
  white-space: nowrap;
  content: "Solidarias";
  transform: translate(-50%, -48%);
}

.initial-header__brand img {
  display: block;
  width: clamp(11rem, 13vw, 13.25rem);
  height: 4.6rem;
  object-fit: contain;
}

.initial-header__navigation {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.6vw, 1.5rem);
  width: max-content;
  transform: translateX(-50%);
}

.initial-header__navigation span {
  padding: 0.55rem 0.8rem;
  color: #ec4093;
  font-size: 1.1rem;
  font-weight: 700;
}

.initial-header__account {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6a626a;
  font-weight: 700;
}

.initial-header__account svg {
  display: block;
  flex: 0 0 auto;
}

.initial-header__menu { display: none; }

.initial-loader__content {
  display: grid;
  min-height: calc(100vh - 5.25rem);
  place-items: center;
}

.initial-loader__mark {
  width: 2.75rem;
  height: 2.75rem;
  border: 0.22rem solid rgba(143, 36, 159, 0.18);
  border-top-color: #a532b5;
  border-radius: 50%;
  animation: initial-loader-spin 0.8s linear infinite;
}

.initial-loader .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes initial-loader-spin { to { transform: rotate(360deg); } }

@media (min-width: 1350px) {
  .initial-header__brand { width: 21.25rem; margin-left: 2rem; }
}

@media (min-width: 1700px) {
  .initial-header__brand { width: 30.5rem; }
  .initial-header__brand::before { font-size: 7.25rem; }
}

@media (min-width: 851px) and (max-width: 1349px) {
  .initial-header__brand::before { display: none; }
}

@media (max-width: 850px) {
  .initial-header__inner { gap: 0.5rem; width: calc(100% - 1rem); min-height: 4.5rem; }
  .initial-header__brand { margin-right: auto; }
  .initial-header__brand::before,
  .initial-header__navigation,
  .initial-header__account span { display: none; }
  .initial-header__brand img { width: 12rem; height: 4.7rem; }
  .initial-header__menu { display: grid; flex: 0 0 3rem; place-content: center; gap: 0.28rem; width: 3rem; height: 3rem; }
  .initial-header__menu i { display: block; width: 1.5rem; height: 2px; border-radius: 1rem; background: #690b79; }
  .initial-loader__content { min-height: calc(100vh - 4.5rem); }
}

@media (max-width: 520px) {
  .initial-header__brand img { width: 9.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .initial-loader__mark { animation: none; }
}