/* Contenedor del widget flotante */
.wp-ai-widget {
    position: fixed;
    bottom: 20px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}

.wp-ai-widget-btn.wp-ai-info-btn {
	z-index: -1;
}

.wp-ai-widget-btn.wp-ai-info-btn:hover {
	z-index: 1;
}

/* Botones flotantes */
.wp-ai-widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background: #0066a1;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid white;
    margin-left: 50% !important;
}

.wp-ai-widget-btn:active,.wp-ai-widget-btn:focus {
	color: white !important;
	text-decoration: underline !important;
}

.wp-ai-widget-btn:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

/* Botón de información */
.wp-ai-info-btn {
    background: #0066a1;
}

/* Icono del agente IA */
.wp-ai-widget-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.wp-ai-widget-icon img {
    /*width: 100%;*/
    height: auto;
    border-radius: 50%;
}

/* Adaptación responsiva */
@media (max-width: 750px) {
	.wp-ai-widget {
		bottom: 15px !important;
		right: 15px !important;
	}
	.wp-ai-widget-btn {
	 	width: 50px !important;
	 	height: 50px !important;
	 	font-size: 8px !important;
	}
	.wp-ai-widget-icon img {
		max-width: 70px !important;
		margin-bottom: -25px;
	}
	.wp-ai-widget-btn {
		margin-left: inherit !important;
	}
	
	.wp-ai-chat-btn {
		margin-bottom: -25px;
	}	
}
