.elementor-3090 .elementor-element.elementor-element-05f05d0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:100px;--padding-bottom:00px;--padding-left:00px;--padding-right:00px;}.elementor-3090 .elementor-element.elementor-element-89d1e60{width:100%;max-width:100%;}.elementor-3090 .elementor-element.elementor-element-a15ccf6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:100px;--padding-bottom:00px;--padding-left:00px;--padding-right:00px;}/* Start custom CSS for html, class: .elementor-element-89d1e60 */.chat-container {
    background: #121212;
    width: 100%;
    max-height: 1080px;
    max-width: 1080px;
    height: 800px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    color: white;
    font-family: 'Inter', sans-serif;
}

.chat-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background: transparent;
}

.chat-logo {
    height: 70px !important;
    width: auto !important;
    max-width: 120px;
    object-fit: contain;
    display: block;
    opacity: 0.75;
}
.chat-window {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #1e1e1e;
    display: flex;          /* Mantém como flex container */
    flex-direction: column; /* Organiza em coluna */
    align-items: flex-start; /* Alinhamento padrão à esquerda */
}

.message {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.user-message {
    background: linear-gradient(90deg, #7928ca, #ff0080);
    color: white;
    align-self: flex-end; /* Alinha à direita */
    text-align: right;
}

.bot-message {
    background: #2c2c2c;
    color: #ddd;
    align-self: flex-start; /* Alinha à esquerda */
    text-align: left;
}

.input-container {
    display: flex;
    border-top: 1px solid #333;
    background: #1a1a1a;
}

#user-input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-size: 14px;
}

#send-button {
    padding: 0 20px;
    border: none;
    background: linear-gradient(90deg, #7928ca, #ff0080);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

#send-button:hover {
    background: linear-gradient(90deg, #ff0080, #7928ca);
}

img {
    max-width: 100%;
    border-radius: 6px;
    margin-top: 5px;
}
.image-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.download-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}

.download-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.message img {
    max-width: 100%;
    border-radius: 8px;
    display: block;
}

.loading-container {
    display: flex !important;
    justify-content: center !important;
    padding: 15px !important;
    width: 100% !important;
}

.loading-spinner {
    width: 30px !important;
    height: 30px !important;
    border: 4px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    border-top-color: #7928ca !important;
    animation: spin 1s linear infinite !important;
    margin: 0 auto !important;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */
/* Start custom CSS *//* ===== GRADIENTE ESCURO (baseado em #1E1E1E) ===== */
body, 
.elementor-section.elementor-section-boxed > .elementor-container,
.elementor-section.elementor-section-full_width,
.elementor-page-title,
.elementor-widget-container {
    background: #1E1E1E; /* Fallback */
    background: linear-gradient(
        135deg, 
        #1E1E1E 0%, 
        #2E2E3A 30%, 
        #1E1E2E 70%, 
        #1E1E1E 100%
    ) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}

/* ===== LEGIBILIDADE DO TEXTO ===== */
body, 
p, h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-widget-text-editor {
    color: #FFFFFF !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Melhora contraste */
}

/* ===== LINKS ===== */
a {
    color: #A0A0FF !important; /* Azul claro para contraste */
    transition: color 0.3s;
}

a:hover {
    color: #FFFFFF !important;
    text-decoration: underline;
}

/* ===== BOTÕES (opcional) ===== */
.elementor-button {
    background-color: #4169E1 !important;
    border: none !important;
}

.elementor-button:hover {
    background-color: #3A5FCD !important;
}/* End custom CSS */