/* Fondo claro y texto oscuro */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #FFFFFF;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  padding: 10px;
  max-width: 900px;
  margin-inline: auto;
  font-size: 1.2rem; /* texto general más grande */
  background-image: radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.05), transparent 60%),
                    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03), transparent 60%);
  background-repeat: no-repeat;
}

/* Título principal */
.titulo {
  font-size: clamp(2.5rem, 6vw, 4rem); /* adaptable en móvil y PC */
  text-align: center;
  margin-bottom: 2rem;
  color: #e0b3ff;
  text-shadow: 0 0 8px #9e6eff;
}

/* Subtítulos */
.subtitulo {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* adaptable */
  margin-top: 2.5rem;
  color: #cdb4f2;
  border-bottom: 2px dashed #5e4b8b;
  padding-bottom: 0.4rem;
  text-shadow: 0 0 4px #6e4aa9;
}

/* Listas */
ul {
  margin-left: 1.5rem;
  padding-left: 1rem;
  font-size: 1rem;
}

li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

/* Contacto (correo, roles, etc) */
.contacto p {
  margin-bottom: 0.4rem;
  font-family: monospace;
  font-size: 1rem;
}

.contacto strong {
  color: #000000;
}

/* Notas y avisos */
.nota {
  font-style: italic;
  color: #555;
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

/* Enlaces y correos */
a,
strong {
  color: #000000;
}

a:hover {
  text-decoration: underline;
  color: #000000;
}

/* Separadores */
hr {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid #ccc;
}

/* WhatsApp destacado */
p strong:contains("WhatsApp") {
  color: #25D366;
}

/* Selección */
::selection {
  background: #9e6eff;
  color: #fff;
}

@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
    padding: 10px;
    line-height: 1.4;
  }

  p, li {
    font-size: 0.85rem;
  }

  h4, h5 {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 6px;
  }

  ul {
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .accordion-button {
    font-size: 0.9rem;
    padding: 10px;
  }

  .accordion-body {
    padding: 10px;
  }

  .accordion-header span {
    font-size: 0.95rem;
  }

  .emoji {
    font-size: 1rem;
  }

  .contacto p {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }
}
