/* ============================
   AVISO LEGAL - ESTILOS
   ============================ */

/* VARIABLES MODO CLARO */
:root {
  --bg: #f4f4f4;
  --card: #ffffff;
  --text: #1a1a1a;
  --accent: #ce0000;
  --border: #dcdcdc;
  --header: #f9fafb;
  --highlight: #ffe07a;
  --shadow: rgba(0,0,0,0.25);
}

/* VARIABLES MODO OSCURO */
body.dark-mode {
  --bg: #0d0d0d;
  --card: #161616;
  --text: #f1f1f1;
  --accent: #ffb400;
  --border: #333;
  --header: #202020;
  --highlight: #ffc94d;
  --shadow: rgba(0,0,0,0.6);
}

/* BASE */
body {
  background: var(--bg);
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}

/* CONTENEDOR GENERAL */
.modall {
  width: 85%;
  margin: 40px auto;
  background: var(--card);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 8px 24px var(--shadow);
  transition: background 0.3s, box-shadow 0.3s;
}

/* TITULOS PRINCIPALES */
.modal-content h1 {
  text-align: center;
  margin: 40px 0 25px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 6px;
  font-size: 26px;
}

/* SUBTITULOS */
.modal-content h2 {
  margin: 20px 0 10px;
  color: var(--accent);
  font-size: 18px;
}

/* PARRAFOS */
.sobre_wolfjauria p,
.sobre_wolfjauria li {
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text);
}

.sobre_wolfjauria a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
}
.sobre_wolfjauria a:hover {
  text-decoration: underline;
}

/* SECCION TEAM */
.team {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  gap: 20px;
  margin: 25px 0 35px;
}
.team .artstation {
  width: 250px;
  background: var(--header);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  padding: 18px;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.team .artstation:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px var(--shadow);
}
.team img {
  width: 90px;
  margin: 14px auto;
  display: block;
  border-radius: 8px;
}
.team h2 {
  font-size: 15px;
  margin: 8px 0;
  color: var(--text);
}
.team .link {
  color: var(--accent);
  font-size: 14px;
}
.team .link:hover {
  text-decoration: underline;
}

/* NOTA FINAL */
.mas_datos {
  text-align: center;
  font-style: italic;
  margin: 25px 0;
  color: var(--text);
  background: var(--header);
  padding: 10px;
  border-radius: 6px;
  border-left: 4px solid var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .team {
    flex-direction: column;
    align-items: center;
  }
  .modall {
    width: 95%;
    padding: 20px;
  }
}


/*--------------------------------------------------------------*/

