#botonToggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

.tooltip {
	position: relative;
	cursor: pointer;
}

.tooltip::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 120%; /* Ajusta según la posición deseada */
	left: 50%;
	transform: translateX(-50%);
	background-color: #333;
	color: #fff;
	padding: 6px 10px;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	z-index: 9999;
	
   /* ajustes para textos largos */
    max-width: 90vw;         /* No más del 90% del ancho de la pantalla */
    box-sizing: border-box;
    white-space: normal;     /* Permite saltos de línea */
    overflow-wrap: break-word;
    text-align: center;
    font-size:18px;
	
}

.tooltip:hover::after {
	opacity: 1;
	
}


#iframeWrapper {
  position: fixed;
  top: 0;
  right: 0;
  height: 98vh;          /* ocupa casi toda la altura de la pantalla */
  width: 40vw;            /* ocupa la parte derecha: casi hasta mitad de la pantalla. la mitad seria 50' */
  z-index: 1000;
  transform: translateX(100%);          /* oculto fuera de pantalla por defecto */
  transition: transform .3s ease;       /* animaci�n de entrada/salida */
}
#cerrarIframe {
	   position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1001;
    display: none;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color:white;
}

.chatbot-bubble {

    top: -40px;
    right: 5px;
    left: auto;
    border: 2px solid #99d104;
    border-radius: 10px;
    padding: 6px 12px;
    background-color: #fff;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

.chatbot-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

