#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

/* =========================
   🔵 BURBUJA REAL tipo chat
========================= */
/*.chatbot-bubble {
    width: 60px;
    height: 60px;
    background: var(--lightskyblue-color);

    border-radius: 50% 50% 50% 50%;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: 0 5px 15px var(--black-color-transparent);
    transition: transform 0.2s ease;
}*/

.chatbot-bubble {
	position: relative;
	background: var(--lightskyblue-color);
	border-radius: 50%;
    padding: 1em;
    z-index: 1001;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 20px var(--white-color);
}

.chatbot-bubble:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 33px solid transparent;
	border-top-color: var(--lightskyblue-color);
	border-bottom: 0;
	border-right: 0;
	margin-left: -8px;
	margin-bottom: -8px;
    z-index: 1000;
}

/* micro interacción */
.chatbot-bubble:hover {
    cursor: pointer;
}

/* icono */
.chatbot-bubble__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white-color);
    position: absolute;
    left: 11px;
    top: 11px;
    z-index: 1003;
}

/* =========================
   💬 CHAT WINDOW
========================= */
.chatbot-chat {
    display: none;
    width: 320px;
    max-width: 90vw;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--black-color-transparent);
    overflow: hidden;

    transform-origin: bottom right;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.25s ease;
}

/* activo */
.chatbot-chat.chatbot-chat--active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   HEADER
========================= */
.chat-header {
    background: var(--lightskyblue-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
    justify-content: space-between;
}

.chat-header span {
    flex: 1;
}

#close-chat {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 18px;
    cursor: pointer;
}

/* icono */
.chatbot-icon {
    width: 35px;
    height: 35px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--lightskyblue-color);
}

/* =========================
   BODY
========================= */
.chat-body {
    padding: 15px;
}

.bot-message {
    background: var(--silver-color);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-options a {
    text-decoration: none;
    background: var(--lightskyblue-color);
    color: var(--white-color);
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.chat-options a:hover {
    filter: brightness(0.9);
}