/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --fondo: #0f0f0f;
  --texto: #f5f5f5;
  --acento: #00fff0;
  --seccion: #1a1a2e;
  --fondo-hero: linear-gradient(180deg, #1a1a2e 0%, #0f0f0f 100%);
  --sombra-acento: rgba(0, 200, 255, 0.15);

}

body.claro {
  --fondo: #f0f0f0;
  --texto: #1a1a1a;
  --acento: #0077ff;
  --seccion: #ffffff;
  --fondo-hero: linear-gradient(180deg, #ffffff 0%, #e6e6e6 100%);
  --sombra-acento: rgba(0, 119, 255, 0.2);
}

body.claro .card-proyecto {
  background-color: #f9f9f9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
/* Hero */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: var(--fondo-hero);
}

.hero .nombre {
  color: #00fff0;
  font-weight: bold;
}

.btn-neon {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #00fff0;
  color: #0f0f0f;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-neon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #00fff0, 0 0 20px #00fff0;
}

/* Secciones */
.seccion {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

h2 {
  color: #ff61f6;
  margin-bottom: 20px;
  text-align: center;
}

/* Proyectos */
.grid-proyectos {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card-proyecto {
  background-color: var(--seccion);
  color: var(--texto);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* más visible en fondo claro */
  border: 1px solid rgba(0, 0, 0, 0.05); /* sutil borde para separar */
}



.card-proyecto h3,
.card-proyecto p,
.card-proyecto li {
  color: inherit; /* hereda el color de .card-proyecto */
}



.card-proyecto:hover {
  transform: translateY(-5px);
  background-color: #292943;
}

.card-proyecto a {
  color: #00fff0;
  text-decoration: none;
  font-weight: bold;
}

/* Contacto */
form {
  max-width: 500px;  /* ancho máximo cómodo */
  margin: 0 auto;    /* centra horizontalmente */
  padding: 20px;
  background-color: var(--seccion);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 15px;
}


input, textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background-color: var(--fondo);
  color: var(--texto);
  font-size: 1rem;
  box-sizing: border-box;
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1a1a2e;
  color: #aaa;
  font-size: 0.9em;
}
.ilustracion-anime {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.ilustracion-anime:hover {
  opacity: 1;
}

.ilustracion-anime img {
  width: 90px;
  height: auto;
  pointer-events: none;
  user-select: none;
}



body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--fondo);
  color: var(--texto);
  line-height: 1.6;
}


.btn-neon,
.card-proyecto,
input,
textarea {
  background-color: var(--seccion);
  color: var(--texto);
}



/* Botón toggle */
.modo-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--acento);
  color: var(--fondo);
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100;
}
.redes-sociales {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.redes-sociales a img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

body.claro .redes-sociales a img {
  filter: none;
}

.redes-sociales a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 5px var(--acento));
}
.redes-sociales {
  margin-top: 30px;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.redes-sociales a img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}


.redes-sociales a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 5px var(--acento));
}

