
/* Shared stylesheet for ABOUT and DEV.LOG pages */

body {
  margin: 0;
  /*font-family: 'IBM Plex Sans', sans-serif;*/
    font-family: 'Archivo', sans-serif;
  background-color: #1a1a1a;
  color: #ccc;
    line-height: 160%;
    font-size: 1.1rem;
}

header {
  display: flex;
 justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
    padding-right: 0rem;
    padding-left: 1rem;
    padding-top: 1rem;
/*border: 1px solid #F00A0A;*/
}

nav a {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
    font-size: 1rem;
  color: #ccc;
  text-decoration: none;
  margin: 0 1rem;
  padding: 0.25rem 0.5rem;
}

nav a.active {
  color: #2fc084;
  background: #373737;
}

/*nav a:hover {
  color: #2fc084;
  background: #373737;
  transition: all 0.3s ease;
}*/

nav a:hover {
  color: #2effa8; /* Verde más brillante para hover */
  background: #373737;
  text-shadow: 0 0 5px rgba(46, 240, 168, 0.3); /* Efecto de brillo sutil */
  transition: all 0.2s ease;
}

.lang-switcher {
  text-align: right;
  margin-top: 0rem;
  font-size: 1rem;
  max-width: 1000px;
}

.lang-switcher a {
  color: #B8B6B7;
  text-decoration: none;
  margin-left: 0.5rem;
}

.lang-switcher a.active {
  font-weight: bold;
    color: rgb(47, 192, 132);
}


.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 0.5rem;
}

.gallery img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 3px;
}
.imgFullWidth {
  justify-content: center;
    width: 100%;
}

.tabs {
  display: flex;
  justify-content: center;
  margin: 2rem 0 1rem;
  gap: 2rem;
  font-family: 'Archivo', sans-serif;
}

.tabs span {
  cursor: pointer;
  color: #ccc;
  border-bottom: 2px solid transparent;
}

.tabs span:hover {
  color: #2fc084;
}

.tabs span.active {
  color: #2fc084;
  border-bottom: 2px solid #2fc084;
}

.about-content {
  max-width: 800px;
  margin: auto;
  padding: 0 2rem 4rem;
  line-height: 1.6;
  display: none;
}

.about-content.active {
  display: block;
}

h1 {
  text-align: center;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 2rem;
  margin-top: 2rem;
    color: rgb(47, 192, 132)
}

.logo {
  text-align: left;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 0rem;
}

.subtit {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 0.7rem;
}

body {
  margin: 0;
  padding: 0;
 font-family: 'IBM Plex Mono', monospace;
  background-color: #181818;
  color: #ccc;
}

.resaltado {
  background-color: #AF9F60;
  color: #000;
    font-weight: bold;
}


.logo {
  max-width: 160px;
  padding: 0px;
}

.menu {
  display: flex;
  list-style: none;
  padding: 0 20px;
  font-family: 'Archivo', sans-serif;
}

.menu li {
  margin-right: 20px;
  text-transform: uppercase;
}

.menu li a,
.menu li.active {
  text-decoration: none;
  color: #ffffff;
}

.about-container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
}

.agent-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-button {
  background: none;
  border: 1px solid #666;
  color: #ccc;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

/*.tab-button.active {
  background-color: #2FA774;
  color: #fff;
}*/
.tab-button {
  transition: background-color 0.2s ease;
}

.tab-button.active, 
.tab-button:hover {
  background-color: #2FA774 !important;
  color: #fff !important;
}

.agent-text {
  display: none;
  padding: 40px;
/*  border-top: 1px solid #333;*/
  border: 2px dotted #333;
    transition: opacity 0.3s ease;
}

.agent-text.visible {
  display: block;
}

h2, h3 {
/*  font-family: 'IBM Plex Sans', sans-serif;*/
    font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
/*  color: #ffffff;*/
    color: rgb(47, 192, 132)
}

ul {
  margin-left: 20px;
}

blockquote {
  margin: 20px 0;
  font-style: italic;
  color: #aaa;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table th, table td {
  border: 1px solid #555;
  padding: 8px;
  text-align: left;
  color: #ccc;
}
