/* Estilos globales */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Ícono flotante de WhatsApp */
.whatsapp-icon {
    position: fixed;
	
    bottom: 20px;
    right: 25px;
	top: 470px;
	
	
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-icon img {
    width: 35px;
    height: 35px;
}

/* Estilos del chatbot */
.chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background-color: #25D366;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #075E54;
    font-size: 16px;
    font-weight: bold;
}

.chatbot-body {
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.chatbot-footer {
    padding: 10px;
    text-align: center;
}

.chatbot-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.chatbot-button:hover {
    background-color: #f0f0f0;
}

.close-chat {
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    transition: color 0.3s;
}

.close-chat:hover {
    color: #f0f0f0;
}
