
/* FORZAR IMAGEN DE BALANZAS */
.bot-avatar {
    background-image: url('/img/themis-balanza.png') !important;
    background-size: cover !important;
    background-position: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
}

.bot-avatar img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Tarjetas de precios con fondo blanco */
.pricing-card {
    background: white !important;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: white !important;
    border: 3px solid var(--gold);
}

/* CTA dentro del chat */
#chat-messages .system-message {
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%) !important;
    color: white !important;
    padding: 1.5rem !important;
    border-radius: 15px !important;
    margin: 1rem 0 !important;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
}

#chat-messages .system-message h4 {
    margin: 0 0 1rem 0 !important;
    font-size: 1.2rem !important;
    color: white !important;
}

#chat-messages .system-message p {
    margin: 0 0 1.5rem 0 !important;
    font-size: 0.95rem !important;
    color: white !important;
}

#chat-messages .system-message button {
    background: white !important;
    color: #d4af37 !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    margin: 0.25rem !important;
    transition: all 0.3s ease !important;
}

#chat-messages .system-message button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
}

/* Avatares del chat */
.bot-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #4A90E2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    flex-shrink: 0;
    font-weight: 600;
}

.message {
    display: flex;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.message.user-message {
    flex-direction: row-reverse;
}

.message.bot-message {
    flex-direction: row;
}

.message-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 70%;
    word-wrap: break-word;
    line-height: 1.4;
}

.bot-bubble {
    background: #f0f0f0;
    color: #333;
}

.user-bubble {
    background: #4A90E2;
    color: white;
}

.template-card h3 {
    text-align: center !important;
    margin-top: -1rem !important;
}

/* Ajustar sección de testimonios */
#testimonios {
    padding-top: 1rem !important;
}

#testimonios .grid-3 {
    margin-bottom: 1rem !important;
}
