/*CUSTOM CSS*/
#about .image,
#promo-simple-section .image-col{
	position: relative;
  min-height: 50vh;
}
#about .image img,
#promo-simple-section .image-col img{
	position: absolute;
	inset: 0;
	object-fit: cover;
    height: 100%;
}
.Whatsapp .logo svg {
	width: 60px !important;
	height: 60px !important;
}
/*chatbot**************************/
.chat-button {
            position: fixed;
            bottom: 200px;
            right: 20px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
        }
.chat-container {
            position: fixed;
            bottom: 250px;
            right: 20px;
            width: 300px;
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            display: none;
            z-index: 1000;
        }
        .chat-header {
            background: #007bff;
            color: white;
            padding: 10px;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .chat-header button {
            background: none;
            border: none;
            color: white;
            font-size: 16px;
            cursor: pointer;
        }
        #chatMessages {
            height: 200px;
            overflow-y: auto;
            padding: 10px;
            font-size: 14px;
        }
        #chatMessages a {
            color: #007bff;
            text-decoration: underline;
        }
        #chatMessages button {
            display: block;
            margin: 5px 0;
            padding: 8px 12px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            width: 100%;
            text-align: left;
        }
        #chatMessages button:hover {
            background: #0056b3;
        }
        #chatInput {
            width: 100%;
            padding: 10px;
            border: none;
            border-top: 1px solid #ccc;
            font-size: 14px;
            box-sizing: border-box;
        }
        
        .loading {
            color: #007bff;
            font-style: italic;
        }

        /* Mobile responsive styles - sin cambios */
        @media (max-width: 600px) {
            .chat-container {
                width: 90%;
                max-width: 320px;
                right: 5%;
                bottom: 70px;
            }
            #chatMessages {
                height: 250px;
                font-size: 13px;
            }
            #chatInput {
                font-size: 13px;
                padding: 8px;
            }
            .chat-button {
                width: 45px;
                height: 45px;
                font-size: 20px;
                bottom: 15px;
                right: 15px;
            }
            #chatMessages button {
                font-size: 13px;
                padding: 6px 10px;
            }
        }