/* Colores corporativos definidos como variables comentadas para referencia */
/* Primary: #2a70c9 | Secondary: #eaf2fb | Text: #333 */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7faff;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

nav {
  background: #2a70c9;
  color: #fff;
  text-align: center;
  padding: 15px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
}

header {
  text-align: center;
  padding: 40px 20px;
}

header img {
  width: 120px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

header p {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1.1em;
}

header p a {
  color: #2a70c9;
  text-decoration: underline;
}

.disclaimer {
  max-width: 600px;
  margin: 40px auto;
  background: #eaf2fb;
  padding: 20px;
  border-radius: 10px;
  font-size: 0.9em;
}

.chat-container {
  max-width: 600px;
  margin: 0 auto 60px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

textarea {
  width: 100%;
  font-size: 1rem;
  border-radius: 4px;
  resize: vertical;
  margin-bottom: 1rem;
}

button {
  background: #2a70c9;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.3s;
}

button:hover {
  background: #1f579f;
}

#chatOutput {
  margin-top: 20px;
  padding: 10px;
  background: #f1f1f1;
  border-radius: 5px;
}

footer {
  background: #2a70c9;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer p {
  margin: 5px 10px;
}







/* Selector de Psikybot */
.bot-selector {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

#botSelect {
  font-size: 1rem;
  padding: 8px 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* cambio tamano foto psikibot */
#botPreview img {
  width: 240px;
  height: 240px;
  border-radius: 25%;
  object-fit: contain; /*cover - scale-down*/
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

#botPreview img:hover {
  transform: scale(1.15);
}


#botPreview p {
  margin: 5px 0;
  font-weight: bold;
}

.bot-selector button {
  background: #2a70c9;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.bot-selector button:hover {
  background: #1f579f;
}

.bot-description {
  font-size: 0.7em;
  color: #555;
  margin: 5px auto;
  max-width: 600px;
}