/* Estilos do Widget */
#argos-chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 60px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#argos-chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19eb70 0%, #004f1e 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

#argos-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

#argos-chat-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}

#argos-chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#argos-chat-window.active {
    display: flex;
}

.argos-chat-header {
    background: linear-gradient(135deg, #19eb70 0%, #004f1e 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.argos-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.argos-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: black;
    overflow: hidden;
}

.argos-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.argos-header-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.argos-header-text p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.argos-close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 24px;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.argos-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.argos-message {
    margin-bottom: 16px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.argos-message-bot {
    display: flex;
    gap: 10px;
}

.argos-message-avatar {
    width: 32px;
    height: 32px;
    background: white; /*linear-gradient(135deg, #19eb70 0%, #004f1e 100%);*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    overflow: hidden;
}

.argos-message-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.argos-message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 75%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    line-height: 1.5;
    white-space: pre-line;
}

.argos-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.argos-option-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-size: 14px;
    color: #004f1e;
}

.argos-option-btn:hover {
    border-color: #19eb70;
    background: #f8f9ff;
    transform: translateX(4px);
}

.argos-typing {
    display: flex;
    gap: 4px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    width: fit-content;
}

.argos-typing span {
    width: 8px;
    height: 8px;
    background: #19eb70;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.argos-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.argos-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.argos-notification {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid white;
    display: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    #argos-chat-window {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        right: 10px;
        bottom: 80px;
    }
}