.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

.clip-diagonal {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.hard-shadow { box-shadow: 4px 4px 0 0 #121212; }
.pb-safe { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
.star-cut { clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #d52b1e;
  border-bottom: 3px solid #121212;
  padding: 0.65rem 1rem;
  padding-top: max(0.65rem, env(safe-area-inset-top));
}

.site-header-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #fff;
}

.site-header-inner--3col {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  align-items: center;
}

.site-header-brand,
.site-header-title {
  line-height: 1.15;
  color: #fff;
  text-decoration: none;
}

.site-header-brand strong,
.site-header-title strong {
  display: block;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.site-header-brand span,
.site-header-title span {
  display: block;
  font-size: 0.68rem;
  opacity: 0.92;
  margin-top: 0.1rem;
}

.site-header-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header-nav a {
  color: #fff;
  text-decoration: none;
}

.site-header-nav a.is-active {
  text-decoration: underline;
}

.site-header-action {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
}

.site-header-cta {
  background: #121212;
  color: #fff;
  padding: 0.45rem 0.85rem;
  border: 2px solid #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (min-width: 768px) {
  .site-header-nav {
    display: flex;
  }
  .site-header-brand strong,
  .site-header-title strong {
    font-size: 1.05rem;
  }
}

input[type="file"]::file-selector-button {
  background: #161616;
  color: #fff;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.55rem 0.9rem;
  margin-right: 0.75rem;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

/* ------------------------------------------------------------------ */
/* Capa de refinamiento visual: mobile-first, menos "neobrutalismo/AI". */
/* Suaviza las sombras duras (estaticas y generadas por JS) y quita las  */
/* micro-rotaciones tipo sticker, sin tener que editar cada HTML.        */
/* ------------------------------------------------------------------ */
[class*="_0px_0px_rgba(18,18,18,1)"],
[class*="_0px_0px_rgba(255,255,255,1)"],
[class*="_0px_0px_rgba(213,43,30,1)"],
[class*="_0px_0px_rgba(0,57,166,1)"],
.hard-shadow {
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.10) !important;
}

.-rotate-1,
.rotate-1,
.-rotate-2,
.rotate-2,
.-rotate-3,
.rotate-3 {
  transform: none !important;
}

/* Bordes negros gruesos -> mas finos y suaves para un look mas limpio. */
.border-4 {
  border-width: 2px !important;
}

.clip-diagonal {
  clip-path: none;
}

img {
  max-width: 100%;
}
.pay-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #d6e4ff;
  border-top-color: #0039A6;
  border-radius: 50%;
  animation: payspin 0.8s linear infinite;
}
@keyframes payspin {
  to { transform: rotate(360deg); }
}
