| <!DOCTYPE html> |
| <html lang="es"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Talishte - Agente Virtual</title> |
| <meta name="description" content="Conversa con nuestro agente de IA sobre producción audiovisual con inteligencia artificial"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| body { |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; |
| background: #ffffff; |
| color: #1a1a1a; |
| min-height: 100vh; |
| display: flex; |
| flex-direction: column; |
| justify-content: center; |
| align-items: center; |
| padding: 20px; |
| } |
| |
| .container { |
| max-width: 900px; |
| width: 100%; |
| text-align: center; |
| } |
| |
| .logo { |
| font-size: 3rem; |
| font-weight: 700; |
| margin-bottom: 2rem; |
| color: #000000; |
| letter-spacing: 3px; |
| text-transform: uppercase; |
| } |
| |
| h1 { |
| display: none; |
| } |
| |
| .subtitle { |
| display: none; |
| } |
| |
| .tagline { |
| display: none; |
| } |
| |
| .agent-container { |
| background: rgba(255, 255, 255, 0.8); |
| border-radius: 20px; |
| padding: 50px 40px; |
| backdrop-filter: blur(10px); |
| border: 1px solid rgba(0, 0, 0, 0.1); |
| margin-top: 2rem; |
| min-height: 500px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); |
| } |
| |
| .instructions { |
| margin-top: 2rem; |
| padding: 25px; |
| background: #f5f5f5; |
| border-radius: 12px; |
| font-size: 0.95rem; |
| color: #1a1a1a; |
| line-height: 1.8; |
| text-align: left; |
| border: 1px solid #e0e0e0; |
| } |
| |
| .instructions strong { |
| color: #000000; |
| font-weight: 700; |
| } |
| |
| .website-link { |
| display: none; |
| } |
| |
| @media (max-width: 768px) { |
| .logo { |
| font-size: 2.2rem; |
| } |
| |
| .agent-container { |
| padding: 30px 20px; |
| min-height: 400px; |
| } |
| |
| .instructions { |
| font-size: 0.85rem; |
| padding: 20px; |
| } |
| } |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
| <div class="logo">TALISHTE</div> |
|
|
| <div class="agent-container"> |
| <elevenlabs-convai agent-id="agent_3601kh85tbfjfdv8wpzrrtjcpav5"></elevenlabs-convai> |
| <script src="https://elevenlabs.io/convai-widget/index.js" async type="text/javascript"></script> |
| </div> |
|
|
| <div class="instructions"> |
| <strong>Cómo usar:</strong><br> |
| • Haz click en el micrófono para hablar por voz<br> |
| • O escribe tu pregunta en el campo de texto<br> |
| • Funciona mejor con audífonos en ambientes ruidosos<br> |
| • Pregúntale sobre producción audiovisual, campañas, formación o herramientas IA |
| </div> |
| </div> |
| </body> |
| </html> |