/* Estilo base para Alma Necia */

body {
  margin: 0;
  padding: 0;
  background-color: #0f0f0f;
  font-family: 'Georgia', serif;
  color: #f2f2f2;
}

h1, h2, h3 {
  font-family: 'Garamond', serif;
  color: #cfd8dc;
  text-shadow: 0 0 2px #1f1f1f;
}

nav {
  background-color: #1a1a1a;
  padding: 10px;
  border-bottom: 2px solid #333;
}

nav a {
  color: #b0bec5;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  color: #90caf9;
}

.header {
  background-color: #212121;
  padding: 40px 20px;
  text-align: center;
}

.header h1 {
  font-size: 3em;
  color: #90caf9;
  text-shadow: 2px 2px 4px #000;
}

.section {
  padding: 30px 20px;
  border-bottom: 1px solid #333;
}

.section:nth-child(even) {
  background-color: #121212;
}

.section p {
  line-height: 1.8em;
  font-size: 1.1em;
  color: #e0e0e0;
}

.footer {
  background-color: #1a1a1a;
  padding: 20px;
  text-align: center;
  color: #888;
  font-size: 0.9em;
}

img.preview {
  max-width: 100%;
  border: 2px solid #444;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
  margin: 10px 0;
}

.glitch {
  color: #90caf9;
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #0ff;
  z-index: -1;
}

.glitch::before {
  top: -2px;
  left: 2px;
  text-shadow: -1px 0 red;
}

.glitch::after {
  top: 2px;
  left: -2px;
  text-shadow: 1px 0 blue;
  mix-blend-mode: overlay;
}

button {
  background-color: #37474f;
  color: #eceff1;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #546e7a;
}

#vasquezButton {
  position: relative;
  width: 160px;
  height: auto;
  margin: 40px auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#vasquezButton img {
  width: 100%;
  border: 2px dashed #0077cc;
  box-shadow: 0 0 20px #0077cc33;
  border-radius: 8px;
}

#vasquezText {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #f8f8f8;
  background-color: #111;
  padding: 6px 12px;
  border: 1px solid #0077cc;
  border-radius: 4px;
  font-family: 'VT323', monospace;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 10;
}

