/* css/mascot.css */

#tango-mascot-container {
    position: fixed;
    bottom: -200px;
    left: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

#tango-mascot-container img {
    width: 170px;
    height: auto;
    will-change: transform;
    transition: opacity 0.5s ease-in-out;
}

.message-bubble {
    background-color: var(--bg-card); /* ADAPTADO */
    color: var(--text-light);          /* ADAPTADO */
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    font-size: 1em;
    font-weight: 600; /* Ajustado */
    max-width: 260px;
    font-family: var(--font-family); /* ADAPTADO */
    border: 1px solid var(--border-color); /* ADAPTADO */
}

.message-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--bg-card); /* ADAPTADO */
}

#tango-mascot-container.show {
    bottom: 0px;
    opacity: 1;
}

#tango-mascot-container.hide {
    bottom: -200px;
    opacity: 0;
}

@media (max-width: 768px) {
    #tango-mascot-container { left: 10px; }
    #tango-mascot-container img { width: 120px; }
    .message-bubble { max-width: 200px; font-size: 0.8em; }
}