/* Botón flotante de WhatsApp */
#seinto-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

#seinto-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

#seinto-whatsapp-btn img {
    width: 30px;
    height: 30px;
}

/* Ventana emergente */
#seinto-whatsapp-popup {
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    padding: 15px;
    font-family: "Arial", sans-serif;
    overflow: hidden;
}

/* Cuando el popup está activo */
#seinto-whatsapp-popup.seinto-whatsapp-visible {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Encabezado */
.seinto-whatsapp-header {
    background-color: #1EB980;
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

.seinto-whatsapp-header img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.seinto-whatsapp-header p {
    flex: 1;
    font-size: 14px;
    font-weight: bold;
}

/* Botones dentro del popup */
.seinto-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 12px;
    margin: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease-in-out;
    border: 1px solid #ddd;
    font-size: 14px;
}

.seinto-whatsapp-btn:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

/*  Botón de cerrar */
.seinto-whatsapp-close {
    text-align: center;
    color: #666;
    cursor: pointer;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    background: #f5f5f5;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.seinto-whatsapp-close:hover {
    color: #000;
}
