/* Efecto papel artesanal y bordes deckled */

.paper-texture {
  position: relative;
  background-color: #f5f1ea;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(166, 152, 133, 0.03) 2px,
      rgba(166, 152, 133, 0.03) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(166, 152, 133, 0.03) 2px,
      rgba(166, 152, 133, 0.03) 4px
    );
  min-height: 100vh;
}

.paper-texture::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.06) inset;
  z-index: 0;
}

.paper-card {
  background: linear-gradient(
    165deg,
    rgba(252, 250, 247, 0.98) 0%,
    rgba(248, 245, 240, 0.98) 50%,
    rgba(245, 241, 234, 0.98) 100%
  );
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(189, 176, 156, 0.35);
  border-radius: 4px;
}

.deckled-edge {
  position: relative;
}

.deckled-edge::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(166, 152, 133, 0.08) 100%
  );
  pointer-events: none;
}
