@charset "UTF-8";
body {
  background-color: #12161d;
  color: #d5e1e8;
  font-family: "JetBrains Mono", "Share Tech Mono", monospace;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}

a {
  color: #1f6feb;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

#matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #12161d;
  pointer-events: none;
  z-index: -2;
}

.blur-bg {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1000px;
  height: 100vh;
  backdrop-filter: blur(5px);
  background-color: rgba(18, 22, 29, 0.5);
  pointer-events: none;
  z-index: -1;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #12161d;
  border-bottom: 1px solid #222;
  z-index: 10;
  padding: 10px 0;
}
.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar ul li {
  margin: 0 15px;
}
.navbar ul li a {
  color: #00ffe0;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.navbar ul li a:hover {
  color: rgb(51, 255, 230.2);
}

#ascii-bg {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 1rem;
  opacity: 0.25;
  color: transparent;
  user-select: none;
  white-space: pre-wrap;
  margin-bottom: -20px;
  padding: 20px 10px;
  text-shadow: 0 0 4px #00ffe0;
  background: linear-gradient(90deg, #00ffe0, #1f6feb, #00ffe0);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: asciiGlow 3s ease-in-out infinite alternate;
}

.hero {
  margin-top: 80px;
  padding: 0 20px;
  text-align: center;
}
.hero .subtitle {
  color: rgb(245.9538461538, 248.5384615385, 250.0461538462);
  font-size: 1.1rem;
  margin-top: 10px;
}

.hero-terminal {
  background-color: #1b222b;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 255, 224, 0.2);
  font-family: "Share Tech Mono", monospace;
  color: #00ffe0;
  max-width: 500px;
  margin: 0 auto 20px;
  text-align: left;
}
.hero-terminal .terminal-header-line {
  display: flex;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.hero-terminal .terminal-bar {
  color: #1f6feb;
  font-weight: bold;
  flex-shrink: 0;
}
.hero-terminal .terminal-command {
  color: #00ffe0;
}
.hero-terminal .terminal-result {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ffe0;
  white-space: nowrap;
}

.cursor {
  display: inline-block;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.section {
  padding: 40px 20px;
  max-width: 960px;
  margin: auto;
}
.section h2 {
  color: #1f6feb;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 1px dashed #1f6feb;
  padding-bottom: 10px;
}
.section .section-content {
  background-color: #1b222b;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 8px #00ffe0;
  animation: fadeInUp 1s ease-out both;
}
.section.alt {
  background-color: #161b22;
}
.section.alt .section-content {
  border-radius: 12px;
}

#sobre-mi .section-content::before {
  content: "> cat bio.txt";
  display: block;
  color: #00ffe0;
  margin-bottom: 1rem;
  font-weight: bold;
}

.blog-entry {
  background-color: #1b222b;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 255, 224, 0.1);
}

.blog-entry h3 {
  color: #00ffe0;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.blog-entry time {
  font-size: 0.9rem;
  color: #aaa;
  display: block;
  margin-bottom: 20px;
}

.blog-entry p {
  font-size: 1rem;
  color: #d5e1e8;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cmd-line {
  font-family: "Share Tech Mono", monospace;
  color: #00ffe0;
  margin-bottom: 0.3rem;
}

code {
  background-color: rgba(0, 255, 224, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: #00ffe0;
}

.proyecto {
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.proyecto:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(0, 255, 224, 0.2);
}
.proyecto h3 {
  color: #00ffe0;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.proyecto p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #d5e1e8;
}
.proyecto .btn {
  background: none;
  border: 1px solid #00ffe0;
  color: #00ffe0;
  padding: 6px 12px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}
.proyecto .btn:hover {
  background: #00ffe0;
  color: #12161d;
}

.skills li {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 10px;
  margin: 5px;
  border-radius: 6px;
  border: 1px solid #00ffe0;
  font-size: 0.9rem;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.badge-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 6px #00ffe0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.badge-card:hover {
  transform: scale(1.05);
  border-color: rgb(102, 255, 236.4);
}
.badge-card:hover img {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.1);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.badge-card img {
  max-width: 100px;
  margin-bottom: 10px;
  filter: grayscale(100%) contrast(110%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.badge-card h3 {
  color: #00ffe0;
  font-size: 1rem;
  margin: 10px 0 5px;
}
.badge-card p {
  font-size: 0.85rem;
  color: rgb(245.9538461538, 248.5384615385, 250.0461538462);
}

#contacto .section-content {
  background-color: #1b222b;
  border-left: 3px solid #00ffe0;
  padding-left: 1.5rem;
}
#contacto .section-content p {
  margin: 0.5rem 0;
}
#contacto .section-content p::before {
  content: "➤ ";
  color: #00ffe0;
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  background-color: #12161d;
  border-top: 1px solid #222;
  color: #666;
  margin-top: 40px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes asciiGlow {
  from {
    opacity: 0.2;
    transform: scale(1);
  }
  to {
    opacity: 0.4;
    transform: scale(1.01);
  }
}

/*# sourceMappingURL=main.css.map */
