/* css/style.css */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-weight: 400; /* asegúrate que el peso normal sea regular */
}

header {
  position: relative;
  padding: 1rem;
  height: 100vh;
}

.logo {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 61.8vw;
  height: auto;
}

.hamburger {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 1.5rem;
}

.hamburger div {
  width: 100%;
  height: 0.3rem;
  background: #333;
}

.menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  border: 1px solid #ccc;
  display: none;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.menu li:hover {
  background: #eee;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem;
  border-radius: 8px;
  top: 3rem;
}

.close {
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
}

#text-acerca {
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

#inscripcion-question {
  white-space: pre-wrap;
}
#inscripcion-answer {
  width: 100%;
  margin-top: 1rem;
}
#inscripcion-next,
#inscripcion-submit {
  margin-top: 1rem;
  background: #4d4f4c;
  border: none;
  border-radius: 9999px;
  color: #fff;
  padding: 0.5rem 1rem;
}

.projects-title {
  text-align: center;
  margin-bottom: 1rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  justify-items: center;
  padding: 1rem 0;
}

.project-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
  background: #4d4f4c;
}

.project-circle:nth-child(1) { color: #ff7675; }
.project-circle:nth-child(2) { color: #74b9ff; }
.project-circle:nth-child(3) { color: #55efc4; }
.project-circle:nth-child(4) { color: #fdcb6e; }
.project-circle:nth-child(5) { color: #a29bfe; }
.project-circle:nth-child(6) { color: #e17055; }
.project-circle:nth-child(7) { color: #00b894; }

.project-circle:hover { transform: scale(1.1); }

/* Clases para estilo de texto */
.text-regular { font-family: Arial, sans-serif; font-weight: 400; }
.text-bold    { font-family: Arial, sans-serif; font-weight: 700; }

/* Asegura que spans en modal-acerca se muestren bold */
#text-acerca .text-bold,
.modal-content .text-bold {
  font-weight: 700 !important;
  font-family: Arial, sans-serif !important;
}
.acerca-logo {
  display: inline-block;       /* para que quede en línea */
  height: 1em;                 /* igual altura que el texto */
  vertical-align: text-bottom; /* que se alinee con la línea de texto */
  margin-left: 0.2em;          /* pequeño espacio tras la última palabra */
}

