/* Estilos para el botón flotante */
.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Estilos para el modal */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    position: fixed;
    bottom: 90px;
    /* Posición cerca del botón */
    right: 20px;
    width: 300px;
    z-index: 1000;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background-color: #25d366;
    color: white;
    border-bottom: none;
    padding: 15px;
    position: relative;
}

.modal-header .close {
    color: white;
    font-size: 24px;
}

.modal-body {
    padding: 0;
}

/* Estilos para el círculo con la imagen */
.profile-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 10px;
    overflow: hidden;
    border: 3px solid white;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilos para el área de mensajes */
.chat-messages {
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
    background-color: #f8f9fa;
}

.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
}

.bot-message {
    background-color: #e9ecef;
    color: #333;
    align-self: flex-start;
}

.user-message {
    background-color: #25d366;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

/* Estilos para el área de entrada de texto */
.chat-input {
    padding: 15px;
    background-color: white;
    border-top: 1px solid #e9ecef;
}

.chat-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 14px;
}

/* Estilos para el botón de WhatsApp */
.whatsapp-button {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}
#chatModal>div:nth-child(1)>div:nth-child(2)>div:nth-child(1)>div:nth-child(1) {
    margin-left: -16px;
    width: 69px;
    max-width: 69px;
    height: 69px;
    max-height: 69px;
    margin-top: -21px;
    margin-right: 217px;
    margin-bottom: 12px;
}

#chatModal>div:nth-child(1)>div:nth-child(2)>div:nth-child(1)>div:nth-child(2) {
    margin-left: 53px;
    margin-top: -81px;
}

#chatModal>div:nth-child(1)>div:nth-child(2)>div:nth-child(1) {
    padding-top: 40px;
    width: 319px;
    max-width: 319px;
}